Lines Matching refs:pos
95 char* pos = out; in typetostring() local
134 if( fullContext ) *pos++ = '\''; in typetostring()
135 pos = appendcharornum(c[0], pos); in typetostring()
136 pos = appendcharornum(c[1], pos); in typetostring()
137 pos = appendcharornum(c[2], pos); in typetostring()
138 pos = appendcharornum(c[3], pos); in typetostring()
139 if( fullContext ) *pos++ = '\''; in typetostring()
140 *pos = 0; in typetostring()
141 return pos; in typetostring()
145 *pos++ = '0'; in typetostring()
146 *pos++ = 'x'; in typetostring()
148 return appendhexnum(type, pos); in typetostring()
173 unsigned char *pos = (unsigned char *)buf; in printHexData() local
175 if (pos == nullptr) { in printHexData()
211 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) { in printHexData()
239 const unsigned char val = *(pos+startIndex-index); in printHexData()
256 const unsigned char val = *(pos+startIndex-index); in printHexData()
274 const unsigned char val = pos[index]; in printHexData()