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

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 687 Expr *BitWidth = D->getBitWidth();
689 BitWidth = nullptr;
690 else if (BitWidth) {
696 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
699 BitWidth = nullptr;
701 BitWidth = InstantiatedBitWidth.getAs<Expr>();
709 BitWidth,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 523 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
527 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
531 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
535 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
539 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
543 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
883 None is returned if this is not an integer constant, or bitwidth exceeds 64.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 184 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
185 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 93 /// unsigned-max(bitwidth). This means that the recurrence will never reach
834 unsigned BitWidth);
841 unsigned BitWidth);
    [all...]
TargetTransformInfoImpl.h 247 bool allowsMisalignedMemoryAccesses(unsigned BitWidth,
  /external/llvm/lib/IR/
ConstantFold.cpp 686 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
688 CI->getValue().zext(BitWidth));
693 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
695 CI->getValue().sext(BitWidth));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 317 unsigned BitWidth = AllocaSize * 8;
319 !HadNonMemTransferAccess && !TD.fitsInLegalInteger(BitWidth))
324 NewTy = IntegerType::get(AI->getContext(), BitWidth);
740 // integers with a bitwidth that is not a multiple of 8.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.cpp 657 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
659 CI->getValue().zext(BitWidth));
664 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
666 CI->getValue().sext(BitWidth));
    [all...]
  /hardware/qcom/audio/hal/msm8974/
platform.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Execution.cpp 786 unsigned BitWidth =
788 if (BitWidth == 32)
791 assert(BitWidth == 64 && "Invalid index type for getelementptr");
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 220 static void DefineTypeSizeof(StringRef MacroName, unsigned BitWidth,
223 Twine(BitWidth / TI.getCharWidth()));
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.cpp 237 // The bitwidth of the 0th operand. In most (if not all) of the
239 // Pre-compute the bitwidth here, because it is needed in many cases
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 298 unsigned BitWidth = BitsType->getBitWidth();
302 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 122 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
123 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 265 // the integer value to the correct signedness and bitwidth.
  /external/llvm/include/llvm/CodeGen/GlobalISel/
RegisterBankInfo.h 167 /// bitwidth matches the size of \p MaskSize.
  /external/llvm/include/llvm/IR/
Type.h 196 bool isIntegerTy(unsigned Bitwidth) const;
Value.h 487 /// correct bitwidth for an offset of this pointer type.
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 350 /// BW is the bitwidth of the integer type). A bswap idiom requires anywhere up
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]
VectorUtils.cpp 315 // of connected values must have the same minimum bitwidth.
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 421 assert(OrigValueBitWidth == ExpectedBitWidth && "BitWidth does not match");

Completed in 5609 milliseconds

1 2 3 4 5 6 7 891011>>