HomeSort by relevance Sort by last modified time
    Searched refs:uy (Results 1 - 25 of 33) sorted by null

1 2

  /external/tensorflow/tensorflow/core/util/
overflow.h 31 const uint64 uy = y; local
32 const uint64 uxy = ux * uy;
35 if (TF_PREDICT_FALSE((ux | uy) >> 32 != 0)) {
41 if (ux != 0 && uxy / ux != uy) return -1;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_copysignl.c 36 union IEEEl2bits ux, uy; local
39 uy.e = y;
40 ux.bits.sign = uy.bits.sign;
e_fmodl.c 67 union IEEEl2bits ux, uy; local
74 uy.e = y;
78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
83 if(ux.bits.exp<=uy.bits.exp) {
84 if((ux.bits.exp<uy.bits.exp) |
    [all...]
s_nexttoward.c 35 union IEEEl2bits uy; local
42 uy.e = y;
45 (uy.bits.exp == 0x7fff &&
46 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
50 INSERT_WORDS(x,uy.bits.sign<<31,1); /* return +-minsubnormal */
s_nexttowardf.c 26 union IEEEl2bits uy; local
32 uy.e = y;
35 (uy.bits.exp == LDBL_INFNAN_EXP &&
36 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
40 SET_FLOAT_WORD(x,(uy.bits.sign<<31)|1);/* return +-minsubnormal */
s_remquol.c 70 union IEEEl2bits ux, uy; local
77 uy.e = y;
79 sxy = sx ^ uy.bits.sign;
81 uy.bits.sign = 0; /* |y| */
85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
87 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
88 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN *
    [all...]
s_nextafterl.c 37 union IEEEl2bits ux, uy; local
40 uy.e = y;
44 (uy.bits.exp == 0x7fff &&
45 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
51 ux.bits.sign = uy.bits.sign;
e_atan2l.c 49 union IEEEl2bits ux, uy; local
54 uy.e = y;
55 expsigny = uy.xbits.expsign;
64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */
71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) {
  /external/mesa3d/src/mesa/math/
m_norm_tmp.h 63 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
64 tx = ux * m0 + uy * m1 + uz * m2;
65 ty = ux * m4 + uy * m5 + uz * m6;
66 tz = ux * m8 + uy * m9 + uz * m10;
92 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
93 tx = ux * m0 + uy * m1 + uz * m2;
94 ty = ux * m4 + uy * m5 + uz * m6;
95 tz = ux * m8 + uy * m9 + uz * m10;
130 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
132 ty = uy * m5
157 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
194 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
226 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
256 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
286 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
    [all...]
  /external/libchrome/base/numerics/
safe_math_impl.h 62 UnsignedDst uy = static_cast<UnsignedDst>(y); local
63 UnsignedDst uresult = static_cast<UnsignedDst>(ux + uy);
68 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0
69 : uresult >= uy; // Unsigned is either valid or underflow.
113 UnsignedDst uy = static_cast<UnsignedDst>(y); local
114 UnsignedDst uresult = static_cast<UnsignedDst>(ux - uy);
119 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
164 const UnsignedDst uy = SafeUnsignedAbs(y); local
165 UnsignedDst uresult = static_cast<UnsignedDst>(ux * uy);
172 return uy <= UnsignedDst(!std::is_signed<T>::value || is_negative) |
    [all...]
  /external/pdfium/third_party/base/numerics/
safe_math_impl.h 63 auto uy = static_cast<UnsignedDst>(y); local
64 auto uresult = static_cast<UnsignedDst>(ux + uy);
69 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0
70 : uresult >= uy; // Unsigned is either valid or underflow.
114 auto uy = static_cast<UnsignedDst>(y); local
115 auto uresult = static_cast<UnsignedDst>(ux - uy);
120 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
165 const UnsignedDst uy = SafeUnsignedAbs(y); local
166 auto uresult = static_cast<UnsignedDst>(ux * uy);
173 return uy <= UnsignedDst(!std::is_signed<T>::value || is_negative) |
    [all...]
  /external/v8/src/base/
safe_math_impl.h 150 UnsignedDst uy = static_cast<UnsignedDst>(y); local
151 UnsignedDst uresult = ux + uy;
155 if (HasSignBit(BinaryComplement((uresult ^ ux) & (uresult ^ uy))))
173 UnsignedDst uy = static_cast<UnsignedDst>(y); local
174 UnsignedDst uresult = ux - uy;
178 if (HasSignBit(BinaryComplement((uresult ^ ux) & (ux ^ uy))))
  /external/mesa3d/src/mesa/sparc/
norm.S 51 ld [%o5 + 0x04], %f1 ! uy = from[1]
56 /* tx (f3) = (ux * m0) + (uy * m1) + (uz * m2)
57 * ty (f5) = (ux * m4) + (uy * m5) + (uz * m6)
58 * tz (f7) = (ux * m8) + (uy * m9) + (uz * m10)
116 ld [%o5 + 0x04], %f1 ! uy = from[1]
121 /* tx (f3) = (ux * m0) + (uy * m1) + (uz * m2)
122 * ty (f5) = (ux * m4) + (uy * m5) + (uz * m6)
123 * tz (f7) = (ux * m8) + (uy * m9) + (uz * m10)
190 ld [%o5 + 0x04], %f1 ! uy = from[1]
196 * ty (f5) = (uy * m5
    [all...]
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 60 float uy = sz * fx - sx * fz; local
70 m[5] = uy;
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 66 float uy = sz * fx - sx * fz; local
76 m[5] = uy;
  /prebuilts/go/darwin-x86/test/
divmod.go 443 uy := uint64(y)
448 uy = -uy
450 uq, ur := udiv(ux, uy)
  /prebuilts/go/linux-x86/test/
divmod.go 443 uy := uint64(y)
448 uy = -uy
450 uq, ur := udiv(ux, uy)
  /device/generic/goldfish/camera/
EmulatedFakeRotatingCameraDevice.cpp 219 float uy = sz * fx - sx * fz; local
221 float ulf = 1.0f / sqrt(ux * ux + uy * uy + uz * uz);
223 uy *= ulf;
233 m[5] = uy;
  /prebuilts/go/darwin-x86/src/go/constant/
value_test.go 197 _, uy := y.(unknownVal)
198 if ux || uy {
199 return ux == uy
  /prebuilts/go/linux-x86/src/go/constant/
value_test.go 197 _, uy := y.(unknownVal)
198 if ux || uy {
199 return ux == uy
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 162 float uy = sz * fx - sx * fz; local
172 d[5] = uy;
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 71 float uy = sz * fx - sx * fz; local
81 m[5] = uy;
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 1666 GLfloat uy = dudy * scaling; local
1787 GLfloat uy = dudy * scaling; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 728 float uy = sz * fx - sx * fz; local
737 rm[rmOffset + 5] = uy;
  /external/v8/benchmarks/
regexp.js 386 var str12 = 'uggc://tbbtyrnqf.t.qbhoyrpyvpx.arg/cntrnq/nqf?pyvrag=pn-svz_zlfcnpr_zlfcnpr-ubzrcntr_wf&qg=1231363514065&uy=ra&nqfnsr=uvtu&br=hgs8&ahz_nqf=4&bhgchg=wf&nqgrf (…)
    [all...]

Completed in 435 milliseconds

1 2