HomeSort by relevance Sort by last modified time
    Searched defs:eptr (Results 1 - 8 of 8) sorted by null

  /external/e2fsprogs/lib/e2p/
hashstr.c 51 char *eptr; local
64 num = strtol(string+8, &eptr, 10);
67 if (*eptr)
mntopts.c 59 char *eptr; local
73 num = strtol(string+8, &eptr, 10);
76 if (*eptr)
feature.c 147 char *eptr; local
178 num = strtol(string+9, &eptr, 10);
181 if (*eptr)
221 char *eptr; local
252 num = strtol(string+9, &eptr, 10);
255 if (*eptr)
  /system/core/libprocessgroup/
processgroup.cpp 119 char *eptr; local
120 while ((eptr = (char *)memchr(ctx->buf_ptr, '\n', ctx->buf_len)) == NULL) {
130 *eptr = '\0';
137 if (pid_eptr != eptr) {
141 ctx->buf_len -= (eptr - ctx->buf_ptr) + 1;
142 ctx->buf_ptr = eptr + 1;
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 319 char* eptr; local
345 eptr = pc_address + strlen(pc_address);
346 address = strtoul(pc_address, &eptr, 16);
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
asn1_gen.c 393 char *eptr; local
396 tag_num = strtoul(vstart, &eptr, 10);
398 if (eptr && *eptr && (eptr > vstart + vlen))
407 if (eptr)
408 vlen -= eptr - vstart;
413 switch (*eptr)
433 erch[0] = *eptr;
839 char *eptr; local
    [all...]
  /external/openssl/crypto/asn1/
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/pcre/dist/
pcre_exec.c 154 eptr pointer into the subject
165 match_ref(int offset, register PCRE_PUCHAR eptr, int length, match_data *md,
168 PCRE_PUCHAR eptr_start = eptr;
175 if (eptr >= md->end_subject)
180 pchars(eptr, length, TRUE, md);
215 if (eptr >= md->end_subject) return -2; /* Partial match */
216 GETCHARINC(c, eptr);
239 if (eptr >= md->end_subject) return -2; /* Partial match */
240 cc = UCHAR21TEST(eptr);
244 eptr++
555 #define eptr macro
6236 #undef eptr macro
    [all...]

Completed in 251 milliseconds