HomeSort by relevance Sort by last modified time
    Searched full:bitwidth (Results 101 - 125 of 177) sorted by null

1 2 3 45 6 7 8

  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 169 const LiveOutInfo *GetLiveOutRegInfo(unsigned Reg, unsigned BitWidth);
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 274 /// \param BitWidth - Select float type
276 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
  /external/llvm/include/llvm/IR/
DataLayout.h 344 /// an integer type of the specified bitwidth.
345 unsigned getABIIntegerTypeAlignment(unsigned BitWidth) const;
  /external/llvm/unittests/ADT/
APIntTest.cpp 19 // Test that APInt shift left works when bitwidth > 64 and shiftamt == 0
473 EXPECT_DEATH(APInt(0, "", 0), "Bitwidth too small");
  /external/clang/lib/Sema/
SemaStmt.cpp 658 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
659 if (Val.getBitWidth() < BitWidth)
660 Val = Val.extend(BitWidth);
661 else if (Val.getBitWidth() > BitWidth)
662 Val = Val.trunc(BitWidth);
708 // Get the bitwidth of the switched-on value before promotions. We must
    [all...]
SemaDecl.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 401 Expr *BitWidth = D->getBitWidth();
403 BitWidth = 0;
404 else if (BitWidth) {
410 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
413 BitWidth = 0;
415 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
423 BitWidth,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 391 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
395 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
399 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
403 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
407 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
411 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
721 * None is returned if this is not an integer constant, or bitwidth exceeds 64.
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 138 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
139 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 61 Integer.BitWidth = Value.getBitWidth();
ASTContext.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 196 static void DefineTypeSizeof(StringRef MacroName, unsigned BitWidth,
199 Twine(BitWidth / TI.getCharWidth()));
    [all...]
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 270 unsigned BitWidth = EVT(VT).getSizeInBits();
271 switch (BitWidth) {
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 359 unsigned BitWidth = AllocaSize * 8;
363 if (BitWidth > ScalarLoadThreshold)
367 !HadNonMemTransferAccess && !TD.fitsInLegalInteger(BitWidth))
377 NewTy = IntegerType::get(AI->getContext(), BitWidth);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 661 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
663 CI->getValue().zext(BitWidth));
668 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
670 CI->getValue().sext(BitWidth));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineAddSub.cpp 877 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
878 uint32_t CSTVal = CST->getLimitedValue(BitWidth);
880 APInt::getOneBitSet(BitWidth, CSTVal));
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 848 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
849 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_pack.c 597 * Truncate or expand the bitwidth.

Completed in 1543 milliseconds

1 2 3 45 6 7 8