Lines Matching refs:p

150  	  echo " rm -f $$p $$f"; \
151 rm -f $$p $$f ; \
232 if ( (p = strpbrk( line, "\n\r" )) ) {
233 *p = '\0';
299 - while ( isspace((int) *p) ) {
300 + while ( isspace((unsigned char) *p) ) {
301 p++;
313 while (*p) {
314 - if ( isspace((int) *p) ) {
315 + if ( isspace((unsigned char) *p) ) {
317 p++;
322 else if ( *p == '\'' ) {
324 p++;
388 const char *p = src;
391 - while ( isspace((int)*p) ) {
393 + while ( isspace((unsigned char)*p) ) {
394 p++;
396 while (*p) {
397 - if ( !isspace((int)*p) ) {
398 + if ( !isspace((unsigned char)*p) ) {
401 *w++ = *p++;
611 static uint4 simplehash( const char *p, int len )
633 /* increases frequency of ngram(p,len) */
634 -static inline int increasefreq( table_t *t, char *p, int len )
636 - uint4 hash = simplehash( p, len ) & TABLEMASK;
637 +static int increasefreq( table_t *t, char *p, int len )
639 + uint4 hash = simplehash( p, len ) & TABLEMASK;
645 if ( issame( entry->str, p, len ) ) {
654 strcpy( entry->str, p );
660 /* looks up ngram(p,len) */
661 -static entry_t *findfreq( table_t *t, char *p, int len )
663 - uint4 hash = simplehash( p, len ) & TABLEMASK;
664 +static entry_t *findfreq( table_t *t, char *p, int len )
666 + uint4 hash = simplehash( p, len ) & TABLEMASK;
672 if ( issame( entry->str, p, len ) ) {
706 - entry_t *p = t->table[i];
707 + entry_t *p = t->table[i];
708 while (p) {
709 heapinsert(t, p);
710 p = p->next;
753 const char *p = buf;
758 - for (;;p++) {
761 - const char *q = p;
762 + const char *q = &p[pointer]; /*[modified] previously p++ above (for(;;p++)) now, it's point…
768 + q = &(p[pointer+decay]); /*[modified] the old copying method do not manage mult…
795 + pointer = nextcharstart(p,pointer); /*[modified] p[pointer] must point on the next start of sy…
1138 char *p;
1205 char *p = result;
1211 *p = '\0';
1673 +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
1856 + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head…
2016 case `/usr/bin/uname -p` in
2146 - && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
2150 + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
2187 UNAME_PROCESSOR=`/usr/bin/uname -p`
2436 …FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\…
2442 + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed…
2535 p*:CYGWIN*:*)
2557 + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
2649 - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
2720 - p'`
2826 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
2884 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
2885 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
2888 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
2892 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
2898 + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
2899 + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
2901 + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
2903 + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
2942 if uname -p 2>/dev/null >/dev/null ; then
2943 UNAME_MACHINE=`(uname -p) 2>/dev/null`
3036 - echo `uname -p`-apple-darwin${UNAME_RELEASE}
3038 + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
3055 UNAME_PROCESSOR=`uname -p`
3138 + UNAME_MACHINE=`(uname -p) 2>/dev/null`
3217 + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
3219 + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
3264 +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD