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

1 2 3 4 56 7 8 9

  /bionic/libm/src/
e_j1f.c 48 int32_t hx,ix; local
51 ix = hx&0x7fffffff;
52 if(ix>=0x7f800000) return one/x;
54 if(ix >= 0x40000000) { /* |x| >= 2.0 */
59 if(ix<0x7f000000) { /* make sure y+y not overflow */
76 if(ix<0x32000000) { /* |x|<2**-27 */
105 int32_t hx,ix; local
108 ix = 0x7fffffff&hx;
110 if(ix>=0x7f800000) return one/(x+x*x);
111 if(ix==0) return -one/zero
228 int32_t ix; local
324 int32_t ix; local
    [all...]
e_pow.c 103 int32_t hx,hy,ix,iy; local
108 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
114 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
141 if(((ix-0x3ff00000)|lx)==0)
143 else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */
161 if(ix==0x7ff00000||ix==0||ix==0x3ff00000){
165 if(((ix-0x3ff00000)|yisint)==0)
    [all...]
e_powf.c 62 int32_t hx,hy,ix,iy,is; local
66 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
72 if(ix > 0x7f800000 ||
93 if (ix==0x3f800000)
95 else if (ix > 0x3f800000)/* (|x|>1)**+-inf = inf,0 */
111 if(ix==0x7f800000||ix==0||ix==0x3f800000){
115 if(((ix-0x3f800000)|yisint)==0) {
134 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny
    [all...]
s_erf.c 193 int32_t hx,ix,i; local
196 ix = hx&0x7fffffff;
197 if(ix>=0x7ff00000) { /* erf(nan)=nan */
202 if(ix < 0x3feb0000) { /* |x|<0.84375 */
203 if(ix < 0x3e300000) { /* |x|<2**-28 */
204 if (ix < 0x00800000)
214 if(ix < 0x3ff40000) { /* 0.84375 <= |x| < 1.25 */
220 if (ix >= 0x40180000) { /* inf>|x|>=6 */
225 if(ix< 0x4006DB6E) { /* |x| < 1/0.35 */
245 int32_t hx,ix; local
    [all...]
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.cpp 48 int ix = (int)roundf(x) + inset; local
49 if (ix < 0) {
50 ix = 0;
52 return static_cast<uint16_t>(ix);
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 47 int ix = (int)roundf(x) + inset; local
48 if (ix < 0) {
49 ix = 0;
51 return static_cast<uint16_t>(ix);
  /external/chromium/chrome/browser/sync/glue/
autofill_model_associator.cc 71 for (std::vector<AutofillEntry>::const_iterator ix = entries.begin();
72 ix != entries.end(); ++ix) {
73 std::string tag = KeyToTag(ix->key().name(), ix->key().value());
88 if (MergeTimestamps(autofill, ix->timestamps(), &timestamps)) {
89 AutofillEntry new_entry(ix->key(), timestamps);
109 AutofillChangeProcessor::WriteAutofillEntry(*ix, &node);
114 current_entries->insert(ix->key());
245 for (std::vector<AutofillProfile*>::const_iterator ix
317 std::vector<AutofillProfile*>::const_iterator ix = local
    [all...]
  /external/clang/test/CodeGenCXX/
copy-constructor-synthesis.cpp 60 static int ix = 1; variable
63 S() : iS(ix++) { }
70 I() : iI(ix++) { }
  /external/dropbear/libtommath/demo/
demo.c 58 int i, n, err, cnt, ix, old_kara_m, old_kara_s; local
85 for (ix = 0; ix < 100; ix++) {
177 for (ix = 10; ix < 128; ix++) {
178 printf("Testing (not safe-prime): %9d bits \r", ix);
181 mp_prime_random_ex(&a, 8, ix,
188 if (mp_count_bits(&a) != ix) {
    [all...]
  /external/fdlibm/
e_j0.c 96 int hx,ix; local
99 ix = hx&0x7fffffff;
100 if(ix>=0x7ff00000) return one/(x*x);
102 if(ix >= 0x40000000) { /* |x| >= 2.0 */
107 if(ix<0x7fe00000) { /* make sure x+x not overflow */
116 if(ix>0x48000000) z = (invsqrtpi*cc)/ieee_sqrt(x);
123 if(ix<0x3f200000) { /* |x| < 2**-13 */
125 if(ix<0x3e400000) return one; /* |x|<2**-27 */
132 if(ix < 0x3FF00000) { /* |x| < 1.00 */
165 int hx,ix,lx local
333 int ix; local
468 int ix; local
    [all...]
e_j1.c 97 int hx,ix; local
100 ix = hx&0x7fffffff;
101 if(ix>=0x7ff00000) return one/x;
103 if(ix >= 0x40000000) { /* |x| >= 2.0 */
108 if(ix<0x7fe00000) { /* make sure y+y not overflow */
117 if(ix>0x48000000) z = (invsqrtpi*cc)/ieee_sqrt(y);
125 if(ix<0x3e400000) { /* |x|<2**-27 */
166 int hx,ix,lx; local
169 ix = 0x7fffffff&hx;
172 if(ix>=0x7ff00000) return one/(x+x*x);
331 int ix; local
467 int ix; local
    [all...]
  /external/icu4c/common/
rbbisetb.cpp 351 int32_t ix; local
353 for (ix=0; ix<sets->size(); ix++) {
354 RBBINode *usetNode = (RBBINode *)sets->elementAt(ix);
  /external/icu4c/test/letest/
cletest.c 676 le_int32 ix = glyphToCharMap[i]; local
678 if (ix != charIndex) {
679 if (ix != charIndex - 1) {
681 i, lineNumber, charIndex, ix);
699 le_int32 ix = glyphToCharMap[i]; local
701 if (ix > maxIndex) {
702 maxIndex = ix;
705 if (ix < minIndex) {
706 minIndex = ix;
  /external/libxml2/
xmlstring.c 775 int ix; local
788 for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */
790 ix++;
792 if ((utf[ix+1] & 0xc0 ) != 0x80)
794 ix += 2;
796 if (((utf[ix+1] & 0xc0) != 0x80) ||
797 ((utf[ix+2] & 0xc0) != 0x80))
799 ix += 3;
801 if (((utf[ix+1] & 0xc0) != 0x80) |
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 106 int32_t hx,hy,ix,iy; local
111 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
117 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
144 if(((ix-0x3ff00000)|lx)==0)
146 else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */
164 if(ix==0x7ff00000||ix==0||ix==0x3ff00000){
168 if(((ix-0x3ff00000)|yisint)==0)
    [all...]
  /external/skia/src/core/
SkScan_AntiPath.cpp 355 int ix = x >> SHIFT; local
356 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
  /external/valgrind/main/coregrind/m_debuginfo/
tytypes.c 820 UWord size, eszB, ix; local
849 ix = offset / eszB;
851 copy_UWord_into_XA( xa, ix );
854 offset -= ix * eszB;
  /external/valgrind/main/coregrind/
m_sparsewa.c 92 static inline UWord swa_bitarray_read ( UChar* arr, UWord ix ) {
93 UWord bix = ix >> 3;
94 UWord off = ix & 7;
98 static inline UWord swa_bitarray_read_then_set ( UChar* arr, UWord ix ) {
99 UWord bix = ix >> 3;
100 UWord off = ix & 7;
107 static inline UWord swa_bitarray_read_then_clear ( UChar* arr, UWord ix ) {
108 UWord bix = ix >> 3;
109 UWord off = ix & 7;
281 UWord ix; local
314 UWord ix; local
372 UWord ix; local
    [all...]
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 136 int ix = val.indexOf(ch); local
138 if (ix >= 0) {
139 ix = (ix + 1) % (val.length());
141 content.replace(selStart, selEnd, val, ix, ix + 1);
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
c2_11pf.cpp 413 Word16 ix = 0; /* initialization only needed to keep gcc silent */ local
471 ix = ipos[1];
511 ix = i1;
531 *(p_codvec) = ix;
c2_9pf.cpp 480 Word16 ix = 0; // initialization only needed to keep gcc silent
516 ix = ipos[1];
542 ix = i1;
556 codvec[1] = ix;
597 Word16 ix = 0; /* initialization only needed to keep gcc silent */ local
656 ix = *(ipos + 1);
702 ix = i1;
720 *(p_codvec) = ix;
    [all...]
c3_14pf.cpp 385 Word16 ix = 0; /* initialization only needed to keep gcc silent */ local
454 ix = ipos[1];
497 ix = i1;
500 i1 = ix;
514 ix = ipos[2];
555 ix = i2;
558 i2 = ix;
c4_17pf.cpp 399 Word16 ix = 0; /* initialization only needed to keep gcc silent */ local
466 ix = ipos[1];
507 ix = i1;
510 i1 = ix;
524 ix = ipos[2];
565 ix = i2;
568 i2 = ix;
580 ix = ipos[3];
620 ix = i3;
644 *(p_codvec) = ix;
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 56 Word32 i, j, k, i0, i1, ix, iy, pos, pos2; local
229 ix = 0;
253 ix = i0;
266 i0 = (ix >> 1); /* pos of pulse 1 (0..31) */
268 if (sign[ix] > 0)
270 code[ix] = 512; /* codeword in Q9 format */
271 p0 = h - ix;
274 code[ix] = -512;
276 p0 = h_inv - ix;
  /packages/apps/Browser/src/com/android/browser/
TabScrollView.java 135 int ix = mContentView.indexOfChild(tab); local
136 if (ix == mSelected) {
138 } else if (ix < mSelected) {

Completed in 670 milliseconds

1 2 3 4 56 7 8 9