Home
last modified time | relevance | path

Searched refs:ix0 (Results 1 – 5 of 5) sorted by relevance

/external/fdlibm/
De_sqrt.c101 int ix0,s0,q,m,t,i; local
103 ix0 = __HI(x); /* high word of x */
107 if((ix0&0x7ff00000)==0x7ff00000) {
112 if(ix0<=0) {
113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */
114 else if(ix0<0)
118 m = (ix0>>20);
120 while(ix0==0) {
122 ix0 |= (ix1>>11); ix1 <<= 21;
124 for(i=0;(ix0&0x00100000)==0;i++) ix0<<=1;
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
De_sqrt.h145 int32_t ix0,s0,q,m,t,i; local
148 EXTRACT_WORDS(ix0,ix1,x);
151 if((ix0&0x7ff00000)==0x7ff00000) {
156 if(ix0<=0) {
157 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
158 else if(ix0<0)
162 m = (ix0>>20);
164 while(ix0==0) {
166 ix0 |= (ix1>>11); ix1 <<= 21;
168 for(i=0;(ix0&0x00100000)==0;i++) ix0<<=1;
[all …]
Dmath_private.h75 #define EXTRACT_WORDS(ix0,ix1,d) \ argument
79 (ix0) = ew_u.parts.msw; \
103 #define INSERT_WORDS(d,ix0,ix1) \ argument
106 iw_u.parts.msw = (ix0); \
/external/bluetooth/glib/glib/
Dgslice.c1332 unsigned int ix0, ix1; in smc_tree_insert() local
1336 ix0 = SMC_TRUNK_HASH (key); in smc_tree_insert()
1344 if (!smc_tree_root[ix0]) in smc_tree_insert()
1346 smc_tree_root[ix0] = calloc (SMC_BRANCH_COUNT, sizeof (smc_tree_root[0][0])); in smc_tree_insert()
1347 if (!smc_tree_root[ix0]) in smc_tree_insert()
1350 entry = smc_tree_branch_lookup_nearest_L (&smc_tree_root[ix0][ix1], key); in smc_tree_insert()
1352 …entry >= smc_tree_root[ix0][ix1].entries + smc_tree_root[ix0][ix1].n_entries || /* need append */ in smc_tree_insert()
1354 …entry = smc_tree_branch_grow_L (&smc_tree_root[ix0][ix1], entry - smc_tree_root[ix0][ix1].entries); in smc_tree_insert()
1365 unsigned int ix0 = SMC_TRUNK_HASH (key), ix1 = SMC_BRANCH_HASH (key); in smc_tree_lookup() local
1369 if (smc_tree_root && smc_tree_root[ix0]) in smc_tree_lookup()
[all …]
/external/skia/src/core/
DSkScan_Hairline.cpp92 int ix0 = SkFDot6Round(x0); in HairLine() local
94 if (ix0 == ix1) // too short to draw in HairLine()
100 horiline(ix0, ix1, startY, slope, blitter); in HairLine()