Lines Matching refs:marker
157 # Return the line number in objdump output to where the IP marker in the Code:
161 # @all_code: code in bytes without the marker
175 # remove marker
209 marker=`expr index "$code" "\<"`
210 if [ $marker -eq 0 ]; then
211 marker=`expr index "$code" "\("`
215 if [ $marker -ne 0 ]; then
219 pc_sub=$(( (($marker - 1) / (2 * $width + 1)) * $width ))
234 # and fix code at-and-after marker
235 code=`echo "$code" | cut -c$((${marker} + 1))-`