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

1 2

  /external/llvm/include/llvm/ADT/
SparseBitVector.h 42 template <unsigned ElementSize = 128>
44 : public ilist_node<SparseBitVectorElement<ElementSize> > {
50 BITWORDS_PER_ELEMENT = (ElementSize + BITWORD_SIZE - 1) / BITWORD_SIZE,
51 BITS_PER_ELEMENT = ElementSize
247 template <unsigned ElementSize>
248 struct ilist_traits<SparseBitVectorElement<ElementSize> >
249 : public ilist_default_traits<SparseBitVectorElement<ElementSize> > {
250 typedef SparseBitVectorElement<ElementSize> Element;
263 template <unsigned ElementSize = 128>
265 typedef ilist<SparseBitVectorElement<ElementSize> > ElementList
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 174 // A helper function that scales Idx with ElementSize before invoking
177 Value *S, uint64_t ElementSize,
189 void factorArrayIndex(Value *ArrayIdx, const SCEV *Base, uint64_t ElementSize,
254 int64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
256 BaseOffset += ConstIdx->getSExtValue() * ElementSize;
263 Scale = ElementSize;
464 const SCEV *B, ConstantInt *Idx, Value *S, uint64_t ElementSize,
466 // I = B + sext(Idx *nsw S) * ElementSize
467 // = B + (sext(Idx) * sext(S)) * ElementSize
468 // = B + (sext(Idx) * ElementSize) * sext(S
    [all...]
NaryReassociate.cpp 319 int64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
321 BaseOffset += ConstIdx->getSExtValue() * ElementSize;
328 Scale = ElementSize;
438 uint64_t ElementSize = DL->getTypeAllocSize(ElementType);
441 // necessarily divisible by ElementSize. For example,
453 if (IndexedSize % ElementSize != 0)
460 if (IndexedSize != ElementSize) {
462 RHS, ConstantInt::get(IntPtrTy, IndexedSize / ElementSize));
SROA.cpp     [all...]
SeparateConstOffsetFromGEP.cpp     [all...]
  /art/runtime/base/
array_slice.h 128 size_t ElementSize() const {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 396 NDR64_UINT32 ElementSize;
405 NDR64_UINT32 ElementSize;
416 NDR64_UINT32 ElementSize;
450 NDR64_UINT16 ElementSize;
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 426 int64_t ElementSize = DL.getTypeAllocSize(GTI.getIndexedType());
428 BaseOffset += ConstIdx->getSExtValue() * ElementSize;
434 Scale = ElementSize;
ScalarEvolution.h     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 223 unsigned ElementSize = DL.getTypeAllocSize(T);
225 ElementSize = DL.getStructLayout(ST)->getSizeInBytes();
227 // If malloc call's arg can be determined to be a multiple of ElementSize,
231 if (ComputeMultiple(MallocArg, ElementSize, Multiple,
BasicAliasAnalysis.cpp 823 const uint64_t ElementSize
    [all...]
ScalarEvolution.cpp     [all...]
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]
  /external/clang/lib/AST/
Type.cpp 80 uint64_t ElementSize = Context.getTypeSizeInChars(ElementType).getQuantity();
88 if (llvm::isPowerOf2_64(ElementSize)) {
89 return NumElements.getActiveBits() + llvm::Log2_64(ElementSize);
94 if ((ElementSize >> 32) == 0 && NumElements.getBitWidth() <= 64 &&
96 uint64_t TotalSize = NumElements.getZExtValue() * ElementSize;
106 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize));
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 224 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementTy);
231 SrcAddr.getAlignment().alignmentOfArrayElement(ElementSize));
238 DestAddr.getAlignment().alignmentOfArrayElement(ElementSize));
288 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy);
295 DestAddr.getAlignment().alignmentOfArrayElement(ElementSize));
    [all...]
CGExprCXX.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 542 // N = N + Idx * ElementSize;
543 uint64_t ElementSize = DL.getTypeAllocSize(Ty);
550 if (ElementSize != 1) {
551 IdxN = fastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]

Completed in 746 milliseconds

1 2