Searched defs:numWords (Results 1 - 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPInt.cpp32 inline static uint64_t* getClearedMemory(unsigned numWords) { argument
33 uint64_t * result = new uint64_t[numWords];
35 memset(result, 0, numWords * sizeof(uint64_t));
41 inline static uint64_t* getMemory(unsigned numWords) { argument
42 uint64_t * result = new uint64_t[numWords];
110 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
112 initFromArray(makeArrayRef(bigVal, numWords));
402 unsigned numWords = getNumWords(); local
403 for (unsigned i = 0; i < numWords; ++i)
414 unsigned numWords local
427 unsigned numWords = getNumWords(); local
434 unsigned numWords = getNumWords(); local
442 unsigned numWords = getNumWords(); local
450 unsigned numWords = getNumWords(); local
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTDecompress.cpp490 @Input numWords Total number of PVRTCWords in the current surface.
495 static unsigned int wrapWordIndex(unsigned int numWords, int word) argument
497 return ((word + numWords) % numWords);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.cpp172 const size_t numWords = strLen/4 + 1; // Must always end up with at least one 0 byte local
173 vector<deUint32> words (numWords, 0u);
251 void addToSparseIndex (SparseIndexNode* group, const deUint32* words, size_t numWords, deUint32 index) argument
265 DE_ASSERT(numWords > 1 || !child);
270 group->children.push_back(new SparseIndexNode(curWord, numWords == 1 ? index : 0));
275 if (numWords > 1)
276 addToSparseIndex(child, words+1, numWords-1, index);
/external/deqp/modules/gles31/functional/
H A Des31fMultisampleTests.cpp101 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1); local
102 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
103 std::vector<deUint32> mask (numWords);
105 for (int ndx = 0; ndx < numWords - 1; ++ndx)
108 mask[numWords - 1] = deBitMask32(0, (int)topWordBits);
H A Des31fTextureMultisampleTests.cpp98 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1); local
99 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
100 std::vector<deUint32> mask (numWords);
102 for (int ndx = 0; ndx < numWords - 1; ++ndx)
105 mask[numWords - 1] = (deUint32)((1ULL << topWordBits) - (deUint32)1);
115 const int numWords = getEffectiveSampleMaskWordCount(nthBit); local
116 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
117 std::vector<deUint32> mask (numWords);
119 for (int ndx = 0; ndx < numWords - 1; ++ndx)
122 mask[numWords
[all...]
/external/llvm/lib/Support/
H A DAPInt.cpp35 inline static uint64_t* getClearedMemory(unsigned numWords) { argument
36 uint64_t * result = new uint64_t[numWords];
38 memset(result, 0, numWords * sizeof(uint64_t));
44 inline static uint64_t* getMemory(unsigned numWords) { argument
45 uint64_t * result = new uint64_t[numWords];
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
115 initFromArray(makeArrayRef(bigVal, numWords));
405 unsigned numWords = getNumWords(); local
406 for (unsigned i = 0; i < numWords; ++i)
417 unsigned numWords local
430 unsigned numWords = getNumWords(); local
437 unsigned numWords = getNumWords(); local
445 unsigned numWords = getNumWords(); local
453 unsigned numWords = getNumWords(); local
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp35 inline static uint64_t* getClearedMemory(unsigned numWords) { argument
36 uint64_t * result = new uint64_t[numWords];
38 memset(result, 0, numWords * sizeof(uint64_t));
44 inline static uint64_t* getMemory(unsigned numWords) { argument
45 uint64_t * result = new uint64_t[numWords];
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
115 initFromArray(makeArrayRef(bigVal, numWords));
421 unsigned numWords = getNumWords(); local
422 for (unsigned i = 0; i < numWords; ++i)
433 unsigned numWords local
446 unsigned numWords = getNumWords(); local
453 unsigned numWords = getNumWords(); local
461 unsigned numWords = getNumWords(); local
469 unsigned numWords = getNumWords(); local
[all...]

Completed in 277 milliseconds