Searched defs:endp (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dstrtoull.c30 unsigned long long strtoull ( const char *p, char **endp, int base ) { argument
56 if ( endp )
57 *endp = ( char * ) p;
H A Dbase16.c80 char *endp; local
91 *(raw_bytes++) = strtoul ( buf, &endp, 16 );
92 if ( *endp != '\0' ) {
H A Dmisc.c36 unsigned long strtoul ( const char *p, char **endp, int base ) { argument
62 if ( endp )
63 *endp = ( char * ) p;
H A Dparseopt.c80 char *endp; local
86 *value = strtoul ( text, &endp, 0 );
87 if ( *endp ) {
H A Dsettings.c1459 char *endp; local
1462 u.num = htonl ( strtoul ( value, &endp, 0 ) );
1463 if ( *endp )
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dinet_pton.c181 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
187 endp = tp + NS_IN6ADDRSZ;
217 if (tp + NS_INT16SZ > endp)
225 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
234 if (tp + NS_INT16SZ > endp)
248 endp[- i] = colonp[n - i];
251 tp = endp;
253 if (tp != endp)
H A Dres_mkupdate.c107 u_char *cp, *sp1, *sp2, *startp, *endp; local
232 endp = startp + rrecp->r_size - 1;
236 if (!getword_str(buf2, sizeof buf2, &startp, endp))
250 if (!getword_str(buf2, sizeof buf2, &startp, endp))
263 endp))
283 soanum = getnum_str(&startp, endp);
299 n = getnum_str(&startp, endp);
304 if (!getword_str(buf2, sizeof buf2, &startp, endp))
313 n = getnum_str(&startp, endp);
320 endp))
362 getword_str(char *buf, int size, u_char **startpp, u_char *endp) argument
390 getnum_str(u_char **startpp, u_char *endp) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/set/
H A Dset.c128 register unsigned *endp = NULL; /* MR27 Avoid false memory check report */ local
133 endp = &(a.setword[a.n]);
134 while ( p < endp )
161 register unsigned *r, *p, *q, *endp; local
172 endp = &(b.setword[n]);
173 while ( p < endp ) *r++ = *p++ | *q++;
177 endp = &(big->setword[m]);
178 while ( p < endp ) *r++ = *p++;
196 register unsigned *r, *p, *q, *endp; local
208 endp
227 register unsigned *r, *p, *q, *endp; local
290 register unsigned *endp; local
341 register unsigned *endp = &(a.setword[a.n]); local
438 register unsigned *endp = &(b.setword[b.n]); local
488 register unsigned *endp; local
520 register unsigned *endp = &(a.setword[a.n]); local
555 register unsigned *p, *endp; local
680 register unsigned *endp; local
751 *endp = &(a.setword[a.n]); local
806 register unsigned *endp = &(a.setword[a.n]); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dbits.c562 unsigned *p, *endp; local
569 endp = &(f->setword[f->n]);
586 while ( p < endp )
593 if ( p < endp ) fprintf(ErrFile, ",");
633 unsigned *p, *endp; local
640 endp = &(f->setword[f->n]);
661 while ( p < endp )
667 if ( p < endp ) fprintf(Parser_c, ",");
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DAParser.cpp476 register SetWordType *endp = &(a[bsetsize]); local
480 while ( p < endp )
497 register SetWordType *endp = &(p[bsetsize]); local
508 } while (++p < endp);
H A Derr.h401 register SetWordType *endp = &(p[zzSET_SIZE]); local
412 } while (++p < endp);
473 register SetWordType *endp = &(a[zzSET_SIZE]); local
477 while ( p < endp )
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dhttpcore.c312 char *endp; local
315 content_len = strtoul ( value, &endp, 10 );
316 if ( *endp != '\0' ) {
456 char *endp; local
463 http->chunk_remaining = strtoul ( length, &endp, 16 );
464 if ( *endp != '\0' ) {
H A Discsi.c940 char *endp; local
944 identifier = strtoul ( value, &endp, 0 );
945 if ( *endp != '\0' ) {
/vbox/src/libs/libxml2-2.6.31/
H A Dtriostr.c942 @param endp Pointer to end of the converted string.
962 TRIO_ARGS2((source, endp),
964 char **endp)
967 return strtold(source, endp);
1079 if (endp)
1080 *endp = (char *)source;
1090 @param endp Pointer to end of the converted string.
1097 TRIO_ARGS2((source, endp),
1099 char **endp)
1102 return strtod(source, endp);
961 trio_to_long_double(source, endp), TRIO_CONST char *source, char **endp argument
1096 trio_to_double(source, endp), TRIO_CONST char *source, char **endp argument
1119 trio_to_float(source, endp), TRIO_CONST char *source, char **endp argument
1141 trio_to_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
1190 trio_to_unsigned_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dvfwprintf.c266 __ultoa(u_long val, CHAR_T *endp, int base, int octzero, const char *xdigs, argument
269 CHAR_T *cp = endp;
343 __ujtoa(uintmax_t val, CHAR_T *endp, int base, int octzero, argument
346 CHAR_T *cp = endp;
353 return (__ultoa((u_long)val, endp, base, octzero, xdigs,

Completed in 137 milliseconds