HomeSort by relevance Sort by last modified time
    Searched full:bitwidth (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /frameworks/rs/driver/linkloader/include/impl/
ELFSectionNoBits.hxx 29 template <unsigned Bitwidth>
31 inline ELFSectionNoBits<Bitwidth> *
32 ELFSectionNoBits<Bitwidth>::read(Archiver &AR, ELFSectionHeaderTy const *sh) {
ELFSection.hxx 31 template <unsigned Bitwidth>
33 inline ELFSection<Bitwidth> *
34 ELFSection<Bitwidth>::read(Archiver &AR,
ELFObject.hxx 32 template <unsigned Bitwidth>
34 inline ELFObject<Bitwidth> *
35 ELFObject<Bitwidth>::read(Archiver &AR) {
80 template <unsigned Bitwidth>
81 inline char const *ELFObject<Bitwidth>::getSectionName(size_t i) const {
93 template <unsigned Bitwidth>
94 inline ELFSection<Bitwidth> const *
95 ELFObject<Bitwidth>::getSectionByIndex(size_t i) const {
99 template <unsigned Bitwidth>
100 inline ELFSection<Bitwidth> *
    [all...]
ELFSymbol.hxx 32 template <unsigned Bitwidth>
33 inline char const *ELFSymbol_CRTP<Bitwidth>::getName() const {
42 template <unsigned Bitwidth>
44 inline ELFSymbol<Bitwidth> *
45 ELFSymbol_CRTP<Bitwidth>::read(Archiver &AR,
75 template <unsigned Bitwidth>
76 inline void ELFSymbol_CRTP<Bitwidth>::print(bool shouldPrintHeader) const {
121 template <unsigned Bitwidth>
122 void *ELFSymbol_CRTP<Bitwidth>::getAddress(int machine, bool autoAlloc) const {
ELFSectionProgBits.hxx 30 template <unsigned Bitwidth>
32 ELFSectionProgBits<Bitwidth> *
33 ELFSectionProgBits<Bitwidth>::read(Archiver &AR,
ELFHeader.hxx 25 template <unsigned Bitwidth>
26 void ELFHeader<Bitwidth>::print() {
  /external/llvm/lib/Support/
APInt.cpp 90 assert(BitWidth && "Bitwidth too small");
107 : BitWidth(numBits), VAL(0) {
112 : BitWidth(numBits), VAL(0) {
117 : BitWidth(numbits), VAL(0) {
118 assert(BitWidth && "Bitwidth too small");
127 if (BitWidth == RHS.getBitWidth()) {
150 BitWidth = RHS.BitWidth;
    [all...]
  /external/llvm/test/Transforms/InstCombine/
apint-add1.ll 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 8 != 0.
apint-or1.ll 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 2 != 0.
apint-or2.ll 2 ; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
apint-and1.ll 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 8 != 0.
apint-xor1.ll 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 8 != 0.
apint-xor2.ll 2 ; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
  /frameworks/compile/libbcc/lib/ExecutionEngine/
ELFObjectLoaderImpl.h 24 template <unsigned Bitwidth>
27 template <unsigned Bitwidth>
  /frameworks/rs/driver/linkloader/include/
ELFSectionHeaderTable.h 28 template <unsigned Bitwidth>
31 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
ELFHeader.h 37 template <unsigned Bitwidth>
40 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
207 return ((Bitwidth == 32 && is32bit()) ||
208 (Bitwidth == 64 && is64bit()));
ELFSymbol.h 38 template <unsigned Bitwidth>
41 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
44 ELFObject<Bitwidth> const *owner;
135 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 37 /// getBitWidth - Returns the bitwidth of the given scalar or pointer type (if
38 /// unknown returns 0). For vector types, returns the element type's bitwidth.
40 if (unsigned BitWidth = Ty->getScalarSizeInBits())
41 return BitWidth;
56 unsigned BitWidth = KnownZero.getBitWidth();
58 // NLZ can't be BitWidth with no sign bit
59 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
68 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
74 unsigned BitWidth = KnownZero.getBitWidth();
80 APInt LHSKnownZero(BitWidth, 0), LHSKnownOne(BitWidth, 0)
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 76 unsigned BitWidth; ///< The number of bits in this APInt.
97 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
102 return BitWidth <= APINT_BITS_PER_WORD;
134 unsigned wordBits = BitWidth % APINT_BITS_PER_WORD;
230 : BitWidth(numBits), VAL(0) {
231 assert(BitWidth && "bitwidth too small");
269 : BitWidth(that.BitWidth), VAL(0) {
270 assert(BitWidth && "bitwidth too small")
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 48 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
96 /// its bitwidth, for example: i8 [120, 140).
182 /// zero extended to BitWidth.
183 ConstantRange zeroExtend(uint32_t BitWidth) const;
188 /// sign extended to BitWidth.
189 ConstantRange signExtend(uint32_t BitWidth) const;
195 ConstantRange truncate(uint32_t BitWidth) const;
197 /// zextOrTrunc - make this range have the bit width given by \p BitWidth. The
199 ConstantRange zextOrTrunc(uint32_t BitWidth) const;
201 /// sextOrTrunc - make this range have the bit width given by \p BitWidth. Th
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 248 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
249 if (BitWidth == 1)
250 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
251 else if (BitWidth <= 8)
252 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
253 else if (BitWidth <= 16)
254 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
255 else if (BitWidth <= 32)
256 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
257 else if (BitWidth <= 64
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 54 unsigned BitWidth = Inst.getType()->getScalarSizeInBits();
55 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
56 APInt DemandedMask(APInt::getAllOnesValue(BitWidth));
93 /// in DemandedMask. Note also that the bitwidth of V, DemandedMask, KnownZero
106 uint32_t BitWidth = DemandedMask.getBitWidth();
110 assert((!TD || TD->getTypeSizeInBits(VTy->getScalarType()) == BitWidth) &&
112 VTy->getScalarSizeInBits() == BitWidth) &&
113 KnownZero.getBitWidth() == BitWidth &&
114 KnownOne.getBitWidth() == BitWidth &
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 34 (** [of_int32 n w] boxes the int32 [i] in a generic value with the bitwidth
38 (** [of_int n w] boxes the int [i] in a generic value with the bitwidth
43 bitwidth [w]. See the field [llvm::GenericValue::IntVal]. *)
47 (** [of_int64 n w] boxes the int64 [i] in a generic value with the bitwidth
61 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
66 Is invalid if [gv] has a bitwidth greater than the host bit width (but the
72 [nativeint]. Is invalid if [gv] has a bitwidth greater than
77 Is invalid if [gv] has a bitwidth greater than [int64]. See the field
  /frameworks/rs/driver/linkloader/
main.cpp 143 template <unsigned Bitwidth, typename Archiver>
145 llvm::OwningPtr<ELFObject<Bitwidth> > object(ELFObject<Bitwidth>::read(AR));
154 ELFSectionSymTab<Bitwidth> *symtab =
155 static_cast<ELFSectionSymTab<Bitwidth> *>(
  /external/llvm/utils/TableGen/
TGValueTypes.cpp 44 unsigned BitWidth;
47 : Type(TK_ExtendedIntegerType), BitWidth(bits) {}
55 return BitWidth;

Completed in 1738 milliseconds

12 3 4 5 6 7