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

  /external/fdlibm/
s_frexp.c 34 double ieee_frexp(double x, int *eptr)
36 double ieee_frexp(x, eptr)
37 double x; int *eptr;
44 *eptr = 0;
50 *eptr = -54;
52 *eptr += (ix>>20)-1022;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexp.c 35 frexp(double x, int *eptr)
40 *eptr = 0;
46 *eptr = -54;
48 *eptr += (ix>>20)-1022;
s_frexpf.c 26 frexpf(float x, int *eptr)
31 *eptr = 0;
37 *eptr = -25;
39 *eptr += (ix>>23)-126;
  /external/pcre/dist/
pcre_internal.h 595 #define UCHAR21(eptr) (*(eptr))
596 #define UCHAR21TEST(eptr) (*(eptr))
597 #define UCHAR21INC(eptr) (*(eptr)++)
598 #define UCHAR21INCTEST(eptr) (*(eptr)++)
613 #define GETCHAR(c, eptr) c = *eptr;
    [all...]
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
6248 #undef eptr macro
    [all...]
  /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 149 char *eptr; local
180 num = strtol(string+9, &eptr, 10);
183 if (*eptr)
223 char *eptr; local
254 num = strtol(string+9, &eptr, 10);
257 if (*eptr)
  /toolchain/binutils/binutils-2.25/ld/
ldemul.c 277 ld_emulation_xfer_type **eptr = ld_emulations; local
281 for (; *eptr; eptr++)
283 if (strcmp (target, (*eptr)->emulation_name) == 0)
285 ld_emulation = *eptr;
298 ld_emulation_xfer_type **eptr = ld_emulations; local
301 for (; *eptr; eptr++)
307 fprintf (f, "%s", (*eptr)->emulation_name);
314 ld_emulation_xfer_type **eptr; local
    [all...]
  /frameworks/rs/driver/runtime/
rs_f16_math.c 31 extern half __attribute__((overloadable)) frexp(half x, int *eptr) {
38 *eptr = 0;
41 // x is subnormal. Scale it by 2^12 (and adjust eptr accordingly) so
46 *eptr = -12;
49 // Adjust eptr by (non-biased exponent of hx + 1). Set the non-biased
51 *eptr += (ix >> 10) - 14;
rs_cl.c     [all...]
  /external/vboot_reference/tests/
vboot_display_tests.c 230 FontArrayEntryHeader *eptr; local
239 eptr = (FontArrayEntryHeader *)(buf + sizeof(h));
240 Memcpy(eptr, eh, sizeof(eh));
246 &eptr[1].info, "Glyph found");
247 TEST_EQ(buffersize, eptr[1].info.original_size, " size");
249 &eptr[0].info, "Glyph not found");
250 TEST_EQ(buffersize, eptr[0].info.original_size, " size");
  /external/boringssl/src/crypto/x509/
asn1_gen.c 409 char *eptr; local
412 tag_num = strtoul(vstart, &eptr, 10);
414 if (eptr && *eptr && (eptr > vstart + vlen))
423 if (eptr)
424 vlen -= eptr - vstart;
429 switch (*eptr)
449 erch[0] = *eptr;
855 char *eptr; local
    [all...]
  /system/core/libprocessgroup/
processgroup.cpp 160 char *eptr; local
161 while ((eptr = (char *)memchr(ctx->buf_ptr, '\n', ctx->buf_len)) == NULL) {
171 *eptr = '\0';
178 if (pid_eptr != eptr) {
182 ctx->buf_len -= (eptr - ctx->buf_ptr) + 1;
183 ctx->buf_ptr = eptr + 1;
  /external/iw/
coalesce.c 27 char *eptr, *value1, *value2, *sptr = NULL, *end, buf[16768]; local
113 pkt_offset = strtoul(value1, &eptr, 10);
114 if (eptr != value1 + strlen(value1))
wowlan.c 214 char *eptr, *value1, *value2, *sptr = NULL; local
278 pkt_offset = strtoul(value1, &eptr, 10);
279 if (eptr != value1 + strlen(value1)) {
scan.c 346 char *eptr; local
414 freq = strtoul(argv[i], &eptr, 10);
415 if (eptr != argv[i] + strlen(argv[i])) {
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 318 char* eptr; local
339 eptr = pc_address + strlen(pc_address);
340 address = strtoul(pc_address, &eptr, 16);
  /external/avahi/avahi-compat-howl/include/corby/
buffer.h 76 sw_uint8 ** eptr,
88 sw_uint8 ** eptr,
  /toolchain/binutils/binutils-2.25/bfd/
vms-misc.c 69 char *eptr; local
75 if ((eptr = getenv ("VMS_DEBUG")) != NULL)
77 min_level = atoi (eptr);

Completed in 1167 milliseconds