Home
last modified time | relevance | path

Searched refs:lx (Results 1 – 25 of 216) sorted by relevance

123456789

/external/fdlibm/
De_fmod.c36 unsigned lx,ly,lz; local
39 lx = __LO(x); /* low word of x */
51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
52 if(lx==ly)
59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
80 hx = (hx<<n)|(lx>>(32-n));
81 lx <<= n;
83 hx = lx<<(n-32);
84 lx = 0;
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
[all …]
Ds_nextafter.c31 unsigned lx,ly; local
34 lx = __LO(x); /* low word of x */
40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
44 if((ix|lx)==0) { /* x == 0 */
51 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
52 if(lx==0) hx -= 1;
53 lx -= 1;
55 lx += 1;
56 if(lx==0) hx += 1;
59 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
[all …]
Ds_ilogb.c29 int hx,lx,ix; local
33 lx = __LO(x);
34 if((hx|lx)==0)
38 for (ix = -1043; lx>0; lx<<=1) ix -=1;
De_jn.c60 int i,hx,ix,lx, sgn; local
69 lx = __LO(x);
71 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
81 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
221 int i,hx,ix,lx; local
227 lx = __LO(x);
229 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
230 if((ix|lx)==0) return -one/zero;
De_atan2.c65 unsigned lx,ly; local
68 lx = __LO(x);
71 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
74 if((hx-0x3ff00000|lx)==0) return ieee_atan(y); /* x=1.0 */
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
Ds_isnan.c28 int hx,lx; local
30 lx = __LO(x);
31 hx |= (unsigned)(lx|(-lx))>>31;
De_atanh.c52 unsigned lx; local
54 lx = __LO(x); /* low word */
56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
Ds_logb.c29 int lx,ix; local
31 lx = __LO(x); /* low x */
32 if((ix|lx)==0) return -1.0/ieee_fabs(x);
/external/valgrind/gdbserver_tests/
Dmcvabits.stdinB.gdb23 eval "monitor check_memory addressable 0x%lx 10", $0xundefined
24 eval "monitor check_memory defined 0x%lx 10", $0xundefined
25 eval "monitor get_vbits 0x%lx 10", $0xundefined
26 eval "monitor xb 0x%lx 10", $0xundefined
32 eval "monitor check_memory addressable 0x%lx 10", $0xundefined
33 eval "monitor check_memory defined 0x%lx 10", $0xundefined
34 eval "monitor get_vbits 0x%lx 10", $0xundefined
38 eval "monitor make_memory defined 0x%lx 3", $0xundefined_2
40 eval "monitor check_memory addressable 0x%lx 10", $0xundefined
41 eval "monitor check_memory defined 0x%lx 10", $0xundefined
[all …]
/external/opencv3/modules/imgproc/src/opencl/
Dpyr_up.cl134 const int lx = 2*get_local_id(0);
143 if( lx < (LOCAL_SIZE+2) && ly < (LOCAL_SIZE+2) )
145 int srcx = mad24((int)get_group_id(0), LOCAL_SIZE, lx) - 1;
152 s_srcPatch[ly][lx] = convertToFT(loadpix(srcData + srcy1 * src_step + srcx1 * PIXSIZE));
153 s_srcPatch[ly+1][lx] = convertToFT(loadpix(srcData + srcy2 * src_step + srcx1 * PIXSIZE));
154 s_srcPatch[ly][lx+1] = convertToFT(loadpix(srcData + srcy1 * src_step + srcx2 * PIXSIZE));
155 s_srcPatch[ly+1][lx+1] = convertToFT(loadpix(srcData + srcy2 * src_step + srcx2 * PIXSIZE));
167 sum = co3 * s_srcPatch[1 + (ly >> 1)][1 + ((lx - 2) >> 1)];
168 sum = mad(co1, s_srcPatch[1 + (ly >> 1)][1 + ((lx ) >> 1)], sum);
169 sum = mad(co3, s_srcPatch[1 + (ly >> 1)][1 + ((lx + 2) >> 1)], sum);
[all …]
/external/opencv3/3rdparty/openexr/IlmImf/
DImfTiledOutputFile.cpp132 int lx; member
140 lx (xLevel), ly (yLevel) in TileCoord()
150 (ly == other.ly && lx < other.lx) || in operator <()
151 ((ly == other.ly && lx == other.lx) && in operator <()
159 return lx == other.lx && in operator ==()
336 if (b.dx >= numXTiles[b.lx]) in nextTileCoord()
354 b.lx++; in nextTileCoord()
360 b.lx++; in nextTileCoord()
362 if (b.lx >= numXLevels) in nextTileCoord()
364 b.lx = 0; in nextTileCoord()
[all …]
DImfTileOffsets.cpp82 for (unsigned int lx = 0; lx < _numXLevels; ++lx) in TileOffsets() local
84 int l = ly * _numXLevels + lx; in TileOffsets()
89 _offsets[l][dy].resize (numXTiles[lx]); in TileOffsets()
253 TileOffsets::isValidTile (int dx, int dy, int lx, int ly) const in isValidTile() argument
259 if (lx == 0 && in isValidTile()
272 if (lx < _numXLevels && in isValidTile()
274 _offsets.size() > lx && in isValidTile()
275 _offsets[lx].size() > dy && in isValidTile()
276 _offsets[lx][dy].size() > dx) in isValidTile()
285 if (lx < _numXLevels && in isValidTile()
[all …]
DImfTiledInputFile.h207 bool isValidLevel (int lx, int ly) const;
228 int levelWidth (int lx) const;
252 int numXTiles (int lx = 0) const;
276 Imath::Box2i dataWindowForLevel (int lx, int ly) const;
303 int lx, int ly) const;
335 void readTile (int dx, int dy, int lx, int ly);
338 int lx, int ly);
351 int &lx, int &ly,
370 int lx, int ly) const;
373 int lx, int ly) const;
DImfTiledOutputFile.h208 bool isValidLevel (int lx, int ly) const;
229 int levelWidth (int lx) const;
253 int numXTiles (int lx = 0) const;
278 Imath::Box2i dataWindowForLevel (int lx, int ly) const;
306 int lx, int ly) const;
381 void writeTile (int dx, int dy, int lx, int ly);
384 int lx, int ly);
450 int lx, int ly,
464 int lx, int ly) const;
467 int lx, int ly) const;
DImfTiledRgbaFile.h199 bool isValidLevel (int lx, int ly) const;
201 int levelWidth (int lx) const;
204 int numXTiles (int lx = 0) const;
208 Imath::Box2i dataWindowForLevel (int lx, int ly) const;
214 int lx, int ly) const;
245 void writeTile (int dx, int dy, int lx, int ly);
248 int lx, int ly);
273 int lx, int ly,
404 bool isValidLevel (int lx, int ly) const;
406 int levelWidth (int lx) const;
[all …]
DImfTiledRgbaFile.cpp165 void writeTile (int dx, int dy, int lx, int ly);
212 TiledRgbaOutputFile::ToYa::writeTile (int dx, int dy, int lx, int ly) in writeTile() argument
226 Box2i dw = _outputFile.dataWindowForTile (dx, dy, lx, ly); in writeTile()
254 _outputFile.writeTile (dx, dy, lx, ly); in writeTile()
532 TiledRgbaOutputFile::isValidLevel (int lx, int ly) const in isValidLevel() argument
534 return _outputFile->isValidLevel (lx, ly); in isValidLevel()
539 TiledRgbaOutputFile::levelWidth (int lx) const in levelWidth()
541 return _outputFile->levelWidth (lx); in levelWidth()
553 TiledRgbaOutputFile::numXTiles (int lx) const in numXTiles()
555 return _outputFile->numXTiles (lx); in numXTiles()
[all …]
DImfTiledInputFile.cpp141 int lx; member
165 lx (-1), in TileBuffer()
280 int lx, int ly, in readTileData() argument
296 Int64 tileOffset = ifd->tileOffsets (dx, dy, lx, ly); in readTileData()
301 lx << ", " << ly << ") is missing."); in readTileData()
327 if (levelX != lx) in readTileData()
358 int &lx, int &ly, in readNextTileData() argument
372 Xdr::read <StreamIO> (*ifd->is, lx); in readNextTileData()
456 _tileBuffer->lx, in execute()
585 int lx, int ly) in newTileBufferTask() argument
[all …]
/external/jemalloc/include/jemalloc/internal/
Dsmoothstep.sh40 …y=`echo ${yprec} k ${step} ${nsteps} / sx _2 lx 3 ^ '*' 3 lx 2 ^ '*' + p | dc | tr -d '\\\\\n' | s…
46 …y=`echo ${yprec} k ${step} ${nsteps} / sx 6 lx 5 ^ '*' _15 lx 4 ^ '*' + 10 lx 3 ^ '*' + p | dc | t…
52 …y=`echo ${yprec} k ${step} ${nsteps} / sx _20 lx 7 ^ '*' 70 lx 6 ^ '*' + _84 lx 5 ^ '*' + 35 lx 4 …
/external/icu/icu4c/source/data/unit/
Dmt.txt63 dnam{"lx"}
64 few{"{0} lx"}
65 many{"{0} lx"}
66 one{"{0} lx"}
67 other{"{0} lx"}
141 dnam{"lx"}
142 few{"{0} lx"}
143 many{"{0} lx"}
144 one{"{0} lx"}
145 other{"{0} lx"}
/external/v8/test/mjsunit/
Dregexp-sort.js6 var lx = lower + "x";
10 assertEquals(lx, new RegExp(uxp + lp + lower + "cat", "i").exec(lx) + "");
12 assertEquals(lower, new RegExp(lp + uxp + lower + "cat", "i").exec(lx) + "");
17 var lx = lower + "x";
21 assertEquals(lower, new RegExp(uxp + lp + lower + "cat", "i").exec(lx) + "");
23 assertEquals(lower, new RegExp(lp + uxp + lower + "cat", "i").exec(lx) + "");
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
DbtBox2dShape.cpp33 btScalar lx=btScalar(2.)*(halfExtents.x()); in calculateLocalInertia() local
38 mass/(btScalar(12.0)) * (lx*lx + lz*lz), in calculateLocalInertia()
39 mass/(btScalar(12.0)) * (lx*lx + ly*ly)); in calculateLocalInertia()
DbtBoxShape.cpp42 btScalar lx=btScalar(2.)*(halfExtents.x()); in calculateLocalInertia() local
47 mass/(btScalar(12.0)) * (lx*lx + lz*lz), in calculateLocalInertia()
48 mass/(btScalar(12.0)) * (lx*lx + ly*ly)); in calculateLocalInertia()
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
Dcommon.py117 lx = 1
124 (x, lx) = ((lx - (q * x)),x)
126 if (lx < 0): lx += ob #If neg wrap modulo orignal b
128 return (a, lx, ly) #Return only positive values
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
DbtGImpactShape.cpp57 btScalar lx= m_localAABB.m_max[0] - m_localAABB.m_min[0]; in calculateLocalInertia() local
60 const btScalar x2 = lx*lx; in calculateLocalInertia()
96 btScalar lx= m_localAABB.m_max[0] - m_localAABB.m_min[0]; in calculateLocalInertia() local
99 const btScalar x2 = lx*lx; in calculateLocalInertia()
131 btScalar lx= m_localAABB.m_max[0] - m_localAABB.m_min[0]; in calculateLocalInertia()
134 const btScalar x2 = lx*lx; in calculateLocalInertia()
/external/vulkan-validation-layers/libs/glm/gtc/
Dulp.inl145 glm::detail::uint32 lx, ly; local
147 GLM_EXTRACT_WORDS(hx, lx, x);
152 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || // x is nan
156 if((ix|lx)==0) { // x == 0
162 if(hx>hy||((hx==hy)&&(lx>ly))) { // x > y, x -= ulp
163 if(lx==0) hx -= 1;
164 lx -= 1;
166 lx += 1;
167 if(lx==0) hx += 1;
170 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){// x < y, x -= ulp
[all …]

123456789