HomeSort by relevance Sort by last modified time
    Searched defs:z2 (Results 26 - 34 of 34) sorted by null

12

  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 716 double z2 = z*z; local
718 mat.m_matrix[0][0] = 1.0f - 2.0f * (y2 + z2) * sinA2;
722 mat.m_matrix[1][1] = 1.0f - 2.0f * (z2 + x2) * sinA2;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 766 float z2 = thisHeight / height * .6F; local
768 float zoom = Math.min(z1, z2);
  /bionic/libc/stdlib/
strtod.c 676 ULong z2; local
712 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
713 carry = z2 >> 16;
714 Storeinc(xc, z2, z);
723 z2 = *xc;
727 Storeinc(xc, z, z2);
728 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
729 carry = z2 >> 16;
732 *xc = z2;
    [all...]
  /external/sqlite/dist/
shell.c 462 const char *z2 = z; local
463 while( *z2 ){ z2++; }
464 return 0x3fffffff & (int)(z2 - z);
    [all...]
sqlite3.c 13243 const char *z2 = z; local
20049 const char *z2 = z; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 390 uint32_t z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; local
391 carry = z2 >> 16;
392 xc = storeInc(xc, z2, z);
400 uint32_t z2 = *xc; local
404 xc = storeInc(xc, z, z2);
405 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
406 carry = z2 >> 16;
408 *xc = z2;
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 812 ULong z2; variable
860 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
861 carry = z2 >> 16;
862 Storeinc(xc, z2, z);
871 z2 = *xc;
875 Storeinc(xc, z, z2);
876 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
877 carry = z2 >> 16;
880 *xc = z2;
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 7505 IRTemp z2 = newTemp(Ity_I64); local
8121 IRTemp z2 = newTemp(Ity_I64); local
8870 IRTemp z2 = newTemp(Ity_V128); local
8903 IRTemp z2 = newTemp(Ity_V128); local
    [all...]
  /external/v8/test/cctest/
test-api.cc 5198 v8::Handle<Value> z2 = global0->Get(v8_str("0")); local
    [all...]

Completed in 1121 milliseconds

12