Home
last modified time | relevance | path

Searched refs:ix1 (Results 1 – 15 of 15) sorted by relevance

/third_party/musl/src/math/
Dsqrt.c88 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/jerryscript/jerry-libm/
Dsqrt.c108 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/
Dsqrt.c88 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/musl/porting/liteos_a/kernel/src/math/
Dsqrt.c88 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/
De_sqrt.c109 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 …]
Dmath_private.h93 #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/mingw-w64/mingw-w64-crt/math/softmath/
Dbsd_private.h63 #define EXTRACT_WORDS(ix0,ix1,d) \ argument
68 (ix1) = ew_u.parts.lsw; \
91 #define INSERT_WORDS(d,ix0,ix1) \ argument
95 iw_u.parts.lsw = (ix1); \
/third_party/glib/glib/
Dgslice.c1655 unsigned int ix0, ix1; in smc_tree_insert() local
1660 ix1 = SMC_BRANCH_HASH (key); in smc_tree_insert()
1673 entry = smc_tree_branch_lookup_nearest_L (&smc_tree_root[ix0][ix1], key); in smc_tree_insert()
1675 …entry >= smc_tree_root[ix0][ix1].entries + smc_tree_root[ix0][ix1].n_entries || /* need append */ in smc_tree_insert()
1677 …entry = smc_tree_branch_grow_L (&smc_tree_root[ix0][ix1], entry - smc_tree_root[ix0][ix1].entries); in smc_tree_insert()
1688 unsigned int ix0 = SMC_TRUNK_HASH (key), ix1 = SMC_BRANCH_HASH (key); in smc_tree_lookup() local
1694 entry = smc_tree_branch_lookup_nearest_L (&smc_tree_root[ix0][ix1], key); in smc_tree_lookup()
1696 entry < smc_tree_root[ix0][ix1].entries + smc_tree_root[ix0][ix1].n_entries && in smc_tree_lookup()
1710 unsigned int ix0 = SMC_TRUNK_HASH (key), ix1 = SMC_BRANCH_HASH (key); in smc_tree_remove() local
1715 SmcEntry *entry = smc_tree_branch_lookup_nearest_L (&smc_tree_root[ix0][ix1], key); in smc_tree_remove()
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dulp.inl38 #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/skia/src/core/
DSkScan_Hairline.cpp121 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/uboot/u-boot-2020.01/drivers/video/
Dstb_truetype.h785 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
792 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
802 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
803 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
1562 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument
1569 if (ix1) *ix1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel()
1575 if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); in stbtt_GetGlyphBitmapBoxSubpixel()
1580 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument
1582 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox()
1585 …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/
Dimstb_truetype.h884 …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/
Dimstb_truetype.h868 …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/flutter/skia/src/core/
DSkScan_Hairline.cpp120 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/minimp3/player/
Dnuklear.h10140 int *ix0, int *iy0, int *ix1, int *iy1)
10147 if (ix1) *ix1 = 0;
10153 if (ix1) *ix1 = nk_iceilf ((float)x1 * scale_x + shift_x);
10160 float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1)
10162 nk_tt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1);