Searched refs:cp (Results 1 - 25 of 3068) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dconst2.C4 static const char* cp = "abc"; // { dg-error "" } initialization of non-const member in struct:S
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dconst2.C4 static const char* cp = "abc"; // { dg-error "" } initialization of non-const member in struct:S
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dskipblanks.c39 const char *cp; local
41 for (cp = string; *cp != 0; cp++)
42 if (!ISSPACE(*cp))
44 return ((char *) cp);
H A Dsplit_at.c57 char *cp; local
59 if ((cp = strchr(string, delimiter)) != 0)
60 *cp++ = 0;
61 return (cp);
68 char *cp; local
70 if ((cp = strrchr(string, delimiter)) != 0)
71 *cp++ = 0;
72 return (cp);
H A Dalldig.c42 const char *cp; local
46 for (cp = string; *cp != 0; cp++)
47 if (!ISDIGIT(*cp))
H A Dlowercase.c38 char *cp; local
41 for (cp = string; (ch = *cp) != 0; cp++)
43 *cp = TOLOWER(ch);
H A Dprintable.c46 char *cp; local
49 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
51 *cp = replacement;
H A Duppercase.c38 char *cp; local
41 for (cp = string; (ch = *cp) != 0; cp++)
43 *cp = TOUPPER(ch);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libntp/
H A Dhextoint.c18 register const char *cp; local
20 cp = str;
22 if (*cp == '\0')
26 while (*cp != '\0') {
27 if (!isxdigit((unsigned char)*cp))
32 if ('0' <= *cp && *cp <= '9')
33 u += *cp++ - '0';
34 else if ('a' <= *cp && *cp <
[all...]
H A Dmstolfp.c18 register const char *cp; local
35 cp = str;
36 while (isspace((unsigned char)*cp))
37 cp++;
39 if (*cp == '-') {
41 cp++;
44 if (*cp != '.' && !isdigit((unsigned char)*cp))
51 cpdec = cp;
59 if ((cpdec - cp) >
[all...]
H A Docttoint.c19 register const char *cp; local
21 cp = str;
23 if (*cp == '\0')
27 while (*cp != '\0') {
28 if (!isdigit((unsigned char)*cp) || *cp == '8' || *cp == '9')
33 u += *cp++ - '0'; /* ascii dependent */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900210_06.C18 char *cp; variable
22 cp = ccp; /* { dg-error "" } */
23 cp = vcp; /* { dg-error "" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900210_06.C18 char *cp; variable
22 cp = ccp; /* { dg-error "" } */
23 cp = vcp; /* { dg-error "" } */
/netbsd-6-1-5-RELEASE/external/mit/expat/dist/xmlwf/
H A Dcodepage.h5 int codepageMap(int cp, int *map);
6 int codepageConvert(int cp, const char *p);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/nothreads/include/isc/
H A Dcondition.h40 isc_result_t isc__nothread_wait_hack(isc_condition_t *cp, isc_mutex_t *mp);
41 isc_result_t isc__nothread_signal_hack(isc_condition_t *cp);
43 #define isc_condition_init(cp) \
44 (*(cp) = 0, ISC_R_SUCCESS)
46 #define isc_condition_wait(cp, mp) \
47 isc__nothread_wait_hack(cp, mp)
49 #define isc_condition_waituntil(cp, mp, tp) \
50 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
52 #define isc_condition_signal(cp) \
53 isc__nothread_signal_hack(cp)
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/nothreads/include/isc/
H A Dcondition.h40 isc_result_t isc__nothread_wait_hack(isc_condition_t *cp, isc_mutex_t *mp);
41 isc_result_t isc__nothread_signal_hack(isc_condition_t *cp);
43 #define isc_condition_init(cp) \
44 (*(cp) = 0, ISC_R_SUCCESS)
46 #define isc_condition_wait(cp, mp) \
47 isc__nothread_wait_hack(cp, mp)
49 #define isc_condition_waituntil(cp, mp, tp) \
50 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
52 #define isc_condition_signal(cp) \
53 isc__nothread_signal_hack(cp)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20031204-1.c16 char *cp, *cq; local
18 cp = cq = name;
20 while (*cp >= '0' && *cp <= '9')
21 cp++;
22 if (cp == cq || cp - cq > 3)
24 if (*cp == '.' || octets == 3)
27 cp++;
28 cq = cp;
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20031204-1.c16 char *cp, *cq; local
18 cp = cq = name;
20 while (*cp >= '0' && *cp <= '9')
21 cp++;
22 if (cp == cq || cp - cq > 3)
24 if (*cp == '.' || octets == 3)
27 cp++;
28 cq = cp;
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A D20020108-1.c12 foo (unsigned short *cp) argument
16 *cp = indx = 0xFFFF;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A D20020108-1.c12 foo (unsigned short *cp) argument
16 *cp = indx = 0xFFFF;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/compat/
H A Dstrdup.c10 char *cp; local
15 cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");
17 if (cp != NULL)
18 (void) strcpy(cp, s);
20 return cp;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/compat/
H A Dstrdup.c10 char *cp; local
15 cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");
17 if (cp != NULL)
18 (void) strcpy(cp, s);
20 return cp;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/intl/
H A Dexplodename.c66 char *cp; local
82 *language = cp = name;
83 cp = _nl_find_language (*language);
85 if (*language == cp)
88 cp = strchr (*language, '\0');
89 else if (cp[0] == '_')
92 cp[0] = '\0';
93 *territory = ++cp;
95 while (cp[0] != '\0' && cp[
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/intl/
H A Dexplodename.c66 char *cp; local
82 *language = cp = name;
83 cp = _nl_find_language (*language);
85 if (*language == cp)
88 cp = strchr (*language, '\0');
89 else if (cp[0] == '_')
92 cp[0] = '\0';
93 *territory = ++cp;
95 while (cp[0] != '\0' && cp[
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/intl/
H A Dexplodename.c61 char *cp; local
77 *language = cp = name;
78 cp = _nl_find_language (*language);
80 if (*language == cp)
83 cp = strchr (*language, '\0');
84 else if (cp[0] == '_')
87 cp[0] = '\0';
88 *territory = ++cp;
90 while (cp[0] != '\0' && cp[
[all...]

Completed in 196 milliseconds

1234567891011>>