HomeSort by relevance Sort by last modified time
    Searched full:bitwidth (Results 126 - 150 of 333) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVModule.cpp 189 virtual SPIRVTypeFloat *addFloatType(unsigned BitWidth);
192 virtual SPIRVTypeInt *addIntegerType(unsigned BitWidth);
681 SPIRVModuleImpl::addIntegerType(unsigned BitWidth) {
682 auto Loc = IntTypeMap.find(BitWidth);
685 auto Ty = new SPIRVTypeInt(this, getId(), BitWidth, false);
686 IntTypeMap[BitWidth] = Ty;
691 SPIRVModuleImpl::addFloatType(unsigned BitWidth) {
692 SPIRVTypeFloat *T = addType(new SPIRVTypeFloat(this, getId(), BitWidth));
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APSInt.h 30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
APFloat.h 253 /// \param BitWidth - Select float type
255 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ValueTypes.cpp 28 EVT EVT::getExtendedIntegerVT(LLVMContext &Context, unsigned BitWidth) {
30 VT.LLVMTy = IntegerType::get(Context, BitWidth);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 246 unsigned BitWidth = DL.getPointerTypeSizeInBits(GV->getType());
247 Offset = APInt(BitWidth, 0);
265 unsigned BitWidth = DL.getPointerTypeSizeInBits(GEP->getType());
266 APInt TmpOffset(BitWidth, 0);
647 unsigned BitWidth = DL.getTypeSizeInBits(Op0->getType()->getScalarType());
648 APInt KnownZero0(BitWidth, 0), KnownOne0(BitWidth, 0);
649 APInt KnownZero1(BitWidth, 0), KnownOne1(BitWidth, 0);
679 // PtrToInt may change the bitwidth so we have convert to the right siz
    [all...]
TargetTransformInfo.cpp 189 bool TargetTransformInfo::allowsMisalignedMemoryAccesses(unsigned BitWidth,
193 return TTIImpl->allowsMisalignedMemoryAccesses(BitWidth, AddressSpace,
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 118 // sizeof(void*), which is wrong when the target bitwidth is not the same as the host's.
  /external/llvm/include/llvm/CodeGen/
MachineValueType.h 552 static MVT getFloatingPointVT(unsigned BitWidth) {
553 switch (BitWidth) {
569 static MVT getIntegerVT(unsigned BitWidth) {
570 switch (BitWidth) {
  /external/llvm/test/Bitcode/
invalid.test 11 RUN: not llvm-dis -disable-output %p/Inputs/invalid-bitwidth.bc 2>&1 | \
12 RUN: FileCheck --check-prefix=BAD-BITWIDTH %s
35 BAD-BITWIDTH: Bitwidth for integer type out of range
  /external/swiftshader/third_party/LLVM/lib/Support/
ConstantRange.cpp 32 ConstantRange::ConstantRange(uint32_t BitWidth, bool Full) {
34 Lower = Upper = APInt::getMaxValue(BitWidth);
36 Lower = Upper = APInt::getMinValue(BitWidth);
136 /// its bitwidth, for example: i8 [120, 140).
  /frameworks/compile/slang/
slang.cpp 155 void Slang::createTarget(uint32_t BitWidth) {
156 if (BitWidth == 64) {
241 Slang::Slang(uint32_t BitWidth, clang::DiagnosticsEngine *DiagEngine,
269 createTarget(BitWidth);
slang_rs_export_func.cpp 96 /* BitWidth = */ nullptr,
  /external/llvm/lib/CodeGen/
SafeStack.cpp 229 uint64_t BitWidth = SE->getTypeSizeInBits(Expr->getType());
232 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AccessSize));
235 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AllocaSize));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 228 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
229 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
230 APInt ShlMask(APInt::getHighBitsSet(BitWidth, BitWidth-OpRHSVal));
248 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
249 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
250 APInt ShrMask(APInt::getLowBitsSet(BitWidth, BitWidth - OpRHSVal));
268 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
269 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 316 unsigned BitWidth = OpA->getType()->getScalarSizeInBits();
322 APInt KnownZero(BitWidth, 0);
323 APInt KnownOne(BitWidth, 0);
325 KnownZero &= ~APInt::getHighBitsSet(BitWidth, 1);
335 const SCEV *One = SE.getConstant(APInt(BitWidth, 1));
    [all...]
  /art/runtime/base/
bit_utils.h 56 // Similar to CLZ except that on zero input it returns bitwidth and supports signed integers.
75 // Similar to CTZ except that on zero input it returns bitwidth and supports signed integers.
  /external/llvm/include/llvm/ADT/
APSInt.h 31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetData.h 256 /// an integer type of the specified bitwidth.
257 unsigned getABIIntegerTypeAlignment(unsigned BitWidth) const;
  /hardware/interfaces/audio/common/2.0/default/
HidlUtils.cpp 107 offload->bitWidth = halOffload.bit_width;
123 halOffload->bit_width = offload.bitWidth;
  /external/clang/lib/Lex/
PPExpressions.cpp 41 PPValue(unsigned BitWidth) : Val(BitWidth) {}
816 unsigned BitWidth = getTargetInfo().getIntMaxTWidth();
818 PPValue ResVal(BitWidth);
  /external/llvm/lib/Target/SystemZ/
SystemZOperators.td 532 unsigned BitWidth = N->getValueType(0).getScalarType().getSizeInBits();
534 APInt::getLowBitsSet(BitWidth, 8));
540 unsigned BitWidth = N->getValueType(0).getScalarType().getSizeInBits();
542 APInt::getLowBitsSet(BitWidth, 8));
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ScalarEvolution.h 87 /// bitwidth. Formally, a recurrence with no self-wraparound satisfies:
88 /// abs(step) * max-iteration(loop) <= unsigned-max(bitwidth).
547 /// getEffectiveSCEVType - Return a type with the same bitwidth as
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
FunctionLoweringInfo.h 169 const LiveOutInfo *GetLiveOutRegInfo(unsigned Reg, unsigned BitWidth);

Completed in 649 milliseconds

1 2 3 4 56 7 8 91011>>