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

12 3 4 5 6 7 8 9

  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionNoBits.hxx 27 template <unsigned Bitwidth>
29 inline ELFSectionNoBits<Bitwidth> *
30 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 35 template <unsigned Bitwidth>
37 inline ELFObject<Bitwidth> *
38 ELFObject<Bitwidth>::read(Archiver &AR) {
83 template <unsigned Bitwidth>
84 inline char const *ELFObject<Bitwidth>::getSectionName(size_t i) const {
96 template <unsigned Bitwidth>
97 inline ELFSection<Bitwidth> const *
98 ELFObject<Bitwidth>::getSectionByIndex(size_t i) const {
102 template <unsigned Bitwidth>
103 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,
  /external/llvm/lib/Support/
APInt.cpp 91 assert(BitWidth && "Bitwidth too small");
108 : BitWidth(numBits), VAL(0) {
113 : BitWidth(numBits), VAL(0) {
118 : BitWidth(numbits), VAL(0) {
119 assert(BitWidth && "Bitwidth too small");
128 if (BitWidth == RHS.getBitWidth()) {
151 BitWidth = RHS.BitWidth;
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionProgBits.h 26 template <unsigned Bitwidth>
27 class ELFSectionProgBits : public ELFSectionBits<Bitwidth> {
29 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
ELFSectionHeaderTable.h 27 template <unsigned Bitwidth>
30 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
ELFHeader.h 36 template <unsigned Bitwidth>
39 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
206 return ((Bitwidth == 32 && is32bit()) ||
207 (Bitwidth == 64 && is64bit()));
ELFSymbol.h 36 template <unsigned Bitwidth>
39 ELF_TYPE_INTRO_TO_TEMPLATE_SCOPE(Bitwidth);
42 ELFObject<Bitwidth> const *owner;
133 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
  /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.
  /frameworks/compile/libbcc/lib/ExecutionEngine/
ELFObjectLoaderImpl.h 24 template <unsigned Bitwidth>
27 template <unsigned Bitwidth>
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 119 int bitwidth, GeneratedFile &out) {
121 out.indent() << "// return byte array representation of the " << bitwidth
123 out.indent() << "public static byte[] getBitCode" << bitwidth << "()";
125 out.indent() << "return getBitCode" << bitwidth << "Internal();\n";
132 static bool GenerateSegmentMethod(const char *buff, int blen, int bitwidth,
134 out.indent() << "private static byte[] getSegment" << bitwidth << "_"
164 int bitwidth, GeneratedFile &out) {
167 if (bitwidth == 64) {
178 GenerateAccessorMethod(context, bitwidth, out);
189 GenerateSegmentMethod(buff, read_length, bitwidth, seg_num, out)
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 39 /// getBitWidth - Returns the bitwidth of the given scalar or pointer type (if
40 /// unknown returns 0). For vector types, returns the element type's bitwidth.
42 if (unsigned BitWidth = Ty->getScalarSizeInBits())
43 return BitWidth;
58 unsigned BitWidth = KnownZero.getBitWidth();
60 // NLZ can't be BitWidth with no sign bit
61 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
70 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
76 unsigned BitWidth = KnownZero.getBitWidth();
82 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.
98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
103 bool isSingleWord() const { return BitWidth <= APINT_BITS_PER_WORD; }
138 unsigned wordBits = BitWidth % APINT_BITS_PER_WORD;
237 : BitWidth(numBits), VAL(0) {
238 assert(BitWidth && "bitwidth too small");
279 APInt(const APInt &that) : BitWidth(that.BitWidth), VAL(0) {
280 assert(BitWidth && "bitwidth too small")
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 55 unsigned BitWidth = Inst.getType()->getScalarSizeInBits();
56 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
57 APInt DemandedMask(APInt::getAllOnesValue(BitWidth));
94 /// in DemandedMask. Note also that the bitwidth of V, DemandedMask, KnownZero
107 uint32_t BitWidth = DemandedMask.getBitWidth();
111 assert((!DL || DL->getTypeSizeInBits(VTy->getScalarType()) == BitWidth) &&
113 VTy->getScalarSizeInBits() == BitWidth) &&
114 KnownZero.getBitWidth() == BitWidth &&
115 KnownOne.getBitWidth() == BitWidth &
    [all...]
  /external/llvm/test/CodeGen/AArch64/
arm64-fastisel-gep-promote-before-add.ll 1 ; fastisel should not fold add with non-pointer bitwidth
  /external/llvm/test/CodeGen/ARM/
fastisel-gep-promote-before-add.ll 1 ; fastisel should not fold add with non-pointer bitwidth
  /external/llvm/test/CodeGen/PowerPC/
fastisel-gep-promote-before-add.ll 1 ; fastisel should not fold add with non-pointer bitwidth
  /external/llvm/include/llvm/IR/
ConstantRange.h 51 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
99 /// its bitwidth, for example: i8 [120, 140).
185 /// zero extended to BitWidth.
186 ConstantRange zeroExtend(uint32_t BitWidth) const;
191 /// sign extended to BitWidth.
192 ConstantRange signExtend(uint32_t BitWidth) const;
198 ConstantRange truncate(uint32_t BitWidth) const;
200 /// zextOrTrunc - make this range have the bit width given by \p BitWidth. The
202 ConstantRange zextOrTrunc(uint32_t BitWidth) const;
204 /// sextOrTrunc - make this range have the bit width given by \p BitWidth. Th
    [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]. *)
46 (** [of_int64 n w] boxes the int64 [i] in a generic value with the bitwidth
60 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
65 Is invalid if [gv] has a bitwidth greater than the host bit width (but the
71 [nativeint]. Is invalid if [gv] has a bitwidth greater than
76 Is invalid if [gv] has a bitwidth greater than [int64]. See the field

Completed in 378 milliseconds

12 3 4 5 6 7 8 9