HomeSort by relevance Sort by last modified time
    Searched refs:z2 (Results 126 - 150 of 193) sorted by null

1 2 3 4 56 7 8

  /prebuilts/go/linux-x86/src/math/big/
float_test.go     [all...]
int_test.go 165 var z2 Int
166 z2.SetBytes(mulBytes(a, b))
168 return z1.Cmp(&z2) == 0
635 z2 := new(Int).Exp(x, y, m)
636 if z2.Cmp(z1) != 0 {
637 t.Errorf("#%d: got %x want %x", i, z2, z1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
dtoa.c 639 ULong z2; local
696 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
697 carry = z2 >> 16;
698 Storeinc(xc, z2, z);
707 z2 = *xc;
711 Storeinc(xc, z, z2);
712 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
713 carry = z2 >> 16;
716 *xc = z2;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c 622 ULong z2; local
679 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
680 carry = z2 >> 16;
681 Storeinc(xc, z2, z);
690 z2 = *xc;
694 Storeinc(xc, z, z2);
695 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
696 carry = z2 >> 16;
699 *xc = z2;
    [all...]
  /external/python/cpython2/Python/
dtoa.c 639 ULong z2; local
696 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
697 carry = z2 >> 16;
698 Storeinc(xc, z2, z);
707 z2 = *xc;
711 Storeinc(xc, z, z2);
712 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
713 carry = z2 >> 16;
716 *xc = z2;
    [all...]
  /prebuilts/ndk/r11/sources/android/support/src/stdio/
strtod.c 919 ULong z2; local
955 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
956 carry = z2 >> 16;
957 Storeinc(xc, z2, z);
966 z2 = *xc;
970 Storeinc(xc, z, z2);
971 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
972 carry = z2 >> 16;
975 *xc = z2;
    [all...]
  /prebuilts/ndk/r13/sources/android/support/src/stdio/
strtod.c 919 ULong z2; local
955 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
956 carry = z2 >> 16;
957 Storeinc(xc, z2, z);
966 z2 = *xc;
970 Storeinc(xc, z, z2);
971 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
972 carry = z2 >> 16;
975 *xc = z2;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPixelBufferObjectTests.cpp 462 float z2 = 2.0f * m_random.getFloat() - 1.0f; local
468 renderTriangle(tcu::Vec3(x1, y1, z1), tcu::Vec3(x2, y2, z2), tcu::Vec3(x3, y3, z3));
  /external/opencv/cxcore/src/
cxarithm.cpp     [all...]
cxmathfuncs.cpp 153 float z2 = (float) (yf[2] * xf[3] * a * d); local
158 z2 = (float)((_CV_ATAN_CF0*fabs(z2) + _CV_ATAN_CF1)*z2 + icvAtanTab[idx[2]]);
163 angle[i+2] = z2;
    [all...]
  /frameworks/rs/driver/
rsdGL.cpp 542 float x2, float y2, float z2, float u2, float v2,
546 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
rsdRuntimeStubs.cpp     [all...]
  /external/libjpeg-turbo/simd/
jfdctflt-3dn.asm 167 pfadd mm2,mm3 ; mm2=z2
282 pfadd mm2,mm3 ; mm2=z2
jfdctflt-sse-64.asm 191 addps xmm1,xmm2 ; xmm1=z2
326 addps xmm1,xmm2 ; xmm1=z2
jfdctflt-sse.asm 198 addps xmm1,xmm2 ; xmm1=z2
334 addps xmm1,xmm2 ; xmm1=z2
jfdctfst-mmx.asm 218 paddw mm1,mm2 ; mm1=z2
359 paddw mm1,mm2 ; mm1=z2
  /external/vulkan-validation-layers/libs/glm/detail/
type_mat2x4.hpp 80 typename X2, typename Y2, typename Z2, typename W2>
83 X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 232 float z2 = header->v[2]->data[pos_attr][2] - header->v[0]->data[pos_attr][2]; local
234 float vx = y1 * z2 - z1 * y2;
235 float vy = x1 * z2 - z1 * x2;
  /external/mesa3d/src/mesa/main/
rastpos.c 668 GLfloat z2; local
673 z2 = CLAMP(z, 0.0F, 1.0F)
680 ctx->Current.RasterPos[2] = z2;
  /prebuilts/go/darwin-x86/src/math/big/
int_test.go 165 var z2 Int
166 z2.SetBytes(mulBytes(a, b))
168 return z1.Cmp(&z2) == 0
635 z2 := new(Int).Exp(x, y, m)
636 if z2.Cmp(z1) != 0 {
637 t.Errorf("#%d: got %x want %x", i, z2, z1)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p256.go 887 // p256PointAdd sets {xOut,yOut,zOut} = {x1,y1,z1} + {x2,y2,z2}.
893 func p256PointAdd(xOut, yOut, zOut, x1, y1, z1, x2, y2, z2 *[p256Limbs]uint32) {
897 p256Square(&z2z2, z2)
900 p256Sum(&tmp, z1, z2
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p256.go 887 // p256PointAdd sets {xOut,yOut,zOut} = {x1,y1,z1} + {x2,y2,z2}.
893 func p256PointAdd(xOut, yOut, zOut, x1, y1, z1, x2, y2, z2 *[p256Limbs]uint32) {
897 p256Square(&z2z2, z2)
900 p256Sum(&tmp, z1, z2
    [all...]
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 90 static void z2(){ function in class:lookup_dependent_base_class_static_function::B
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRuleTest.java 1554 BasicTimeZone z2 = (BasicTimeZone)tz2; local
1604 BasicTimeZone z2 = (BasicTimeZone)tz2; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRuleTest.java 1553 BasicTimeZone z2 = (BasicTimeZone)tz2; local
1603 BasicTimeZone z2 = (BasicTimeZone)tz2; local
    [all...]

Completed in 1652 milliseconds

1 2 3 4 56 7 8