/external/fdlibm/ |
D | e_sqrt.c | 100 unsigned r,t1,s1,ix1,q1; local 104 ix1 = __LO(x); /* low word of x */ 113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */ 122 ix0 |= (ix1>>11); ix1 <<= 21; 126 ix0 |= (ix1>>(32-i)); 127 ix1 <<= i; 132 ix0 += ix0 + ((ix1&sign)>>31); 133 ix1 += ix1; 138 ix0 += ix0 + ((ix1&sign)>>31); 139 ix1 += ix1; [all …]
|
/external/rust/crates/libm/src/math/ |
D | sqrt.rs | 127 let mut ix1: Wrapping<u32>; in sqrt() localVariable 131 ix1 = Wrapping(x.to_bits() as u32); in sqrt() 139 if ((ix0 & !(sign.0 as i32)) | ix1.0 as i32) == 0 { in sqrt() 152 ix0 |= (ix1 >> 11).0 as i32; in sqrt() 153 ix1 <<= 21; in sqrt() 161 ix0 |= (ix1 >> (32 - i) as usize).0 as i32; in sqrt() 162 ix1 = ix1 << i as usize; in sqrt() 168 ix0 += ix0 + ((ix1 & sign) >> 31).0 as i32; in sqrt() 169 ix1 += ix1; in sqrt() 174 ix0 += ix0 + ((ix1 & sign) >> 31).0 as i32; in sqrt() [all …]
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | ulp.inl | 38 #define GLM_EXTRACT_WORDS(ix0,ix1,d) \ argument 43 (ix1) = ew_u.parts.lsw; \ 60 #define GLM_INSERT_WORDS(d,ix0,ix1) \ argument 64 iw_u.parts.lsw = (ix1); \
|
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryInstancedRenderingTests.cpp | 236 const int ix1 = std::max(deRoundFloatToInt32(x1), 0); in getSubregion() local 241 return tcu::getSubregion(image, ix1, iy1, ix2 - ix1, iy2 - iy1); in getSubregion()
|
/external/skia/src/core/ |
D | SkScan_Hairline.cpp | 121 int ix1 = SkFDot6Round(x1); in HairLineRgn() local 122 if (ix0 == ix1) {// too short to draw in HairLineRgn() 126 if ((ix1 - ix0) > 100000 || (ix1 - ix0) < 0) { in HairLineRgn() 133 horiline(ix0, ix1, startY, slope, blitter); in HairLineRgn()
|
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 884 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); 891 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); 902 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); 903 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); 2629 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument 2636 if (ix1) *ix1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel() 2642 if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); in stbtt_GetGlyphBitmapBoxSubpixel() 2647 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument 2649 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox() 2652 …float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetCodepointBitmapBoxSubpixel() argument [all …]
|
/external/tensorflow/tensorflow/core/util/sparse/ |
D | README.md | 197 Tensor ix1(DT_INT64, TensorShape({N1, 3}); 204 SparseTensor st1(ix1, vals1, TensorShape({10, 20, 5}), {1, 0, 2});
|
/external/skqp/src/core/ |
D | SkScan_Hairline.cpp | 120 int ix1 = SkFDot6Round(x1); in HairLineRgn() local 121 if (ix0 == ix1) {// too short to draw in HairLineRgn() 128 horiline(ix0, ix1, startY, slope, blitter); in HairLineRgn()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderRenderCase.cpp | 754 int ix1 = deCeilFloatToInt32(sx1 - 0.5f); in computeVertexReference() local 770 for (int ix = ix0; ix < ix1; ix++) in computeVertexReference()
|
/external/deqp/modules/glshared/ |
D | glsShaderRenderCase.cpp | 682 int ix1 = deCeilFloatToInt32(sx1 - 0.5f); in computeVertexReference() local 698 for (int ix = ix0; ix < ix1; ix++) in computeVertexReference()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup_tri.c | 896 int ix1 = trimmed_box.x1 / TILE_SIZE; in lp_setup_bin_triangle() local 928 for (x = ix0; x <= ix1; x++) in lp_setup_bin_triangle()
|
/external/deqp/modules/gles2/functional/ |
D | es2fVertexTextureTests.cpp | 344 const int ix1 = deCeilFloatToInt32(ldru.z() * (float)region.w - 0.5f); in setPixelColors() local 349 for (int ix = ix0; ix < ix1; ix++) in setPixelColors()
|
/external/deqp/modules/gles3/functional/ |
D | es3fVertexTextureTests.cpp | 439 const int ix1 = deCeilFloatToInt32(ldru.z() * (float)region.w - 0.5f); in setPixelColors() local 444 for (int ix = ix0; ix < ix1; ix++) in setPixelColors()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.cpp | 2378 const int ix1 = deCeilFloatToInt32(sx1 - 0.5f); in computeVertexReference() local 2394 for (int ix = ix0; ix < ix1; ix++) in computeVertexReference()
|
/external/hyphenation-patterns/hu/ |
D | hyph-hu.pat.txt | 25372 ix1öd 25373 ix1ös 25374 ix1őr 25375 ix1ős
|