Searched refs:pz (Results 1 - 25 of 115) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D990524-1.c4 void loop (char * pz, char * pzDta) argument
7 switch (*(pz++) = *(pzDta++)) {
13 pz[-1] = '\\';
14 *(pz++) = pzDta[-1];
18 if (a - pz != b - pzDta)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D990524-1.c4 void loop (char * pz, char * pzDta) argument
7 switch (*(pz++) = *(pzDta++)) {
13 pz[-1] = '\\';
14 *(pz++) = pzDta[-1];
18 if (a - pz != b - pzDta)
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dparse-duration.c103 parse_hr_min_sec (time_t start, cch_t * pz) argument
111 while ((*pz == ':') && (lpct++ <= 1))
113 unsigned long v = str_const_to_ul (pz+1, &pz, 10);
125 while (isspace ((unsigned char)*pz))
126 pz++;
127 if (*pz != NUL)
142 cch_t * pz = *ppz; local
149 val = str_const_to_ul (pz, &pz, 1
167 parse_year_month_day(cch_t * pz, cch_t * ps) argument
193 cch_t * pz; local
219 parse_YMWD(cch_t * pz) argument
264 parse_hour_minute_second(cch_t * pz, cch_t * ps) argument
291 cch_t * pz; local
317 parse_HMS(cch_t * pz) argument
354 parse_time(cch_t * pz) argument
387 trim(char * pz) argument
412 char * pz = strdup (in_pz); local
463 parse_non_iso8601(cch_t * pz) argument
575 parse_duration(char const * pz) argument
[all...]
H A Dcook.c91 char z[4], *pz = z; local
93 do *(pz++) = *(pzIn++);
94 while (IS_HEX_DIGIT_CHAR(*pzIn) && (pz < z + 2));
95 *pz = NUL;
97 res += pz - z;
108 char z[4], *pz = z + 1; local
112 while (IS_OCT_DIGIT_CHAR(*pzIn) && (pz < z + 3))
113 *(pz++) = *(pzIn++);
114 *pz = NUL;
119 res = pz
[all...]
H A Dboolean.c50 char* pz; local
64 long val = strtol( pOD->optArg.argString, &pz, 0 );
65 if ((val != 0) || (*pz != NUL))
H A Dload.c152 char * pz = canonicalize_file_name(pzBuf); local
153 if (pz == NULL)
156 name_len = strlen(pz);
158 free(pz);
162 memcpy(pzBuf, pz, name_len + 1);
163 free(pz);
190 char const* pz; local
216 pz = strrchr(pzPath, DIRCH);
222 if (pz == NULL)
231 if ((pz
509 char* pz; local
[all...]
H A Dtokenize.c142 cc_t* pz = (cc_t*)str; local
146 while (! IS_WHITESPACE_CHAR(*++pz))
147 if (*pz == NUL) goto found_nul;
148 while (IS_WHITESPACE_CHAR(*pz)) pz++;
149 } while (*pz != NUL);
152 res = malloc(sizeof(*res) + (pz - (cc_t*)str)
H A Dnumeric.c109 char* pz; local
124 val = strtol(pOD->optArg.argString, &pz, 0);
125 if ((pz == pOD->optArg.argString) || (errno != 0))
129 switch (*(pz++)) {
130 case '\0': pz--; break;
144 if (*pz != NUL)
H A Denumeration.c185 char * pz = (char *)(intptr_t)pzName; local
186 unsigned long val = strtoul(pz, &pz, 0);
187 if ((*pz == NUL) && (val < name_ct))
356 char * pz; local
374 pOD->optArg.argString = pz = AGALOC(len, "enum name");
381 memcpy(pz, none, sizeof(none)-1);
382 pz += sizeof(none)-1;
390 memcpy(pz, plus, sizeof(plus));
391 memcpy(pz
476 char* pz; local
[all...]
H A Dgenshell.h141 static inline char* aoGetsText(char const* pz) { argument
142 if (pz == NULL) return NULL;
143 return (char*)gettext(pz);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/
H A Dparse-duration.c100 parse_hr_min_sec (time_t start, cch_t * pz) argument
108 while ((*pz == ':') && (lpct++ <= 1))
110 unsigned long v = str_const_to_ul (pz+1, &pz, 10);
122 while (isspace ((unsigned char)*pz)) pz++;
123 if (*pz != NUL)
135 cch_t * pz = *ppz; local
142 val = str_const_to_ul (pz, &pz, 1
157 parse_year_month_day(cch_t * pz, cch_t * ps) argument
181 cch_t * pz; local
206 parse_YMWD(cch_t * pz) argument
248 parse_hour_minute_second(cch_t * pz, cch_t * ps) argument
273 cch_t * pz; local
298 parse_HMS(cch_t * pz) argument
333 parse_time(cch_t * pz) argument
364 trim(char * pz) argument
385 char * pz = xstrdup (in_pz); local
431 parse_non_iso8601(cch_t * pz) argument
540 parse_duration(char const * pz) argument
[all...]
H A Dcook.c89 char z[4], *pz = z; local
91 do *(pz++) = *(pzIn++);
92 while (IS_HEX_DIGIT_CHAR(*pzIn) && (pz < z + 2));
93 *pz = NUL;
95 res += pz - z;
106 char z[4], *pz = z + 1; local
110 while (IS_OCT_DIGIT_CHAR(*pzIn) && (pz < z + 3))
111 *(pz++) = *(pzIn++);
112 *pz = NUL;
117 res = pz
[all...]
H A Dboolean.c49 char* pz; local
63 long val = strtol( pOD->optArg.argString, &pz, 0 );
64 if ((val != 0) || (*pz != NUL))
H A Dload.c175 char* pz = canonicalize_file_name(pzBuf); local
176 if (pz == NULL)
178 if (strlen(pz) < bufSize)
179 strcpy(pzBuf, pz);
180 free(pz);
207 tCC* pz; local
233 pz = strrchr( pzPath, DIRCH );
239 if (pz == NULL)
248 if ((pz - pzPath)+1 + strlen(pzName) >= bufSize)
251 memcpy( pzBuf, pzPath, (size_t)((pz
531 char* pz; local
[all...]
H A Dnumeric.c117 char* pz; local
132 val = strtol(pOD->optArg.argString, &pz, 0);
133 if ((pz == pOD->optArg.argString) || (errno != 0))
137 switch (*(pz++)) {
138 case '\0': pz--; break;
152 if (*pz != NUL)
H A Dtime.c33 ao_xstrdup(char const * pz) argument
36 AGDUPSTR(str, pz, "time val str");
H A Denumeration.c188 char * pz = (char *)(void *)(intptr_t)pzName; local
189 unsigned long val = strtoul(pz, &pz, 0);
190 if ((*pz == NUL) && (val < name_ct))
384 char* pz; local
402 pOD->optArg.argString = pz = AGALOC(len, "enum name");
409 strcpy( pz, "none" );
410 pz += 4;
417 strcpy( pz, " + " );
418 strcpy( pz
466 char* pz; local
[all...]
H A Dversion.c77 char const *pz = pOpts->pzUsageTitle; local
78 do { fputc(*pz, fp); } while (*(pz++) != '\n');
H A Dconfigfile.c500 char* pz = strstr( pzText, "-->" ); local
501 if (pz != NULL)
502 pz += 3;
503 return pz;
733 char z[64], *pz = z; local
736 pz = AGALOC(len, "scan name");
738 sprintf( pz, "</%s>", pzName );
740 pzText = strstr( pzText, pz );
741 if (pz != z) AGFREE(pz);
869 char* pz; local
1229 char const* pz = strrchr( pzProgram, DIRCH ); local
[all...]
H A Dgenshell.h134 static inline char* aoGetsText( char const* pz ) {
135 if (pz == NULL) return NULL;
136 return (char*)gettext( pz );
/netbsd-6-1-5-RELEASE/sys/arch/hp700/stand/common/
H A Dpdc.c271 static struct pz_device pz; local
272 int layers[sizeof(pz.pz_layers)/sizeof(pz.pz_layers[0])];
288 bcopy (&PAGE0->mem_boot.pz_dp, &pz.pz_dp, sizeof(pz.pz_dp));
289 bcopy (pz.pz_layers, layers, sizeof(layers));
304 pz.pz_bc[0] = pz.pz_bc[1] =
305 pz.pz_bc[2] = pz
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/
H A Dserver.c284 char *pz = load_data (server_pair.pf_read); local
286 if (pz == (char *) NULL)
298 pz = XCNEW (char);
301 fprintf( stderr, "run_shell command success: %s\n", pz );
303 return pz;
H A Dfixfixes.c607 char* pz = XNEWVEC (char, ln); local
608 pz_name = pz;
609 sprintf( pz, "FIXINC_WRAP_%s-%s", filname, p_fixd->fix_name );
611 for (pz += 12; 1; pz++) {
612 char ch = *pz;
618 *pz = '_';
621 *pz = TOUPPER( ch );
754 char* pz = argv[1]; local
757 if (! ISDIGIT ( *pz ))
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/fixincludes/
H A Dserver.c284 char *pz = load_data (server_pair.pf_read); local
286 if (pz == (char *) NULL)
298 pz = XCNEW (char);
301 fprintf( stderr, "run_shell command success: %s\n", pz );
303 return pz;
H A Dfixfixes.c608 char* pz = XNEWVEC (char, ln); local
609 pz_name = pz;
610 sprintf( pz, "FIXINC_WRAP_%s-%s", filname, p_fixd->fix_name );
612 for (pz += 12; 1; pz++) {
613 char ch = *pz;
619 *pz = '_';
622 *pz = TOUPPER( ch );
755 char* pz = argv[1]; local
758 if (! ISDIGIT ( *pz ))
[all...]

Completed in 317 milliseconds

12345