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