/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
D | e_fmod.c | 38 u_int32_t lx,ly,lz; in __ieee754_fmod() local 40 EXTRACT_WORDS(hx,lx,x); in __ieee754_fmod() 51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */ in __ieee754_fmod() 52 if(lx==ly) in __ieee754_fmod() 59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; in __ieee754_fmod() 80 hx = (hx<<n)|(lx>>(32-n)); in __ieee754_fmod() 81 lx <<= n; in __ieee754_fmod() 83 hx = lx<<(n-32); in __ieee754_fmod() 84 lx = 0; in __ieee754_fmod() 103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() [all …]
|
D | e_atan2.c | 66 u_int32_t lx,ly; in __ieee754_atan2() local 68 EXTRACT_WORDS(hx,lx,x); in __ieee754_atan2() 72 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| in __ieee754_atan2() 75 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */ in __ieee754_atan2() 88 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; in __ieee754_atan2()
|
D | s_frexp.c | 37 int32_t hx, ix, lx; in frexp() local 38 EXTRACT_WORDS(hx,lx,x); in frexp() 41 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */ in frexp()
|
D | e_log10.c | 83 u_int32_t lx; in __ieee754_log10() local 85 EXTRACT_WORDS(hx,lx,x); in __ieee754_log10() 89 if (((hx&0x7fffffff)|lx)==0) in __ieee754_log10()
|
D | s_scalbn.c | 37 int32_t k,hx,lx; in scalbn() local 38 EXTRACT_WORDS(hx,lx,x); in scalbn() 41 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */ in scalbn()
|
D | e_sinh.c | 46 u_int32_t lx; in __ieee754_sinh() local 70 GET_LOW_WORD(lx,x); in __ieee754_sinh() 71 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) { in __ieee754_sinh()
|
D | e_cosh.c | 54 u_int32_t lx; in __ieee754_cosh() local 81 GET_LOW_WORD(lx,x); in __ieee754_cosh() 83 ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) { in __ieee754_cosh()
|
D | e_log2.c | 45 u_int32_t lx; in __ieee754_log2() local 47 EXTRACT_WORDS(hx,lx,x); in __ieee754_log2() 51 if (((hx&0x7fffffff)|lx)==0) in __ieee754_log2()
|
D | e_exp.c | 124 u_int32_t lx; in __ieee754_exp() local 125 GET_LOW_WORD(lx,x); in __ieee754_exp() 126 if(((hx&0xfffff)|lx)!=0) in __ieee754_exp()
|
D | e_log.c | 107 u_int32_t lx; in __ieee754_log() local 109 EXTRACT_WORDS(hx,lx,x); in __ieee754_log() 113 if (((hx&0x7fffffff)|lx)==0) in __ieee754_log()
|
D | e_asin.c | 85 u_int32_t lx; in __ieee754_asin() local 86 GET_LOW_WORD(lx,x); in __ieee754_asin() 87 if(((ix-0x3ff00000)|lx)==0) in __ieee754_asin()
|
D | e_acos.c | 84 u_int32_t lx; in __ieee754_acos() local 86 GET_LOW_WORD(lx,x); in __ieee754_acos() 87 if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */ in __ieee754_acos()
|
D | e_pow.c | 124 u_int32_t lx,ly; in __ieee754_pow() local 126 EXTRACT_WORDS(hx,lx,x); in __ieee754_pow() 134 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) || in __ieee754_pow() 161 if(((ix-0x3ff00000)|lx)==0) in __ieee754_pow() 180 if(lx==0) { in __ieee754_pow()
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv3_dec/ |
D | gles3.types | 10 GLintptr 32 0x%08lx 13 GLsizeiptr 32 0x%08lx 40 uint64_t 64 0x%016lx 43 GLint64 64 0x%016lx 47 GLuint64 64 0x%016lx
|
/device/linaro/dragonboard/db845c/firmware/ |
D | adsp.b13 | 1 …lx%lx, %lx)qurt_elite_memorymap.cpp:qurt_elite_memorymap_add_remove_pool_page qurt_mem_pool_att…
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/ |
D | gles1.types | 10 GLintptr 32 0x%08lx 13 GLsizeiptr 32 0x%08lx
|
/device/generic/opengl-transport/host/libs/virglrenderer/renderControl_dec/ |
D | renderControl.types | 2 uint64_t 64 0x%016lx
|
/device/generic/goldfish-opengl/system/renderControl_enc/ |
D | renderControl.types | 2 uint64_t 64 0x%016lx
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | mathmodule.c | 1094 PyObject *lx; in math_factorial() local 1101 lx = PyLong_FromDouble(dx); in math_factorial() 1102 if (lx == NULL) in math_factorial() 1104 x = PyLong_AsLong(lx); in math_factorial() 1105 Py_DECREF(lx); in math_factorial()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | mathmodule.c | 1094 PyObject *lx; in math_factorial() local 1101 lx = PyLong_FromDouble(dx); in math_factorial() 1102 if (lx == NULL) in math_factorial() 1104 x = PyLong_AsLong(lx); in math_factorial() 1105 Py_DECREF(lx); in math_factorial()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | trees.c | 1079 unsigned lx = 0; /* running index in l_buf */ local 1084 dist = s->d_buf[lx]; 1085 lc = s->l_buf[lx++]; 1111 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, 1114 } while (lx < s->last_lit);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | trees.c | 1067 unsigned lx = 0; /* running index in l_buf */ local 1072 dist = s->d_buf[lx]; 1073 lc = s->l_buf[lx++]; 1099 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, 1102 } while (lx < s->last_lit);
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
D | UefiShellDebug1CommandsLib.uni | 157 #string STR_MM_ADDRESS #language en-US " 0x%016lx : " 158 #string STR_MM_BUF #language en-US "0x%0*lx"
|
/device/google/sunfish/audio/acdbdata/ |
D | workspaceFile.qwsp | 1 …th3yYNL/cpRl9XfxBX6klR+XUmwNJmNvMHlpan9a5SkEZtRiD9IEA/m7/+gbW27VatVP437oDe/lx/vbh7u+fPdwOxt2b9qjaM…
|