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

1 2 3 4 56 7 8 9

  /external/llvm/include/llvm/IR/
DataLayout.h 386 /// an integer type of the specified bitwidth.
387 unsigned getABIIntegerTypeAlignment(unsigned BitWidth) const;
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 161 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
162 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /prebuilts/sdk/tools/linux/
libbcc.so 
  /external/clang/lib/Sema/
SemaStmt.cpp 667 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
668 if (Val.getBitWidth() < BitWidth)
669 Val = Val.extend(BitWidth);
670 else if (Val.getBitWidth() > BitWidth)
671 Val = Val.trunc(BitWidth);
741 // Get the bitwidth of the switched-on value before promotions. We must
    [all...]
SemaTemplateInstantiateDecl.cpp 464 Expr *BitWidth = D->getBitWidth();
466 BitWidth = nullptr;
467 else if (BitWidth) {
473 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
476 BitWidth = nullptr;
478 BitWidth = InstantiatedBitWidth.getAs<Expr>();
486 BitWidth,
    [all...]
SemaDecl.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 167 unsigned BitWidth = Context.getTypeSize(castTy);
170 return makeLocAsInteger(val, BitWidth);
    [all...]
  /external/chromium_org/native_client_sdk/doc_generated/reference/
pnacl-undefined-behavior.html 120 <li>PNaCl could force-mask the right-hand-side to <cite>bitwidth-1</cite>, which
  /external/chromium_org/native_client_sdk/src/doc/reference/
pnacl-undefined-behavior.rst 117 * PNaCl could force-mask the right-hand-side to `bitwidth-1`, which
  /external/clang/lib/AST/
TemplateBase.cpp 61 Integer.BitWidth = Value.getBitWidth();
ASTContext.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 209 static void DefineTypeSizeof(StringRef MacroName, unsigned BitWidth,
212 Twine(BitWidth / TI.getCharWidth()));
    [all...]
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 265 unsigned BitWidth = MVT(VT).getSizeInBits();
266 switch (BitWidth) {
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 360 unsigned BitWidth = AllocaSize * 8;
364 if (BitWidth > ScalarLoadThreshold)
368 !HadNonMemTransferAccess && !DL.fitsInLegalInteger(BitWidth))
378 NewTy = IntegerType::get(AI->getContext(), BitWidth);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 480 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
484 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
488 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
492 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
496 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
500 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
828 None is returned if this is not an integer constant, or bitwidth exceeds 64.
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
LazyValueInfo.cpp 849 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
850 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 664 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
666 CI->getValue().zext(BitWidth));
671 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
673 CI->getValue().sext(BitWidth));
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 171 int BitWidth = Opcode == AArch64::BFMXri ? 64 : 32;
172 int LSB = (BitWidth - ImmR) % BitWidth;
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
probe-finder.c 453 /* Check the bitwidth */
455 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]

Completed in 3307 milliseconds

1 2 3 4 56 7 8 9