HomeSort by relevance Sort by last modified time
    Searched refs:ElementSize (Results 1 - 13 of 13) sorted by null

  /external/llvm/include/llvm/ADT/
SparseBitVector.h 43 template <unsigned ElementSize = 128>
45 : public ilist_node<SparseBitVectorElement<ElementSize> > {
50 BITWORDS_PER_ELEMENT = (ElementSize + BITWORD_SIZE - 1) / BITWORD_SIZE,
51 BITS_PER_ELEMENT = ElementSize
278 template <unsigned ElementSize = 128>
280 typedef ilist<SparseBitVectorElement<ElementSize> > ElementList;
284 BITWORD_SIZE = SparseBitVectorElement<ElementSize>::BITWORD_SIZE
328 const SparseBitVector<ElementSize> *BitVector;
340 typename SparseBitVectorElement<ElementSize>::BitWord Bits;
351 BitNumber = Iter->index() * ElementSize;
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 101 unsigned ElementSize = TD->getTypeAllocSize(T);
103 ElementSize = TD->getStructLayout(ST)->getSizeInBytes();
105 // If malloc call's arg can be determined to be a multiple of ElementSize,
109 if (ComputeMultiple(MallocArg, ElementSize, Multiple,
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 679 unsigned int ElementSize = mpTD->getTypeAllocSize
685 reinterpret_cast<uint8_t*>(Addr) + i * ElementSize);
694 unsigned int ElementSize = mpTD->getTypeAllocSize
700 reinterpret_cast<uint8_t*>(Addr) + i * ElementSize);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 588 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
589 Result.Offset += Index.getSExtValue() * ElementSize;
    [all...]
Type.cpp 83 uint64_t ElementSize
85 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize));
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 465 // N = N + Idx * ElementSize;
466 uint64_t ElementSize = TD.getTypeAllocSize(Ty);
474 if (ElementSize != 1) {
475 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
    [all...]
SelectionDAGBuilder.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp     [all...]
CGExprConstant.cpp     [all...]

Completed in 1122 milliseconds