/glibc-2.36/sysdeps/ieee754/dbl-64/ |
D | e_atan2.c | 62 double ax, ay, u, du, v, vv, dv, t1, t2, t3, in __ieee754_atan2() local 226 EMULV (ax, u, v, vv); in __ieee754_atan2() 227 du = ((ay - v) - vv) / ax; in __ieee754_atan2() 232 EMULV (ay, u, v, vv); in __ieee754_atan2() 233 du = ((ax - v) - vv) / ay; in __ieee754_atan2() 243 v = u * u; in __ieee754_atan2() 245 zz = du + u * v * (d3.d in __ieee754_atan2() 246 + v * (d5.d in __ieee754_atan2() 247 + v * (d7.d in __ieee754_atan2() 248 + v * (d9.d in __ieee754_atan2() [all …]
|
D | s_fma.c | 46 union ieee754_double u, v, w; in __fma() 49 v.d = y; in __fma() 51 if (__builtin_expect (u.ieee.exponent + v.ieee.exponent in __fma() 54 || __builtin_expect (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG, 0) in __fma() 56 || __builtin_expect (u.ieee.exponent + v.ieee.exponent in __fma() 63 && v.ieee.exponent != 0x7ff) in __fma() 73 || v.ieee.exponent == 0x7ff in __fma() 79 if (u.ieee.exponent + v.ieee.exponent > 0x7ff + IEEE754_DOUBLE_BIAS) in __fma() 84 if (u.ieee.exponent + v.ieee.exponent in __fma() 87 int neg = u.ieee.negative ^ v.ieee.negative; in __fma() [all …]
|
D | s_atan.c | 55 v, w, ww, y, yy, z; in __atan() local 82 v = x * x; in __atan() 83 yy = d11.d + v * d13.d; in __atan() 84 yy = d9.d + v * yy; in __atan() 85 yy = d7.d + v * yy; in __atan() 86 yy = d5.d + v * yy; in __atan() 87 yy = d3.d + v * yy; in __atan() 88 yy *= x * v; in __atan() 139 v = w * w; in __atan() 142 yy = d11.d + v * d13.d; in __atan() [all …]
|
/glibc-2.36/sysdeps/ieee754/ldbl-96/ |
D | s_fmal.c | 35 union ieee854_long_double u, v, w; in __fmal() local 38 v.d = y; in __fmal() 40 if (__builtin_expect (u.ieee.exponent + v.ieee.exponent in __fmal() 44 || __builtin_expect (v.ieee.exponent >= 0x7fff - LDBL_MANT_DIG, 0) in __fmal() 46 || __builtin_expect (u.ieee.exponent + v.ieee.exponent in __fmal() 53 && v.ieee.exponent != 0x7fff) in __fmal() 63 || v.ieee.exponent == 0x7fff in __fmal() 69 if (u.ieee.exponent + v.ieee.exponent in __fmal() 75 if (u.ieee.exponent + v.ieee.exponent in __fmal() 78 int neg = u.ieee.negative ^ v.ieee.negative; in __fmal() [all …]
|
/glibc-2.36/sysdeps/ieee754/ldbl-128/ |
D | s_fmal.c | 43 union ieee854_long_double u, v, w; in __fmal() 46 v.d = y; in __fmal() 48 if (__builtin_expect (u.ieee.exponent + v.ieee.exponent in __fmal() 52 || __builtin_expect (v.ieee.exponent >= 0x7fff - LDBL_MANT_DIG, 0) in __fmal() 54 || __builtin_expect (u.ieee.exponent + v.ieee.exponent in __fmal() 61 && v.ieee.exponent != 0x7fff) in __fmal() 71 || v.ieee.exponent == 0x7fff in __fmal() 77 if (u.ieee.exponent + v.ieee.exponent in __fmal() 83 if (u.ieee.exponent + v.ieee.exponent in __fmal() 86 int neg = u.ieee.negative ^ v.ieee.negative; in __fmal() [all …]
|
/glibc-2.36/resolv/ |
D | herror.c | 77 struct iovec iov[4], *v = iov; in herror() local 80 v->iov_base = (/*noconst*/ char *)s; in herror() 81 v->iov_len = strlen(s); in herror() 82 v++; in herror() 83 v->iov_base = (char *) ": "; in herror() 84 v->iov_len = 2; in herror() 85 v++; in herror() 87 v->iov_base = (char *)hstrerror(h_errno); in herror() 88 v->iov_len = strlen(v->iov_base); in herror() 89 v++; in herror() [all …]
|
/glibc-2.36/nptl/ |
D | sem_waitcommon.c | 147 unsigned int v = atomic_load_relaxed (&sem->value); in __new_sem_wait_fast() 150 if ((v >> SEM_VALUE_SHIFT) == 0) in __new_sem_wait_fast() 153 &v, v - (1 << SEM_VALUE_SHIFT))) in __new_sem_wait_fast() 248 unsigned int v; in __new_sem_wait_slow64() local 262 v = atomic_load_relaxed (&sem->value); in __new_sem_wait_slow64() 275 if ((v & SEM_NWAITERS_MASK) != 0) in __new_sem_wait_slow64() 279 &v, v | SEM_NWAITERS_MASK)); in __new_sem_wait_slow64() 281 if ((v >> SEM_VALUE_SHIFT) == 0) in __new_sem_wait_slow64() 294 v = atomic_load_relaxed (&sem->value); in __new_sem_wait_slow64() 298 while ((v >> SEM_VALUE_SHIFT) == 0); in __new_sem_wait_slow64() [all …]
|
/glibc-2.36/sysdeps/aarch64/ |
D | tst-auditmod27.c | 32 la_version (unsigned int v) in la_version() argument 34 return v; in la_version() 98 uint8_t v = 0xff; in la_aarch64_gnu_pltenter() local 99 asm volatile ("dup v0.8b, %w0" : : "r" (v) : "v0"); in la_aarch64_gnu_pltenter() 100 asm volatile ("dup v1.8b, %w0" : : "r" (v) : "v1"); in la_aarch64_gnu_pltenter() 101 asm volatile ("dup v2.8b, %w0" : : "r" (v) : "v2"); in la_aarch64_gnu_pltenter() 102 asm volatile ("dup v3.8b, %w0" : : "r" (v) : "v3"); in la_aarch64_gnu_pltenter() 103 asm volatile ("dup v4.8b, %w0" : : "r" (v) : "v4"); in la_aarch64_gnu_pltenter() 104 asm volatile ("dup v5.8b, %w0" : : "r" (v) : "v5"); in la_aarch64_gnu_pltenter() 105 asm volatile ("dup v6.8b, %w0" : : "r" (v) : "v6"); in la_aarch64_gnu_pltenter() [all …]
|
D | tst-vpcs.c | 29 } v; member 63 if (before.v.u[i] != after.v.u[i]) in do_test() 68 (unsigned long long)before.v.u[2*(i/2)+1], in do_test() 69 (unsigned long long)before.v.u[2*(i/2)], in do_test() 70 (unsigned long long)after.v.u[2*(i/2)+1], in do_test() 71 (unsigned long long)after.v.u[2*(i/2)]); in do_test()
|
/glibc-2.36/sysdeps/unix/sysv/linux/arm/ |
D | atomic-machine.h | 63 ({ union { __typeof (mem) a; uint32_t v; } mem_arg = { .a = (mem) }; \ 64 union { __typeof (oldval) a; uint32_t v; } oldval_arg = { .a = (oldval) };\ 65 union { __typeof (newval) a; uint32_t v; } newval_arg = { .a = (newval) };\ 67 register uint32_t a_newval asm ("r1") = newval_arg.v; \ 68 register uint32_t a_ptr asm ("r2") = mem_arg.v; \ 70 register uint32_t a_oldval2 asm ("r4") = oldval_arg.v; \ 89 ({ union { __typeof (mem) a; uint32_t v; } mem_arg = { .a = (mem) }; \ 90 union { __typeof (oldval) a; uint32_t v; } oldval_arg = { .a = (oldval) };\ 91 union { __typeof (newval) a; uint32_t v; } newval_arg = { .a = (newval) };\ 93 register uint32_t a_newval asm ("r1") = newval_arg.v; \ [all …]
|
/glibc-2.36/benchtests/ |
D | bench-skeleton.c | 62 for (int v = 0; v < NUM_VARIANTS; v++) in main() local 68 bool is_bench = strncmp (VARIANT (v), "workload-", 9) == 0; in main() 84 for (i = 0; i < NUM_SAMPLES (v); i++) in main() 85 BENCH_FUNC (v, i); in main() 92 for (i = 0; i < NUM_SAMPLES (v); i++) in main() 93 BENCH_FUNC_LAT (v, i); in main() 98 d_total_i += iters * NUM_SAMPLES (v); in main() 101 for (i = 0; i < NUM_SAMPLES (v); i++) in main() 105 BENCH_FUNC (v, i); in main() 119 RESULT_ACCUM (cur, v, i, c * iters, (c + 1) * iters); in main() [all …]
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | scandir64.c | 48 struct __old_dirent64 **v = NULL; 61 c.v = NULL; 93 new = (struct __old_dirent64 **) realloc (v, 94 vsize * sizeof (*v)); 97 v = new; 98 c.v = (void *) v; 106 v[c.cnt++] = (struct __old_dirent64 *) memcpy (vnew, d, dsize); 115 free (v[--c.cnt]); 116 free (v); 123 qsort (v, c.cnt, sizeof (*v), [all …]
|
D | tst-getauxval.c | 30 unsigned long v = getauxval (t); in check_nonzero() local 31 printf ("%s: %lu (0x%lx)\n", s, v, v); in check_nonzero() 32 if (v == 0) in check_nonzero() 39 unsigned long v = getauxval (t); in check_eq() local 40 printf ("%s: %lu want: %lu\n", s, v, want); in check_eq() 41 if (v != want) in check_eq()
|
/glibc-2.36/sysdeps/htl/ |
D | sem-timedwait.c | 112 unsigned int v; in __sem_timedwait_internal() local 118 v = atomic_load_relaxed (&isem->value); in __sem_timedwait_internal() 125 if ((v & SEM_NWAITERS_MASK) != 0) in __sem_timedwait_internal() 129 &v, v | SEM_NWAITERS_MASK)); in __sem_timedwait_internal() 131 if ((v >> SEM_VALUE_SHIFT) == 0) in __sem_timedwait_internal() 153 v = atomic_load_relaxed (&isem->value); in __sem_timedwait_internal() 156 while ((v >> SEM_VALUE_SHIFT) == 0); in __sem_timedwait_internal() 159 &v, v - (1 << SEM_VALUE_SHIFT))); in __sem_timedwait_internal() 184 unsigned int v = atomic_fetch_or_relaxed (&isem->value, in __sem_wait_32_finish() local 186 v >>= SEM_VALUE_SHIFT; in __sem_wait_32_finish() [all …]
|
/glibc-2.36/sysdeps/wordsize-32/ |
D | divdi3.c | 52 extern DWtype __divdi3 (DWtype u, DWtype v); 53 extern DWtype __moddi3 (DWtype u, DWtype v); 54 extern UDWtype __udivdi3 (UDWtype u, UDWtype v); 55 extern UDWtype __umoddi3 (UDWtype u, UDWtype v); 275 __divdi3 (DWtype u, DWtype v) in __divdi3() argument 285 if (v < 0) in __divdi3() 288 v = -v; in __divdi3() 290 w = __udivmoddi4 (u, v, NULL); in __divdi3() 298 __moddi3 (DWtype u, DWtype v) in strong_alias() 308 if (v < 0) in strong_alias() [all …]
|
/glibc-2.36/stdio-common/ |
D | tst-sprintf3.c | 29 volatile union { long double l; long long x[2]; } u, v; in do_test() local 35 # define COMPARE_LDBL(u, v) \ in do_test() argument 36 ((u).l == (v).l && (u).x[0] == (v).x[0] && (u).x[1] == (v).x[1]) in do_test() 38 # define COMPARE_LDBL(u, v) ((u).l == (v).l) in do_test() argument 51 if (sscanf (#val, "%Lg", &v.l) != 1 || !COMPARE_LDBL (u, v)) \ in do_test() 54 __LINE__, u.l, v.l); \ in do_test()
|
D | tst-sprintf2.c | 10 volatile union { long double l; long long x[2]; } u, v; in do_test() local 16 # define COMPARE_LDBL(u, v) \ in do_test() argument 17 ((u).l == (v).l && (u).x[0] == (v).x[0] && (u).x[1] == (v).x[1]) in do_test() 19 # define COMPARE_LDBL(u, v) ((u).l == (v).l) in do_test() argument 32 if (sscanf (#val, "%La", &v.l) != 1 || !COMPARE_LDBL (u, v)) \ in do_test() 35 u.l, v.l); \ in do_test()
|
/glibc-2.36/stdlib/ |
D | longlong.h | 214 #define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v) argument 326 #define __umulsidi3(u,v) ((UDItype)(USItype) (u) * (UDItype)(USItype) (v)) argument 332 #define umul_ppmm(w1, w0, u, v) \ argument 334 UDItype __x = __umulsidi3 (u, v); \ 366 #define umul_ppmm(w1, w0, u, v) \ argument 376 "x" ((USItype) (v))); \ 473 #define umul_ppmm(w1, w0, u, v) \ argument 478 "rm" ((USItype) (v))) 509 #define umul_ppmm(w1, w0, u, v) \ argument 514 "rm" ((UDItype) (v))) [all …]
|
/glibc-2.36/dirent/ |
D | scandir-tail-common.c | 38 DIRENT_TYPE **v = NULL; in SCANDIR_TAIL() local 62 DIRENT_TYPE **new = realloc (v, vsize * sizeof *v); in SCANDIR_TAIL() 65 c.v = v = new; in SCANDIR_TAIL() 72 v[c.cnt++] = (DIRENT_TYPE *) memcpy (vnew, d, dsize); in SCANDIR_TAIL() 86 qsort (v, c.cnt, sizeof *v, (__compar_fn_t) cmp); in SCANDIR_TAIL() 88 *namelist = v; in SCANDIR_TAIL()
|
/glibc-2.36/iconvdata/testdata/ |
D | GBK | 6 p q r s t u v w x y z { | } ~ 11 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 23 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 35 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 47 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 59 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 71 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 83 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 95 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 107 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ [all …]
|
D | SHIFT_JISX0213 | 6 p q r s t u v w x y z { | } ~ 10 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 22 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 34 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 46 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 58 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 70 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 82 �p �q �r �s �t �u �v �~ 94 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ 106 �p �q �r �s �t �u �v �w �x �y �z �{ �| �} �~ [all …]
|
/glibc-2.36/scripts/ |
D | firstversions.awk | 53 f = v = firstversion[thislib, idx[thislib]]; 60 if (v != $1 && (thislib, v) in usedversion) 61 print " " v; 62 v = firstversion[thislib, idx[thislib]]; 66 if ($1 == v || $1 == f) 71 print " " $1, "=", v; 74 usedversion[thislib, v] = 1; 82 print " " v;
|
/glibc-2.36/sysdeps/ieee754/ldbl-128ibm/ |
D | e_powl.c | 153 long double y1, t1, t2, r, s, sgn, t, u, v, w; in __ieee754_powl() local 327 v = one / (ax + bp[k]); in __ieee754_powl() 328 s = u * v; in __ieee754_powl() 335 s_l = v * ((u - s_h * t_h) - s_h * t_l); in __ieee754_powl() 339 v = LD[0] + s2 * (LD[1] + s2 * (LD[2] + s2 * (LD[3] + s2 * (LD[4] + s2)))); in __ieee754_powl() 340 r = s2 * s2 * u / v; in __ieee754_powl() 348 v = s_l * t_h + t_l * s; in __ieee754_powl() 350 p_h = u + v; in __ieee754_powl() 352 p_l = v - (p_h - u); in __ieee754_powl() 403 v = (p_l - (t - p_h)) * lg2 + t * lg2_l; in __ieee754_powl() [all …]
|
/glibc-2.36/include/sys/ |
D | stat.h | 11 in_ino_t_range (__ino64_t v) in in_ino_t_range() argument 13 __ino_t s = v; in in_ino_t_range() 14 return s == v; in in_ino_t_range() 18 in_off_t_range (__off64_t v) in in_off_t_range() argument 20 __off_t s = v; in in_off_t_range() 21 return s == v; in in_off_t_range() 25 in_blkcnt_t_range (__blkcnt64_t v) in in_blkcnt_t_range() argument 27 __blkcnt_t s = v; in in_blkcnt_t_range() 28 return s == v; in in_blkcnt_t_range()
|
/glibc-2.36/sunrpc/rpc/ |
D | xdr.h | 255 #define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)(v))) argument 257 #define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32(buf, (int32_t)(v)) argument 264 #define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v))) argument 266 #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument 274 #define IXDR_PUT_BOOL(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument 275 #define IXDR_PUT_ENUM(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument 276 #define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument 277 #define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument
|