/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/amd64/ |
ggen.go | 194 if gc.Issigned[t.Etype] { 204 if gc.Issigned[t.Etype] { 281 if !gc.Issigned[t.Etype] { 468 if op == gc.ORSH && gc.Issigned[nl.Type.Etype] { 523 if gc.Issigned[nl.Type.Etype] {
|
/external/deqp/modules/gles31/functional/ |
es31fShaderAtomicOpTests.cpp | 422 const bool isSigned = m_type == TYPE_INT; 424 const int minVal = isSigned ? -maxVal : 0; 496 const bool isSigned = m_type == TYPE_INT; 497 m_initialValue = isSigned ? (m_precision == PRECISION_LOWP ? -100 : -1000) : 0; 504 const bool isSigned = m_type == TYPE_INT; 506 const int minVal = isSigned ? -maxVal : 0; [all...] |
/external/llvm/include/llvm/Analysis/ |
TargetFolder.h | 175 bool isSigned) const { 178 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
|
ScalarEvolution.h | 664 /// CouldNotCompute. isSigned specifies whether the less-than is signed. 666 const Loop *L, bool isSigned, bool IsSubExpr); 668 const Loop *L, bool isSigned, bool IsSubExpr); [all...] |
/external/llvm/include/llvm/IR/ |
ConstantFolder.h | 170 bool isSigned) const { 171 return ConstantExpr::getIntegerCast(C, DestTy, isSigned);
|
Constants.h | 71 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false); 75 /// to fit the type, unless isSigned is true, in which case the value will 80 bool isSigned = false); 186 bool isMaxValue(bool isSigned) const { 187 if (isSigned) 198 bool isMinValue(bool isSigned) const { 199 if (isSigned) [all...] |
NoFolder.h | 223 bool isSigned) const { 224 return CastInst::CreateIntegerCast(C, DestTy, isSigned);
|
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.5.7/ |
builder-model-0.5.7.jar | |
/external/eigen/doc/ |
CustomizingEigen.dox | 160 IsSigned = 1,
|
/external/eigen/unsupported/Eigen/ |
MPRealSupport | 65 IsSigned = 1,
|
/external/llvm/lib/Support/ |
APFloat.cpp | [all...] |
/external/v8/src/compiler/ia32/ |
instruction-selector-ia32.cc | 184 opcode = load_rep.IsSigned() ? kIA32Movsxbl : kIA32Movzxbl; 187 opcode = load_rep.IsSigned() ? kIA32Movsxwl : kIA32Movzxwl; 316 opcode = load_rep.IsSigned() ? kCheckedLoadInt8 : kCheckedLoadUint8; 319 opcode = load_rep.IsSigned() ? kCheckedLoadInt16 : kCheckedLoadUint16; [all...] |
/frameworks/rs/api/ |
GenerateTestFiles.cpp | 381 bool isSigned = generatedType.kind == SIGNED_INTEGER; 382 *mJava << (isSigned ? "true" : "false") << ", " << generatedType.significantBits; 384 bool isSigned = 386 *mJava << (isSigned ? "true" : "false") << ", " [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
ParameterMetaData.java | 95 boolean isSigned(int param) throws SQLException;
|
ResultSetMetaData.java | 126 boolean isSigned(int column) throws SQLException;
|
/external/clang/lib/CodeGen/ |
CGRecordLayoutBuilder.cpp | 227 Info.IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); 659 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); 682 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageOffset); [all...] |
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDILPeepholeOptimizer.cpp | 742 bool isSigned = ShiftInst->isArithmeticShift(); 783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned)); 784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned)); 809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned); 810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned); [all...] |
/external/llvm/lib/Target/AArch64/InstPrinter/ |
AArch64InstPrinter.cpp | 71 bool IsSigned = (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri); 80 if (IsSigned) 86 if (IsSigned) 93 if (Is64Bit && IsSigned) 144 O << '\t' << (IsSigned ? "sbfiz" : "ubfiz") << '\t' 152 O << '\t' << (IsSigned ? "sbfx" : "ubfx") << '\t' [all...] |
/external/llvm/lib/Target/ARM/ |
ARMBaseRegisterInfo.cpp | 627 bool isSigned = true; 656 isSigned = false; 668 if (isSigned && Offset < 0)
|
/external/llvm/lib/Transforms/Instrumentation/ |
MemorySanitizer.cpp | 654 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false); [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64InstrInfo.cpp | [all...] |
/external/v8/src/compiler/ppc/ |
instruction-selector-ppc.cc | 179 opcode = load_rep.IsSigned() ? kPPC_LoadWordS8 : kPPC_LoadWordU8; 182 opcode = load_rep.IsSigned() ? kPPC_LoadWordS16 : kPPC_LoadWordU16; 319 opcode = load_rep.IsSigned() ? kCheckedLoadInt8 : kCheckedLoadUint8; 322 opcode = load_rep.IsSigned() ? kCheckedLoadInt16 : kCheckedLoadUint16; [all...] |
/external/v8/src/compiler/x64/ |
instruction-selector-x64.cc | 124 opcode = load_rep.IsSigned() ? kX64Movsxbl : kX64Movzxbl; 127 opcode = load_rep.IsSigned() ? kX64Movsxwl : kX64Movzxwl; 250 opcode = load_rep.IsSigned() ? kCheckedLoadInt8 : kCheckedLoadUint8; 253 opcode = load_rep.IsSigned() ? kCheckedLoadInt16 : kCheckedLoadUint16; [all...] |
/external/v8/src/compiler/x87/ |
instruction-selector-x87.cc | 145 opcode = load_rep.IsSigned() ? kX87Movsxbl : kX87Movzxbl; 148 opcode = load_rep.IsSigned() ? kX87Movsxwl : kX87Movzxwl; 277 opcode = load_rep.IsSigned() ? kCheckedLoadInt8 : kCheckedLoadUint8; 280 opcode = load_rep.IsSigned() ? kCheckedLoadInt16 : kCheckedLoadUint16; [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | 323 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) { 325 return getConstant(ConstantInt::get(ITy, V, isSigned)); [all...] |