Home
last modified time | relevance | path

Searched refs:ux (Results 1 – 25 of 265) sorted by relevance

1234567891011

/external/mesa3d/src/mesa/math/
Dm_norm_tmp.h63 const GLfloat ux = from[0], uy = from[1], uz = from[2]; in TAG() local
64 tx = ux * m0 + uy * m1 + uz * m2; in TAG()
65 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
66 tz = ux * m8 + uy * m9 + uz * m10; in TAG()
92 const GLfloat ux = from[0], uy = from[1], uz = from[2]; in TAG() local
93 tx = ux * m0 + uy * m1 + uz * m2; in TAG()
94 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
95 tz = ux * m8 + uy * m9 + uz * m10; in TAG()
130 const GLfloat ux = from[0], uy = from[1], uz = from[2]; in TAG() local
131 tx = ux * m0 ; in TAG()
[all …]
/external/tensorflow/tensorflow/core/util/
Doverflow.h30 const uint64 ux = x; in MultiplyWithoutOverflow() local
32 const uint64 uxy = ux * uy; in MultiplyWithoutOverflow()
35 if (TF_PREDICT_FALSE((ux | uy) >> 32 != 0)) { in MultiplyWithoutOverflow()
41 if (ux != 0 && uxy / ux != uy) return -1; in MultiplyWithoutOverflow()
/external/tensorflow/tensorflow/compiler/xla/
Doverflow_util.h30 const uint64 ux = x; in MultiplyWithoutOverflow() local
32 const uint64 uxy = ux * uy; in MultiplyWithoutOverflow()
35 if (TF_PREDICT_FALSE((ux | uy) >> 32 != 0)) { in MultiplyWithoutOverflow()
41 if (ux != 0 && uxy / ux != uy) return -1; in MultiplyWithoutOverflow()
/external/arm-optimized-routines/test/testcases/directed/
Dexpf.tst13 func=expf op1=ff7fffff result=00000000 errno=ERANGE status=ux
20 func=expf op1=c2affff8 result=0041eecc.041 errno=0 status=ux
21 func=expf op1=c2b00008 result=0041ecbc.95e errno=0 status=ux
22 func=expf op1=c2cffff8 result=00000000 errno=ERANGE status=ux
23 func=expf op1=c2d00008 result=00000000 errno=ERANGE status=ux
Dexp2f.tst13 func=exp2f op1=ff7fffff result=00000000 errno=ERANGE status=ux
22 func=exp2f op1=c2fc0001 result=007fffd3.a38 errno=0 status=ux
24 func=exp2f op1=c3158000 result=00000000.800 errno=ERANGE status=ux
25 func=exp2f op1=c3165432 result=00000000.4bd errno=ERANGE status=ux
Dexp2.tst13 func=exp2 op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
29 func=exp2 op1=c090ca00.00000000 result=00000000.00000000.b50 status=ux
30 func=exp2 op1=c090cc00.00000000 result=00000000.00000000 errno=ERANGE status=ux
Dexp.tst13 func=exp op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
29 func=exp op1=c0874910.d52d3051 result=00000000.00000001 status=ux
30 func=exp op1=c0874910.d52d3052 result=00000000.00000000 errno=ERANGE status=ux
Dpowf.tst206 func=powf op1=36c27f9d op2=4109fa51 result=00000000 errno=ERANGE status=ux
209 func=powf op1=32bd53f3 op2=40bcba58 result=00000000 errno=ERANGE status=ux
210 func=powf op1=32dc5bff op2=40be62ea result=00000000 errno=ERANGE status=ux
211 func=powf op1=3a8a3f66 op2=4172bd43 result=00000000 errno=ERANGE status=ux
213 func=powf op1=40886699 op2=c28f703a result=00000000 errno=ERANGE status=ux
214 func=powf op1=414bd593 op2=c22370cf result=00000000 errno=ERANGE status=ux
218 func=powf op1=39aef7a6 op2=414fd60a result=00000000 errno=ERANGE status=ux
220 func=powf op1=42455a4b op2=c1d55905 result=00000000 errno=ERANGE status=ux
223 func=powf op1=406bf67b op2=c29f5f12 result=00000000 errno=ERANGE status=ux
224 func=powf op1=2d82a6fc op2=4085779e result=00000000 errno=ERANGE status=ux
[all …]
Dsincosf.tst50 func=sincosf_sinf op1=00400000 result=00400000.000 status=ux
51 func=sincosf_cosf op1=00400000 result=3f800000.000 status=ux
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/cmpopts/
Dignore.go116 ux := newUnexportedFilter(typs...)
117 return cmp.FilterPath(ux.filter, cmp.Ignore())
123 ux := unexportedFilter{m: make(map[reflect.Type]bool)}
129 ux.m[t] = true
131 return ux
/external/libchrome/base/numerics/
Dchecked_math_impl.h30 UnsignedDst ux = static_cast<UnsignedDst>(x); in CheckedAddImpl() local
32 UnsignedDst uresult = static_cast<UnsignedDst>(ux + uy); in CheckedAddImpl()
37 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0 in CheckedAddImpl()
90 UnsignedDst ux = static_cast<UnsignedDst>(x);
92 UnsignedDst uresult = static_cast<UnsignedDst>(ux - uy);
97 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
150 const UnsignedDst ux = SafeUnsignedAbs(x);
152 UnsignedDst uresult = static_cast<UnsignedDst>(ux * uy);
160 ux <= (std::numeric_limits<T>::max() + UnsignedDst(is_negative)) / uy;
/external/u-boot/post/lib_powerpc/fpu/
Dmul-subnormal-single-1.c45 tstmul (unsigned int ux, unsigned int uy, unsigned int ur) in tstmul() argument
47 float x = u2f (ux); in tstmul()
/external/pdfium/third_party/base/numerics/
Dsafe_math_impl.h62 auto ux = static_cast<UnsignedDst>(x);
64 auto uresult = static_cast<UnsignedDst>(ux + uy);
69 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0
113 auto ux = static_cast<UnsignedDst>(x);
115 auto uresult = static_cast<UnsignedDst>(ux - uy);
120 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
164 const UnsignedDst ux = SafeUnsignedAbs(x);
166 auto uresult = static_cast<UnsignedDst>(ux * uy);
174 ux <= (std::numeric_limits<T>::max() + UnsignedDst(is_negative)) / uy;
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dc70c2d3dd82c986604197b174abacc84.00000464.honggfuzz.cov4 ux/gnu)
22 ux/gnu)
De84a5a58e862094be43babba08eabeed.000000b3.honggfuzz.cov6 2����m�`�����uxZ�~��Kj\��j\��
D0b59dbed7fe605ce183f3816e2df466c.00000742.honggfuzz.cov12 1����m�`�����uxZ�~��K���������������������������������������������������������������������…
D07683d40bdd117e211c443b53e9ed07a.000007d2.honggfuzz.cov5 1����m�`�����uxZ�~��K���������������������������������������������������������������������…
Dad87e0f6cce06a460ed29c58af5d1be4.00000448.honggfuzz.cov4 ux/gnu)
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dc70c2d3dd82c986604197b174abacc84.00000464.honggfuzz.cov4 ux/gnu)
22 ux/gnu)
De84a5a58e862094be43babba08eabeed.000000b3.honggfuzz.cov6 2����m�`�����uxZ�~��Kj\��j\��
D0b59dbed7fe605ce183f3816e2df466c.00000742.honggfuzz.cov12 1����m�`�����uxZ�~��K���������������������������������������������������������������������…
D07683d40bdd117e211c443b53e9ed07a.000007d2.honggfuzz.cov5 1����m�`�����uxZ�~��K���������������������������������������������������������������������…
Dad87e0f6cce06a460ed29c58af5d1be4.00000448.honggfuzz.cov4 ux/gnu)
/external/v8/src/base/
Dsafe_math_impl.h149 UnsignedDst ux = static_cast<UnsignedDst>(x);
151 UnsignedDst uresult = ux + uy;
155 if (HasSignBit(BinaryComplement((uresult ^ ux) & (uresult ^ uy))))
172 UnsignedDst ux = static_cast<UnsignedDst>(x);
174 UnsignedDst uresult = ux - uy;
178 if (HasSignBit(BinaryComplement((uresult ^ ux) & (ux ^ uy))))
/external/mesa3d/src/mesa/sparc/
Dnorm.S50 ld [%o5 + 0x00], %f0 ! ux = from[0]
115 ld [%o5 + 0x00], %f0 ! ux = from[0]
189 ld [%o5 + 0x00], %f0 ! ux = from[0]
236 ld [%o5 + 0x00], %f0 ! ux = from[0]
295 1: ld [%o5 + 0x00], %f0 ! ux = from[0]
352 1: ld [%o5 + 0x00], %f0 ! ux = from[0]
402 1: ld [%o5 + 0x00], %f0 ! ux = from[0]
444 1: ld [%o5 + 0x00], %f0 ! ux = from[0]
501 ld [%o5 + 0x00], %f3 ! ux = from[0]
537 ld [%o5 + 0x00], %f3 ! ux = from[0]
[all …]

1234567891011