HomeSort by relevance Sort by last modified time
    Searched defs:ix (Results 151 - 175 of 210) sorted by null

1 2 3 4 5 67 8 9

  /bionic/libm/src/
s_erff.c 101 int32_t hx,ix,i; local
104 ix = hx&0x7fffffff;
105 if(ix>=0x7f800000) { /* erf(nan)=nan */
110 if(ix < 0x3f580000) { /* |x|<0.84375 */
111 if(ix < 0x31800000) { /* |x|<2**-28 */
112 if (ix < 0x04000000)
123 if(ix < 0x3fa00000) { /* 0.84375 <= |x| < 1.25 */
129 if (ix >= 0x40c00000) { /* inf>|x|>=6 */
134 if(ix< 0x4036DB6E) { /* |x| < 1/0.35 */
145 GET_FLOAT_WORD(ix,x)
154 int32_t hx,ix; local
    [all...]
e_lgamma_r.c 162 int n,ix; local
164 GET_HIGH_WORD(ix,x);
165 ix &= 0x7fffffff;
167 if(ix<0x3fd00000) return __kernel_sin(pi*x,zero,0);
180 if(ix>=0x43400000) {
183 if(ix<0x43300000) z = y+two52; /* exact */
208 int i,hx,lx,ix; local
214 ix = hx&0x7fffffff;
215 if(ix>=0x7ff00000) return x*x;
216 if((ix|lx)==0) return one/zero
    [all...]
e_lgammaf_r.c 96 int n,ix; local
98 GET_FLOAT_WORD(ix,x);
99 ix &= 0x7fffffff;
101 if(ix<0x3e800000) return __kernel_sindf(pi*x);
114 if(ix>=0x4b800000) {
117 if(ix<0x4b000000) z = y+two23; /* exact */
142 int i,hx,ix; local
148 ix = hx&0x7fffffff;
149 if(ix>=0x7f800000) return x*x;
150 if(ix==0) return one/zero
    [all...]
  /external/fdlibm/
e_pow.c 110 int hx,hy,ix,iy; local
116 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
122 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
149 if(((ix-0x3ff00000)|lx)==0)
151 else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */
169 if(ix==0x7ff00000||ix==0||ix==0x3ff00000){
173 if(((ix-0x3ff00000)|yisint)==0)
    [all...]
s_erf.c 197 int hx,ix,i; local
200 ix = hx&0x7fffffff;
201 if(ix>=0x7ff00000) { /* ieee_erf(nan)=nan */
206 if(ix < 0x3feb0000) { /* |x|<0.84375 */
207 if(ix < 0x3e300000) { /* |x|<2**-28 */
208 if (ix < 0x00800000)
218 if(ix < 0x3ff40000) { /* 0.84375 <= |x| < 1.25 */
224 if (ix >= 0x40180000) { /* inf>|x|>=6 */
229 if(ix< 0x4006DB6E) { /* |x| < 1/0.35 */
253 int hx,ix; local
    [all...]
e_lgamma_r.c 166 int n,ix; local
168 ix = 0x7fffffff&__HI(x);
170 if(ix<0x3fd00000) return __kernel_sin(pi*x,zero,0);
183 if(ix>=0x43400000) {
186 if(ix<0x43300000) z = y+two52; /* exact */
214 int i,hx,lx,ix; local
221 ix = hx&0x7fffffff;
222 if(ix>=0x7ff00000) return x*x;
223 if((ix|lx)==0) return one/zero;
224 if(ix<0x3b900000) { /* |x|<2**-70, return -ieee_log(|x|) *
    [all...]
  /external/icu4c/i18n/
uspoof_impl.cpp 201 int32_t ix; local
204 for (ix = 0; ix < stringLengthsLimit; ix++) {
205 if (fSpoofData->fCFUStringLengths[ix].fLastString >= value) {
206 stringLen = fSpoofData->fCFUStringLengths[ix].fStrLength;
210 U_ASSERT(ix < stringLengthsLimit);
215 for (ix=0; ix<stringLen; ix++)
    [all...]
rbnf.cpp 144 int32_t ix = rhs->indexForLocale(locale); local
145 // if no locale, ix is -1, getLocaleName returns null, so streq returns false
146 if (!streq(locale, rhs->getLocaleName(ix))) {
150 if (!streq(getDisplayName(i, j), rhs->getDisplayName(ix, j))) {
1000 int32_t ix = localizations->indexForLocale(localeStr); local
1001 if (ix >= 0) {
1002 UnicodeString name(TRUE, localizations->getDisplayName(ix, index), -1);
1022 int32_t ix = localizations->indexForRuleSet(rsn.getTerminatedBuffer()); local
1023 return getRuleSetDisplayName(ix, localeParam);
    [all...]
  /external/icu4c/test/intltest/
tchcfmt.cpp 54 int32_t ix; local
56 for (ix = 0; ix <= 8; ++ix) {
57 double i = ix; //nos
68 it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2);
91 for(ix=0; ix<count; ix++){
92 if(gotLimits[ix] != limits[ix])
    [all...]
  /external/skia/tests/
MathTest.cpp 110 int ix = (int)x; local
112 assert_float_equal(reporter, "cast", x, ix, iix);
116 int ix = (int)floor(x); local
118 assert_float_equal(reporter, "floor", x, ix, iix);
123 int ix = (int)floor(xx); local
125 assert_float_equal(reporter, "round", x, ix, iix);
129 int ix = (int)ceil(x); local
131 assert_float_equal(reporter, "ceil", x, ix, iix);
279 int ix = rand.nextS(); local
280 REPORTER_ASSERT(reporter, SkCopySign32(ix, ix) == ix)
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
c4t64fx.c 108 Word16 * ix, /* (o) position of pulse 1 */
136 Word16 st, ix, iy, pos, index, track, nb_pulse, nbiter, j_temp; local
568 ix = ind[0] = pos_max[ipos[0]];
570 ps = dn[ix] + dn[iy];
571 i = ix >> 2; /* ix / STEP */
575 i = (i << 4) + j; /* (ix/STEP)*NB_POS + (iy/STEP) */
578 if (sign[ix] < 0)
579 p0 = h_inv - ix;
581 p0 = h - ix;
    [all...]
  /external/icu4c/common/
rbbitblb.cpp 352 uint32_t ix; local
356 for (ix=0; ix<(uint32_t)LastPosOfLeftChild->size(); ix++) {
357 i = (RBBINode *)LastPosOfLeftChild->elementAt(ix);
366 uint32_t ix; local
368 for (ix=0; ix<(uint32_t)n->fLastPosSet->size(); ix++) {
369 i = (RBBINode *)n->fLastPosSet->elementAt(ix);
640 int ix; local
    [all...]
  /external/icu4c/test/letest/
letest.cpp 906 le_int32 ix = glyphToCharMap[i]; local
929 le_int32 ix = glyphToCharMap[i]; local
    [all...]
  /external/libxml2/
uri.c 2227 int ix; local
    [all...]
  /external/libxslt/libxslt/
numbers.c 300 xmlBufferCCat(buffer, (is_upper) ? "IX" : "ix");
321 int ix = 0; local
339 while (! (IS_LETTER(val=xmlStringCurrentChar(NULL, format+ix, &len)) ||
341 if (format[ix] == 0) /* if end of format string */
343 ix += len;
345 if (ix > 0)
346 tokens->start = xmlStrndup(format, ix);
351 if (format[ix] == 0)
363 val = xmlStringCurrentChar(NULL, format+ix, &len)
    [all...]
pattern.c 232 int ix; local
234 for (ix = 0; ix < comp->nbStep; ix++) {
235 comp->steps[ix].previousExtra += style->extrasNr;
236 comp->steps[ix].indexExtra += style->extrasNr;
237 comp->steps[ix].lenExtra += style->extrasNr;
527 int ix, j; local
540 ix = XSLT_RUNTIME_EXTRA(ctxt, sel->indexExtra, ival);
571 ix = 0
887 int ix, nocache = 0; local
1019 int ix, nocache = 0; local
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 71 int ix = cvFloor(_x), iy = cvFloor(_y); local
74 (unsigned)ix < (unsigned)(size.width - 1) )
76 const uchar* ptr = src + iy*srcstep + ix*cn;
77 _x -= ix; _y -= iy;
cvlkpyramid.cpp 461 float* Ix = _Ix[threadIdx];
500 icvCalcIxIy_32f( patchI, isz.width*sizeof(patchI[0]), Ix, Iy,
539 const float* ix = Ix + local
541 const float* iy = Iy + (ix - Ix);
546 bx += t0 * ix[x];
559 const float* ix = Ix + local
561 const float* iy = Iy + (ix - Ix)
    [all...]
  /external/qemu/android/skin/
argb.h 231 int ix = op->ix; local
248 int sx2 = sx1 + ix;
327 int ix = op->ix; local
344 int sx2 = sx1 + ix;
464 int ix = op->ix; local
471 /* the center pixel is at (sx+ix/2, sy+iy/2), we then want to get */
474 sx = sx + ix/2 - 32768
551 int ix = op->ix; local
805 int ix = op->ix; local
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 131 int ix; member in struct:__anon11231
359 if (pBuf->ix == 0 )
368 short* pData = pBuf->pData[--(pBuf->ix)];
388 memcpy(pBuf->pData[(pBuf->ix)++], pAudioBuffer, 2048);
412 while(pBuf->ix == MAX_BUFFERS - 1)
433 while(pBuf->ix == MAX_BUFFERS - 1)
556 pBuf->ix = 0;
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BreadCrumbView.java 282 int ix = getChildCount(); local
283 if (ix > 0) {
284 removeViewAt(ix-1);
311 int ix = getChildCount(); local
312 if (ix > 0) {
315 return getChildAt(ix-1).getBaseline();
  /external/e2fsprogs/lib/ext2fs/
extent.c 83 static void dbg_show_index(struct ext3_extent_idx *ix)
86 ext2fs_le32_to_cpu(ix->ei_block),
87 ext2fs_le32_to_cpu(ix->ei_leaf),
88 ext2fs_le16_to_cpu(ix->ei_leaf_hi),
89 ext2fs_le16_to_cpu(ix->ei_unused));
124 #define dbg_show_index(ix) do { } while (0)
285 struct ext3_extent_idx *ix = 0; local
377 ix = path->curr;
389 ix = path->curr;
390 ix++
546 struct ext3_extent_idx *ix; local
766 struct ext3_extent_idx *ix; local
1050 struct ext3_extent_idx *ix; local
1488 struct ext3_extent_idx *ix = path->curr; local
    [all...]
  /external/libyuv/files/source/
scale.cc 2999 int ix = x >> 16; local
3025 int ix = x >> 16; local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 756 const int ix) {
763 if (!CS.paramHasAttr(ix, Attribute::ByVal))
963 int ix = FTy->getNumParams() + (isa<InvokeInst>(Callee) ? 3 : 1); local
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 71 int ix, iy, ygx, idx; local
75 ix = _x.i; iy = _y.i;
76 idx = (ix < 0) * 2 + (iy < 0) * 4;
78 ix &= 0x7fffffff;
81 ygx = (iy <= ix) - 1;
84 idx &= ((ix == 0) - 1) | ((iy == 0) - 1);
86 /* swap ix and iy if ix < iy */
87 ix ^= iy & ygx;
88 iy ^= ix & ygx
120 int ix = x[i + j], iy = y[i + j]; local
184 int ix, s; local
    [all...]

Completed in 477 milliseconds

1 2 3 4 5 67 8 9