Lines Matching refs:pos
94 char* pos = out; in typetostring() local
133 if( fullContext ) *pos++ = '\''; in typetostring()
134 pos = appendcharornum(c[0], pos); in typetostring()
135 pos = appendcharornum(c[1], pos); in typetostring()
136 pos = appendcharornum(c[2], pos); in typetostring()
137 pos = appendcharornum(c[3], pos); in typetostring()
138 if( fullContext ) *pos++ = '\''; in typetostring()
139 *pos = 0; in typetostring()
140 return pos; in typetostring()
144 *pos++ = '0'; in typetostring()
145 *pos++ = 'x'; in typetostring()
147 return appendhexnum(type, pos); in typetostring()
172 unsigned char *pos = (unsigned char *)buf; in printHexData() local
174 if (pos == nullptr) { in printHexData()
210 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) { in printHexData()
238 const unsigned char val = *(pos+startIndex-index); in printHexData()
255 const unsigned char val = *(pos+startIndex-index); in printHexData()
273 const unsigned char val = pos[index]; in printHexData()