/third_party/jerryscript/jerry-libm/ |
D | sqrt.c | 108 unsigned r, t1, s1, ix1, q1; in sqrt() local 112 ix1 = __LO (x); /* low word of x */ in sqrt() 122 if (((ix0 & (~sign)) | ix1) == 0) /* sqrt(+-0) = +-0 */ in sqrt() 138 ix0 |= (ix1 >> 11); in sqrt() 139 ix1 <<= 21; in sqrt() 146 ix0 |= (ix1 >> (32 - i)); in sqrt() 147 ix1 <<= i; in sqrt() 153 ix0 += ix0 + ((ix1 & sign) >> 31); in sqrt() 154 ix1 += ix1; in sqrt() 159 ix0 += ix0 + ((ix1 & sign) >> 31); in sqrt() [all …]
|
/third_party/musl/porting/liteos_m/kernel/src/math/ |
D | sqrt.c | 88 uint32_t r,t1,s1,ix1,q1; in sqrt() local 90 EXTRACT_WORDS(ix0, ix1, x); in sqrt() 98 if (((ix0&~sign)|ix1) == 0) in sqrt() 108 ix0 |= (ix1>>11); in sqrt() 109 ix1 <<= 21; in sqrt() 114 ix0 |= ix1>>(32-i); in sqrt() 115 ix1 <<= i; in sqrt() 120 ix0 += ix0 + ((ix1&sign)>>31); in sqrt() 121 ix1 += ix1; in sqrt() 126 ix0 += ix0 + ((ix1&sign)>>31); in sqrt() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/libm/ |
D | e_sqrt.c | 109 u_int32_t r, t1, s1, ix1, q1; local 111 EXTRACT_WORDS(ix0, ix1, x); 120 if (((ix0 & (~sign)) | ix1) == 0) 130 ix0 |= (ix1 >> 11); 131 ix1 <<= 21; 136 ix0 |= (ix1 >> (32 - i)); 137 ix1 <<= i; 142 ix0 += ix0 + ((ix1 & sign) >> 31); 143 ix1 += ix1; 148 ix0 += ix0 + ((ix1 & sign) >> 31); [all …]
|
D | math_private.h | 93 #define EXTRACT_WORDS(ix0,ix1,d) \ argument 98 (ix1) = ew_u.parts.lsw; \ 121 #define INSERT_WORDS(d,ix0,ix1) \ argument 125 iw_u.parts.lsw = (ix1); \
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_rect.c | 154 unsigned ix0, ix1, iy0, iy1; in lp_rast_rectangle() local 193 ix1 = box.x1 / STAMP_SIZE; in lp_rast_rectangle() 199 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_rectangle() 206 else if (ix0 == ix1) { in lp_rast_rectangle() 220 for (i = ix0 + 1; i < ix1; i++) in lp_rast_rectangle() 222 partial(task, rect, ix1, iy0, mask & right_mask); in lp_rast_rectangle() 230 partial(task, rect, ix1, iy0, right_mask & top_mask); in lp_rast_rectangle() 231 partial(task, rect, ix1, iy1, right_mask & bottom_mask); in lp_rast_rectangle() 233 for (i = ix0 + 1; i < ix1; i++) in lp_rast_rectangle() 236 for (i = ix0 + 1; i < ix1; i++) in lp_rast_rectangle() [all …]
|
D | lp_rast_linear_fallback.c | 171 const unsigned ix1 = box->x1 / STAMP_SIZE; in lp_rast_linear_rect_fallback() local 177 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_linear_rect_fallback() 184 else if (ix0 == ix1) { in lp_rast_linear_rect_fallback() 198 for (unsigned i = ix0 + 1; i < ix1; i++) in lp_rast_linear_rect_fallback() 200 partial(task, inputs, ix1, iy0, mask & right_mask); in lp_rast_linear_rect_fallback() 208 partial(task, inputs, ix1, iy0, right_mask & top_mask); in lp_rast_linear_rect_fallback() 209 partial(task, inputs, ix1, iy1, right_mask & bottom_mask); in lp_rast_linear_rect_fallback() 211 for (unsigned i = ix0 + 1; i < ix1; i++) in lp_rast_linear_rect_fallback() 214 for (unsigned i = ix0 + 1; i < ix1; i++) in lp_rast_linear_rect_fallback() 221 partial(task, inputs, ix1, i, right_mask); in lp_rast_linear_rect_fallback() [all …]
|
D | lp_setup_rect.c | 379 const unsigned ix1 = rect->box.x1 / TILE_SIZE; in lp_setup_bin_rectangle() local 387 assert(ix1 == MIN2(ix1, scene->tiles_x - 1)); in lp_setup_bin_rectangle() 393 if (ix1 * TILE_SIZE + TILE_SIZE - 1 != rect->box.x1) in lp_setup_bin_rectangle() 404 if (iy0 == iy1 && ix0 == ix1) { in lp_setup_bin_rectangle() 407 } else if (ix0 == ix1) { in lp_setup_bin_rectangle() 416 for (unsigned i = ix0 + 1; i < ix1; i++) in lp_setup_bin_rectangle() 418 partial(setup, rect, opaque, ix1, iy0, mask | right_mask); in lp_setup_bin_rectangle() 422 partial(setup, rect, opaque, ix1, iy0, right_mask | top_mask); in lp_setup_bin_rectangle() 423 partial(setup, rect, opaque, ix1, iy1, right_mask | bottom_mask); in lp_setup_bin_rectangle() 427 for (unsigned i = ix0 + 1; i < ix1; i++) { in lp_setup_bin_rectangle() [all …]
|
D | lp_setup_tri.c | 892 const int ix1 = trimmed_box.x1 / TILE_SIZE; in lp_setup_bin_triangle() local 923 for (x = ix0; x <= ix1; x++) { in lp_setup_bin_triangle()
|
/third_party/rust/crates/minimal-lexical/src/ |
D | libm.rs | 1103 let mut ix1: Wrapping<u32>; in sqrtd() localVariable 1107 ix1 = Wrapping(x.to_bits() as u32); in sqrtd() 1115 if ((ix0 & !(sign.0 as i32)) | ix1.0 as i32) == 0 { in sqrtd() 1128 ix0 |= (ix1 >> 11).0 as i32; in sqrtd() 1129 ix1 <<= 21; in sqrtd() 1137 ix0 |= (ix1 >> (32 - i) as usize).0 as i32; in sqrtd() 1138 ix1 = ix1 << i as usize; in sqrtd() 1144 ix0 += ix0 + ((ix1 & sign) >> 31).0 as i32; in sqrtd() 1145 ix1 += ix1; in sqrtd() 1150 ix0 += ix0 + ((ix1 & sign) >> 31).0 as i32; in sqrtd() [all …]
|
/third_party/skia/third_party/externals/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); \
|
/third_party/vk-gl-cts/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()
|
/third_party/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()
|
/third_party/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 …]
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 868 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); 875 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); 886 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); 887 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); 2611 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument 2618 if (ix1) *ix1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel() 2624 if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); in stbtt_GetGlyphBitmapBoxSubpixel() 2629 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument 2631 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox() 2634 …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 …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/flutter/skia/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()
|
/third_party/vk-gl-cts/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()
|
/third_party/vk-gl-cts/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()
|
/third_party/vk-gl-cts/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()
|
/third_party/vk-gl-cts/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()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.cpp | 2400 const int ix1 = deCeilFloatToInt32(sx1 - 0.5f); in computeVertexReference() local 2416 for (int ix = ix0; ix < ix1; ix++) in computeVertexReference()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 58478 zHU;@yq##GQ4ary=96{ObveK$m7*1%$)rJ&ix1!R)LN<n8;B8luTF6QjVN)_I#OF;0
|