Searched defs:isNeg (Results 1 - 14 of 14) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/code/
H A DNeg.java87 public boolean isNeg() { method in class:Neg
H A DInstruction.java546 public boolean isNeg() { method in class:Instruction
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp320 unsigned isNeg = (int64_t(Value - 4) < 0) ? 1 : 0; local
325 Binary |= isNeg << 10; // Sign bit.
338 unsigned isNeg = (int64_t(Value-4) < 0) ? 1 : 0; local
343 Binary |= isNeg << 10; // Sign bit.
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp1531 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1532 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp348 const bool isNeg = (src & (1<<2)) != 0; local
349 return (deInt8)((isNeg ? ~((1<<3)-1) : 0) | src);
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp1228 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1229 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp1311 const bool isNeg = tcu::Float32(in0).sign() < 0; local
1312 const float ref = isNeg ? (-float(int(-in0))) : float(int(in0));
/external/llvm/lib/Support/
H A DAPInt.cpp842 bool isNeg = T.I >> 63; local
856 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
867 return isNeg ? -Tmp : Tmp;
890 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; local
893 APInt Tmp(isNeg ? -(*this) : (*this));
905 if (!isSigned || !isNeg)
928 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1604 bool isNeg = u[j+n] < borrow;
1614 if (isNeg) {
2096 bool isNeg
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp820 bool isNeg = T.I >> 63; local
834 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
845 return isNeg ? -Tmp : Tmp;
868 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; local
871 APInt Tmp(isNeg ? -(*this) : (*this));
883 if (!isSigned || !isNeg)
906 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1578 bool isNeg = u[j+n] < borrow;
1588 if (isNeg) {
2070 bool isNeg
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp1905 bool BinaryOperator::isNeg(const Value *V) { function in class:BinaryOperator
/external/sqlite/dist/orig/
H A Dshell.c3603 int isNeg = 0; local
3605 isNeg = 1;
3629 return isNeg? -v : v;
/external/sqlite/dist/
H A Dshell.c3625 int isNeg = 0; local
3627 isNeg = 1;
3651 return isNeg? -v : v;
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp8033 bool isNeg = false; local
8035 isNeg = true;
8046 if (isNeg)
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp11262 bool isNeg = false; local
11264 isNeg = true;
11275 if (isNeg)

Completed in 533 milliseconds