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

1 2 3 4 5

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p9.cpp 10 const unsigned NumElements = 17;
14 int array[NumElements];
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
EdgeProfiling.c 20 static unsigned NumElements;
31 write_profiling_data(EdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
42 NumElements = numElements;
OptimalEdgeProfiling.c 20 static unsigned NumElements;
31 write_profiling_data(OptEdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
42 NumElements = numElements;
Profiling.h 34 unsigned NumElements);
CommonProfiling.c 129 unsigned NumElements) {
136 write(outFile, &NumElements, sizeof(unsigned)) < 0 ||
137 write(outFile, Start, NumElements*sizeof(unsigned)) < 0 ) {
  /external/llvm/include/llvm/CodeGen/
MachineValueType.h 588 static MVT getVectorVT(MVT VT, unsigned NumElements) {
593 if (NumElements == 2) return MVT::v2i1;
594 if (NumElements == 4) return MVT::v4i1;
595 if (NumElements == 8) return MVT::v8i1;
596 if (NumElements == 16) return MVT::v16i1;
597 if (NumElements == 32) return MVT::v32i1;
598 if (NumElements == 64) return MVT::v64i1;
599 if (NumElements == 512) return MVT::v512i1;
600 if (NumElements == 1024) return MVT::v1024i1;
603 if (NumElements == 1) return MVT::v1i8
    [all...]
ValueTypes.h 68 /// getVectorVT - Returns the EVT that represents a vector NumElements in
70 static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements) {
71 MVT M = MVT::getVectorVT(VT.V, NumElements);
74 return getExtendedVectorVT(Context, VT, NumElements);
372 unsigned NumElements);
  /external/swiftshader/third_party/LLVM/lib/Support/
SmallPtrSet.cpp 26 CurArraySize = NumElements > 16 ? 1 << (Log2_32_Ceil(NumElements) + 1) : 32;
27 NumElements = NumTombstones = 0;
42 for (const void **APtr = SmallArray, **E = SmallArray+NumElements;
48 if (NumElements < CurArraySize-1) {
49 SmallArray[NumElements++] = Ptr;
55 if (NumElements*4 >= CurArraySize*3) {
58 } else if (CurArraySize-(NumElements+NumTombstones) < CurArraySize/8) {
72 ++NumElements; // Track density.
79 for (const void **APtr = SmallArray, **E = SmallArray+NumElements;
    [all...]
  /external/llvm/lib/Target/X86/
X86ShuffleDecodeConstantPool.cpp 130 unsigned NumElements = MaskTySize / ElSize;
131 assert((NumElements == 2 || NumElements == 4 || NumElements == 8 ||
132 NumElements == 16) &&
134 ShuffleMask.reserve(NumElements);
138 for (unsigned i = 0; i < NumElements; ++i) {
183 unsigned NumElements = MaskTySize / ElSize;
184 assert((NumElements == 2 || NumElements == 4 || NumElements == 8) &
    [all...]
X86TargetObjectFile.cpp 121 unsigned NumElements;
123 NumElements = Ty->getVectorNumElements();
125 NumElements = Ty->getArrayNumElements();
127 for (int I = NumElements - 1, E = -1; I != E; --I)
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ValueTypes.h 334 static MVT getVectorVT(MVT VT, unsigned NumElements) {
339 if (NumElements == 2) return MVT::v2i8;
340 if (NumElements == 4) return MVT::v4i8;
341 if (NumElements == 8) return MVT::v8i8;
342 if (NumElements == 16) return MVT::v16i8;
343 if (NumElements == 32) return MVT::v32i8;
346 if (NumElements == 2) return MVT::v2i16;
347 if (NumElements == 4) return MVT::v4i16;
348 if (NumElements == 8) return MVT::v8i16;
349 if (NumElements == 16) return MVT::v16i16
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 58 DefinedOrUnknownSVal NumElements
62 ProgramStateRef StInBound = state->assumeInBound(Idx, NumElements, true);
63 ProgramStateRef StOutBound = state->assumeInBound(Idx, NumElements, false);
ReturnPointerRangeChecker.cpp 58 DefinedOrUnknownSVal NumElements
62 ProgramStateRef StInBound = state->assumeInBound(Idx, NumElements, true);
63 ProgramStateRef StOutBound = state->assumeInBound(Idx, NumElements, false);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
TGValueTypes.cpp 46 unsigned NumElements;
49 : ElementType(elty), NumElements(num) {}
57 return NumElements;
  /device/linaro/bootloader/edk2/StdLib/LibC/Containers/Queues/
Fifo.c 7 Member variable NumElements is the maximum number of elements that can be
9 If NumElements is ZERO, there is an error.
10 NumElements should be in the range 1:N.
13 FIFO. They should be in the range 0:(NumElements - 1).
16 the capacity of a FIFO is actually NumElements-1.
68 Count = Self->NumElements - (Self->ReadIndex - Self->WriteIndex);
105 Count = (Self->NumElements - (WDex - RDex)) - 1;
143 RetVal = (ssize_t)ModuloAdd(Self->ReadIndex, (UINT32)NumElem, Self->NumElements);
186 return (BOOLEAN)(ModuloIncrement(Self->WriteIndex, Self->NumElements) == (INT32)Self->ReadIndex);
237 Windex = (UINT32)ModuloIncrement(Windex, Self->NumElements); // Increment the Write index, wrap if necessary
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamReader.h 57 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) {
59 if (NumElements == 0) {
64 if (NumElements > UINT32_MAX/sizeof(T))
67 if (auto EC = readBytes(Bytes, NumElements * sizeof(T)))
69 Array = ArrayRef<T>(reinterpret_cast<const T *>(Bytes.data()), NumElements);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallPtrSet.h 61 unsigned NumElements;
79 unsigned size() const { return NumElements; }
84 if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32)
89 NumElements = 0;
116 *const *E = SmallArray+NumElements; APtr != E; ++APtr)
  /external/swiftshader/third_party/LLVM/include/llvm/
DerivedTypes.h 333 uint64_t NumElements;
342 static ArrayType *get(Type *ElementType, uint64_t NumElements);
348 uint64_t getNumElements() const { return NumElements; }
360 unsigned NumElements;
369 static VectorType *get(Type *ElementType, unsigned NumElements);
408 unsigned getNumElements() const { return NumElements; }
412 return NumElements * getElementType()->getPrimitiveSizeInBits();
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 32 @param[in] NumElements Number of elements to be contained in the new FIFO.
38 cFIFO * EFIAPI New_cFIFO(UINT32 NumElements, size_t ElementSize);
202 UINT32 NumElements; ///< Number of elements the FIFO can store.
  /external/clang/lib/AST/
ExprObjC.cpp 24 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method) {
47 unsigned NumElements) {
49 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(NumElements));
50 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
59 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
64 for (unsigned I = 0; I < NumElements; I++) {
99 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements,
102 NumElements, HasPackExpansions ? NumElements : 0));
104 ObjCDictionaryLiteral(EmptyShell(), NumElements, HasPackExpansions)
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 339 uint64_t NumElements;
347 static ArrayType *get(Type *ElementType, uint64_t NumElements);
352 uint64_t getNumElements() const { return NumElements; }
366 unsigned NumElements;
374 static VectorType *get(Type *ElementType, unsigned NumElements);
424 unsigned getNumElements() const { return NumElements; }
429 return NumElements * getElementType()->getPrimitiveSizeInBits();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpsapi.h 66 DWORD NumElements;
120 DWORD NumElements;
125 DWORD NumElements;
162 DWORD NumElements;
265 DWORD NumElements;
301 DWORD NumElements;
320 DWORD NumElements;
351 DWORD NumElements;
  /external/clang/include/clang/AST/
ExprObjC.h 147 unsigned NumElements;
155 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements)
156 : Expr(ObjCArrayLiteralClass, Empty), NumElements(NumElements) {}
165 unsigned NumElements);
184 unsigned getNumElements() const { return NumElements; }
188 assert((Index < NumElements) && "Arg access out of range!");
192 assert((Index < NumElements) && "Arg access out of range!");
203 reinterpret_cast<Stmt **>(getElements()) + NumElements);
263 unsigned NumElements : 31
    [all...]
  /external/llvm/lib/IR/
Type.cpp 93 unsigned NumElements = ATy->getNumElements();
94 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
98 unsigned NumElements = STy->getNumElements();
99 for (unsigned i = 0; i < NumElements; ++i)
605 NumElements = NumEl;
608 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) {
613 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
616 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
632 NumElements = NumEl;
635 VectorType *VectorType::get(Type *ElementType, unsigned NumElements) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 116 unsigned NumElements = ATy->getNumElements();
117 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
122 unsigned NumElements = STy->getNumElements();
123 for (unsigned i = 0; i < NumElements; ++i)
620 NumElements = NumEl;
624 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
630 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
633 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
648 NumElements = NumEl;
651 VectorType *VectorType::get(Type *elementType, unsigned NumElements) {
    [all...]

Completed in 1015 milliseconds

1 2 3 4 5