Lines Matching refs:pos
107 char* pos = out; in typetostring() local
146 if( fullContext ) *pos++ = '\''; in typetostring()
147 pos = appendcharornum(c[0], pos); in typetostring()
148 pos = appendcharornum(c[1], pos); in typetostring()
149 pos = appendcharornum(c[2], pos); in typetostring()
150 pos = appendcharornum(c[3], pos); in typetostring()
151 if( fullContext ) *pos++ = '\''; in typetostring()
152 *pos = 0; in typetostring()
153 return pos; in typetostring()
157 *pos++ = '0'; in typetostring()
158 *pos++ = 'x'; in typetostring()
160 return appendhexnum(type, pos); in typetostring()
185 unsigned char *pos = (unsigned char *)buf; in printHexData() local
187 if (pos == NULL) { in printHexData()
223 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) { in printHexData()
253 const unsigned char val = *(pos+startIndex+(index*dir)); in printHexData()
270 const unsigned char val = *(pos+startIndex+(index*dir)); in printHexData()
288 const unsigned char val = pos[index]; in printHexData()