/dalvik/vm/mterp/x86-atom/ |
OP_DOUBLE_TO_INT.S | 37 fucomip %st(2), %st(0) # check for negInf 38 jae .L${opcode}_negInf # handle negInf 67 movl $$0x80000000, (rFP, %edx, 4) # vA<- negInf
|
OP_FLOAT_TO_INT.S | 37 fucomip %st(2), %st(0) # check for negInf 38 jae .L${opcode}_negInf # handle negInf 67 movl $$0x80000000, (rFP, %edx, 4) # vA<- negInf
|
OP_DOUBLE_TO_LONG.S | 37 fucomip %st(2), %st(0) # check for negInf 38 jae .L${opcode}_negInf # handle negInf 68 movq .LvalueNegInfLong, %xmm0 # %xmm0<- negInf 70 movq %xmm0, (rFP, %edx, 4) # vA<- %xmm0; negInf
|
OP_FLOAT_TO_LONG.S | 37 fucomip %st(2), %st(0) # check for negInf 38 jae .L${opcode}_negInf # handle negInf 68 movq .LvalueNegInfLong, %xmm0 # %xmm0<- negInf 70 movq %xmm0, (rFP, %edx, 4) # vA<- %xmm0; negInf
|
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
shared.rsh | 43 static const float neginf() {
|
/external/webkit/Source/JavaScriptCore/wtf/ |
MathExtras.h | 161 double negInf = -std::numeric_limits<double>::infinity(); 168 else if (x == posInf && y == negInf) 170 else if (x == negInf && y == posInf) 172 else if (x == negInf && y == negInf)
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/ |
decoder.py | 19 NaN, PosInf, NegInf = _floatconstants() 38 '-Infinity': NegInf,
|
/external/valgrind/main/VEX/priv/ |
guest_generic_x87.c | 447 const ULong negInf = 0xFFF0000000000000ULL; 459 if (arg == negInf) 460 return getExp ? posInf : negInf; 464 return getExp ? negInf : posZero; 466 return getExp ? negInf : negZero;
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldStmtTest.java | 274 double negInf = Double.NEGATIVE_INFINITY; 292 st.bind(1, negInf);
|
/frameworks/compile/libbcc/lib/ScriptCRT/ |
rs_cl.c | 323 static const float neginf() { function [all...] |
/dalvik/vm/mterp/out/ |
InterpAsm-x86-atom.S | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
SimplifyLibCalls.cpp | 901 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true); 906 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf); [all...] |