Lines Matching refs:p

72     memcpy_EBCDIC( char * pwbuf, uchar *p, int len )  in memcpy_EBCDIC()  argument
82 *pwbuf = *p; in memcpy_EBCDIC()
87 while( (p[ processedchars ] != '\"') && (p[ processedchars ] != '\'') ) in memcpy_EBCDIC()
88 pwbuf[ currpos++ ] = p[ processedchars++ ]; in memcpy_EBCDIC()
91 pwbuf[ currpos++ ] = p[ processedchars++ ]; in memcpy_EBCDIC()
96 if( p[ processedchars ] == '\\' ) in memcpy_EBCDIC()
98 switch( p[ ++processedchars ] ) in memcpy_EBCDIC()
169 … while( p[ processedchars ] >= '0' && p[ processedchars ] <= '7' && (currpos < startpos + 4) ) in memcpy_EBCDIC()
170 pwbuf[ currpos++ ] = (unsigned char)p[ processedchars++ ]; in memcpy_EBCDIC()
184 while( isxdigit( p[ processedchars ] ) && (currpos < startpos + 4) ) in memcpy_EBCDIC()
185 pwbuf[ currpos++ ] = (unsigned char)p[ processedchars++ ]; in memcpy_EBCDIC()
192 currpos += sprintf( &pwbuf[ currpos ], MASK, toLatin1[p[ processedchars++ ]] ); in memcpy_EBCDIC()
197 pwbuf[ currpos++ ] = p[ processedchars ]; in memcpy_EBCDIC()
410 uchar *p; in puttokens() local
420 p = tp->t - tp->wslen; in puttokens()
425 if( (tp->type == NAME) && (strncmp( (char*)p, "delete", len ) == 0) ) in puttokens()
442 memcpy(wbp, p, len); in puttokens()
457 memcpy(wbp, p, len); in puttokens()
462 if( (tp->wslen == 0) && (strncmp( (char*)p, "extern", len ) == 0) ) in puttokens()
465 memcpy(wbp, p, len); in puttokens()
471 len = memcpy_EBCDIC(wbp, p, len); in puttokens()
473 memcpy(wbp, p, len); in puttokens()
479 if( (tp->type == NAME) && (strncmp( (char*)p, "__ToLatin1__", len) == 0) ) in puttokens()
485 memcpy(wbp, p, len); in puttokens()
488 memcpy(wbp, p, len); in puttokens()
537 outnum(char *p, int n) in outnum() argument
540 p = outnum(p, n / 10); in outnum()
541 *p++ = (char) (n % 10 + '0'); in outnum()
542 return p; in outnum()