HomeSort by relevance Sort by last modified time
    Searched defs:numWords (Results 1 - 8 of 8) sorted by null

  /external/srec/srec/include/
ann_util.h 38 int numWords;
  /external/llvm/lib/Support/
APInt.cpp 34 inline static uint64_t* getClearedMemory(unsigned numWords) {
35 uint64_t * result = new uint64_t[numWords];
37 memset(result, 0, numWords * sizeof(uint64_t));
43 inline static uint64_t* getMemory(unsigned numWords) {
44 uint64_t * result = new uint64_t[numWords];
112 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[])
114 initFromArray(makeArrayRef(bigVal, numWords));
174 unsigned NumWords = getNumWords();
175 for (unsigned i = 0; i < NumWords; ++i)
404 unsigned numWords = getNumWords()
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 410 size_t numWords = (offset / 4) - 1;
411 data[2] = numWords >> 8;
412 data[3] = numWords & 0xff;
MyTransmitter.h 969 size_t numWords = (offset / 4) - 1;
970 data[2] = numWords >> 8;
971 data[3] = numWords & 0xff;
MyHandler.h 303 size_t numWords = (offset / 4) - 1;
304 data[2] = numWords >> 8;
305 data[3] = numWords & 0xff;
    [all...]
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp 97 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1);
98 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
99 std::vector<deUint32> mask (numWords);
101 for (int ndx = 0; ndx < numWords - 1; ++ndx)
104 mask[numWords - 1] = (deUint32)((1ULL << topWordBits) - (deUint32)1);
    [all...]
es31fTextureMultisampleTests.cpp 97 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1);
98 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
99 std::vector<deUint32> mask (numWords);
101 for (int ndx = 0; ndx < numWords - 1; ++ndx)
104 mask[numWords - 1] = (deUint32)((1ULL << topWordBits) - (deUint32)1);
114 const int numWords = getEffectiveSampleMaskWordCount(nthBit);
115 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
116 std::vector<deUint32> mask (numWords);
118 for (int ndx = 0; ndx < numWords - 1; ++ndx)
121 mask[numWords - 1] = (deUint32)(1ULL << topWordBits)
    [all...]
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 761 int numWords = 1;
766 numWords ++;
770 if (numWords == 1) {
777 char * words[numWords];
799 for (i=0 ; i < numWords ; i++) {
    [all...]

Completed in 459 milliseconds