Searched refs:eptr (Results 1 - 8 of 8) sorted by relevance
/external/fdlibm/ |
H A D | s_frexp.c | 34 double ieee_frexp(double x, int *eptr) argument 36 double ieee_frexp(x, eptr) 37 double x; int *eptr; 44 *eptr = 0; 50 *eptr = -54; 52 *eptr += (ix>>20)-1022;
|
/external/pcre/ |
H A D | pcre_exec.c | 140 eptr points into the subject 149 match_ref(int offset, register USPTR eptr, int length, match_data *md, argument 155 if (eptr >= md->end_subject) 160 pchars(eptr, length, TRUE, md); 169 if (length > md->end_subject - eptr) return FALSE; 181 USPTR endptr = eptr + length; 182 while (eptr < endptr) 185 GETCHARINC(c, eptr); 198 { if (md->lcc[*p++] != md->lcc[*eptr++]) return FALSE; } 205 { while (length-- > 0) if (*p++ != *eptr 470 match(REGISTER USPTR eptr, REGISTER const uschar *ecode, USPTR mstart, const uschar *markptr, int offset_top, match_data *md, unsigned long int ims, eptrblock *eptrb, int flags, unsigned int rdepth) argument 514 #define eptr macro 5522 #undef eptr macro [all...] |
H A D | pcre_internal.h | 417 #define GETCHAR(c, eptr) c = *eptr; 418 #define GETCHARTEST(c, eptr) c = *eptr; 419 #define GETCHARINC(c, eptr) c = *eptr++; 420 #define GETCHARINCTEST(c, eptr) c = *eptr++; 421 #define GETCHARLEN(c, eptr, len) c = *eptr; [all...] |
/external/e2fsprogs/lib/e2p/ |
H A D | hashstr.c | 50 char *eptr; local 63 num = strtol(string+8, &eptr, 10); 66 if (*eptr)
|
H A D | mntopts.c | 54 char *eptr; local 68 num = strtol(string+8, &eptr, 10); 71 if (*eptr)
|
H A D | feature.c | 124 char *eptr; local 155 num = strtol(string+9, &eptr, 10); 158 if (*eptr) 198 char *eptr; local 229 num = strtol(string+9, &eptr, 10); 232 if (*eptr)
|
/external/openssl/crypto/asn1/ |
H A D | asn1_gen.c | 390 char *eptr; local 393 tag_num = strtoul(vstart, &eptr, 10); 395 if (eptr && *eptr && (eptr > vstart + vlen)) 404 if (eptr) 405 vlen -= eptr - vstart; 410 switch (*eptr) 430 erch[0] = *eptr; 836 char *eptr; local [all...] |
/external/grub/lib/ |
H A D | device.c | 521 char *ptr, *eptr; local 593 eptr = ptr; 594 while (*eptr && ! isspace (*eptr)) 595 eptr++; 596 *eptr = 0;
|
Completed in 181 milliseconds