Home
last modified time | relevance | path

Searched refs:n2 (Results 1 – 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_expl.c205 int k, n, n2; in expm1l() local
276 n2 = (unsigned)n % INTERVALS; in expm1l()
295 t = tbl[n2].lo + tbl[n2].hi; in expm1l()
298 t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q + in expm1l()
299 tbl[n2].hi * r1); in expm1l()
303 t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q + in expm1l()
304 tbl[n2].hi * r1); in expm1l()
308 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1)); in expm1l()
312 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1)); in expm1l()
322 t = SUM2P(tbl[n2].hi, tbl[n2].lo - twomk + t * (q + r1)); in expm1l()
[all …]
Dk_expl.h242 int n, n2; in __k_expl() local
255 n2 = (unsigned)n % INTERVALS; in __k_expl()
266 t = tbl[n2].lo + tbl[n2].hi; in __k_expl()
267 *hip = tbl[n2].hi; in __k_expl()
268 *lop = tbl[n2].lo + t * (q + r1); in __k_expl()
/bionic/libc/kernel/uapi/linux/
Dax25.h101 unsigned int n2, n2count; member
112 unsigned int n2, n2count; member
Dgsmmux.h34 unsigned int n2; member
/bionic/tests/
Dsearch_test.cpp82 node n2("a"); in TEST() local
87 ASSERT_EQ(nullptr, tfind(&n2, &root, node_cmp)); in TEST()
96 ASSERT_EQ(nullptr, tfind(&n2, &root, node_cmp)); in TEST()
100 ASSERT_NE(nullptr, tsearch(&n2, &root, node_cmp)); in TEST()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvfprintf.c273 int n, n2; /* handy integers (short term usage) */ in __vfprintf() local
372 n2 = (ep) - (p); \ in __vfprintf()
373 if (n2 > (len)) \ in __vfprintf()
374 n2 = (len); \ in __vfprintf()
375 if (n2 > 0) \ in __vfprintf()
376 PRINT((p), n2); \ in __vfprintf()
377 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \ in __vfprintf()
426 n2 = 0; \ in __vfprintf()
429 APPEND_DIGIT(n2, *cp); \ in __vfprintf()
442 nextarg = n2; \ in __vfprintf()
[all …]
Dvfwprintf.c283 int n, n2, n3; /* handy integers (short term usage) */ in __vfwprintf() local
370 n2 = (ep) - (p); \ in __vfwprintf()
371 if (n2 > (len)) \ in __vfwprintf()
372 n2 = (len); \ in __vfwprintf()
373 if (n2 > 0) \ in __vfwprintf()
374 PRINT((p), n2); \ in __vfwprintf()
375 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \ in __vfwprintf()
418 n2 = 0; \ in __vfwprintf()
421 APPEND_DIGIT(n2, *cp); \ in __vfwprintf()
430 nextarg = n2; \ in __vfwprintf()
[all …]