/external/fdlibm/ |
D | e_fmod.c | 36 unsigned lx,ly,lz; local 39 lx = __LO(x); /* low word of x */ 51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */ 52 if(lx==ly) 59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; 80 hx = (hx<<n)|(lx>>(32-n)); 81 lx <<= n; 83 hx = lx<<(n-32); 84 lx = 0; 103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; [all …]
|
D | s_nextafter.c | 31 unsigned lx,ly; local 34 lx = __LO(x); /* low word of x */ 40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ 44 if((ix|lx)==0) { /* x == 0 */ 51 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ 52 if(lx==0) hx -= 1; 53 lx -= 1; 55 lx += 1; 56 if(lx==0) hx += 1; 59 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ [all …]
|
D | s_ilogb.c | 29 int hx,lx,ix; local 33 lx = __LO(x); 34 if((hx|lx)==0) 38 for (ix = -1043; lx>0; lx<<=1) ix -=1;
|
D | e_jn.c | 60 int i,hx,ix,lx, sgn; local 69 lx = __LO(x); 71 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x; 81 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */ 221 int i,hx,ix,lx; local 227 lx = __LO(x); 229 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x; 230 if((ix|lx)==0) return -one/zero;
|
D | e_atan2.c | 65 unsigned lx,ly; local 68 lx = __LO(x); 71 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| 74 if((hx-0x3ff00000|lx)==0) return ieee_atan(y); /* x=1.0 */ 87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
|
D | s_isnan.c | 28 int hx,lx; local 30 lx = __LO(x); 31 hx |= (unsigned)(lx|(-lx))>>31;
|
D | e_atanh.c | 52 unsigned lx; local 54 lx = __LO(x); /* low word */ 56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
|
D | s_logb.c | 29 int lx,ix; local 31 lx = __LO(x); /* low x */ 32 if((ix|lx)==0) return -1.0/ieee_fabs(x);
|
D | s_frexp.c | 40 int hx, ix, lx; local 43 lx = __LO(x); 45 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
|
D | e_log10.c | 70 unsigned lx; local 73 lx = __LO(x); /* low word of x */ 77 if (((hx&0x7fffffff)|lx)==0)
|
D | e_cosh.c | 52 unsigned lx; local 79 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x); 81 (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
|
D | s_scalbn.c | 40 int k,hx,lx; local 42 lx = __LO(x); 45 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
|
D | e_sinh.c | 49 unsigned lx; local 73 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x); 74 if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
|
D | e_remainder.c | 40 unsigned sx,lx,lp; local 44 lx = __LO(x); /* low word of x */ 60 if (((hx-hp)|(lx-lp))==0) return zero*x;
|
D | e_log.c | 94 unsigned lx; local 97 lx = __LO(x); /* low word of x */ 101 if (((hx&0x7fffffff)|lx)==0)
|
D | e_lgamma_r.c | 214 int i,hx,lx,ix; local 217 lx = __LO(x); 223 if((ix|lx)==0) return one/zero; 241 if((((ix-0x3ff00000)|lx)==0)||(((ix-0x40000000)|lx)==0)) r = 0;
|
/external/valgrind/gdbserver_tests/ |
D | mcvabits.stdinB.gdb | 23 eval "monitor check_memory addressable 0x%lx 10", $0xundefined 24 eval "monitor check_memory defined 0x%lx 10", $0xundefined 25 eval "monitor get_vbits 0x%lx 10", $0xundefined 26 eval "monitor xb 0x%lx 10", $0xundefined 32 eval "monitor check_memory addressable 0x%lx 10", $0xundefined 33 eval "monitor check_memory defined 0x%lx 10", $0xundefined 34 eval "monitor get_vbits 0x%lx 10", $0xundefined 38 eval "monitor make_memory defined 0x%lx 3", $0xundefined_2 40 eval "monitor check_memory addressable 0x%lx 10", $0xundefined 41 eval "monitor check_memory defined 0x%lx 10", $0xundefined [all …]
|
/external/icu/icu4c/source/data/unit/ |
D | mt.txt | 66 dnam{"lx"} 67 few{"{0} lx"} 68 many{"{0} lx"} 69 one{"{0} lx"} 70 other{"{0} lx"} 144 dnam{"lx"} 145 few{"{0} lx"} 146 many{"{0} lx"} 147 one{"{0} lx"} 148 other{"{0} lx"}
|
/external/jemalloc/include/jemalloc/internal/ |
D | smoothstep.sh | 40 …y=`echo ${yprec} k ${step} ${nsteps} / sx _2 lx 3 ^ '*' 3 lx 2 ^ '*' + p | dc | tr -d '\\\\\n' | s… 46 …y=`echo ${yprec} k ${step} ${nsteps} / sx 6 lx 5 ^ '*' _15 lx 4 ^ '*' + 10 lx 3 ^ '*' + p | dc | t… 52 …y=`echo ${yprec} k ${step} ${nsteps} / sx _20 lx 7 ^ '*' 70 lx 6 ^ '*' + _84 lx 5 ^ '*' + 35 lx 4 …
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | ulp.inl | 145 glm::detail::uint32 lx, ly; local 147 GLM_EXTRACT_WORDS(hx, lx, x); 152 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || // x is nan 156 if((ix|lx)==0) { // x == 0 162 if(hx>hy||((hx==hy)&&(lx>ly))) { // x > y, x -= ulp 163 if(lx==0) hx -= 1; 164 lx -= 1; 166 lx += 1; 167 if(lx==0) hx += 1; 170 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){// x < y, x -= ulp [all …]
|
/external/v8/src/base/ |
D | ieee754.cc | 939 uint32_t lx; in acos() local 940 GET_LOW_WORD(lx, x); in acos() 941 if (((ix - 0x3ff00000) | lx) == 0) { /* |x|==1 */ in acos() 997 uint32_t lx; in acosh() local 998 EXTRACT_WORDS(hx, lx, x); in acosh() 1007 } else if (((hx - 0x3ff00000) | lx) == 0) { in acosh() 1072 uint32_t lx; in asin() local 1073 GET_LOW_WORD(lx, x); in asin() 1074 if (((ix - 0x3ff00000) | lx) == 0) /* asin(1)=+-pi/2 with inexact */ in asin() 1294 uint32_t lx, ly; in atan2() local [all …]
|
/external/clang/test/OpenMP/ |
D | atomic_capture_codegen.cpp | 16 long lv, lx; variable 186 {ulv = lx; lx /= lv;} in main() 429 {lv = lx; lx = lx % usv;} in main()
|
D | atomic_update_codegen.cpp | 16 long lv, lx; variable 177 lx /= lv; in main() 389 lx = lx % usv; in main()
|
/external/llvm/test/CodeGen/Mips/ |
D | hf16call32.ll | 13 @lx = common global float 0.000000e+00, align 4 46 store float 0.000000e+00, float* @lx, align 4 69 store float 1.500000e+00, float* @lx, align 4 70 %0 = load float, float* @lx, align 4 74 %2 = load float, float* @lx, align 4 77 %4 = load float, float* @lx, align 4 93 store float 9.000000e+00, float* @lx, align 4 95 %10 = load float, float* @lx, align 4 100 %13 = load float, float* @lx, align 4 107 %17 = load float, float* @lx, align 4 [all …]
|
/external/clang/test/SemaCXX/ |
D | class.cpp | 91 static int lx; in f() local 93 int m() { return lx; } in f() 96 int m() { return lx; } in f()
|