/external/srec/srec/ca/ |
ann_api.c | 128 if (hAnnotation->data->numWords > 0) 134 return (hAnnotation->data->numWords); 159 if (hAnnotation->data->numWords > 0) 164 return (hAnnotation->data->numWords); 300 return (hAnnotation->data->numWords); 469 for (ii = 0; ii < hAnnotation->data->numWords; ii++) 492 if (hAnnotation->data->numWords > 0) 501 ASSERT(hAnnotation->data->numWords > 0); 502 return (hAnnotation->data->numWords); 533 if ((id < 0) || (id >= hAnnotation->data->numWords)) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
FixedLogBuffer.java | 121 * Remove LogUnits from the front of the LogBuffer until {@code numWords} have been removed. 123 * If there are less than {@code numWords} in the buffer, shifts out all {@code LogUnit}s. 125 * @param numWords the minimum number of words in {@link LogUnit}s to shift out 128 protected int shiftOutWords(final int numWords) { 134 } while (numWordsShiftedOut < numWords);
|
MainLogBuffer.java | 254 final int numWords = logUnit.getNumWords(); 255 if (numWords > 0) { 256 mNumWordsUntilSafeToSample = Math.max(0, mNumWordsUntilSafeToSample - numWords); 279 protected int shiftOutWords(final int numWords) { 280 final int numWordsShiftedOut = super.shiftOutWords(numWords);
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
BitVector.cpp | 97 size_t newNumWords = newOutOfLineBits->numWords(); 104 size_t oldNumWords = outOfLineBits()->numWords(); 108 memcpy(newOutOfLineBits->bits(), outOfLineBits()->bits(), newOutOfLineBits->numWords() * sizeof(void*));
|
BitVector.h | 200 size_t numWords() const { return (m_numBits + bitsInPointer() - 1) / bitsInPointer(); }
|
/external/srec/srec/include/ |
ann_util.h | 38 int numWords;
|
/external/clang/lib/AST/ |
TemplateBase.cpp | 64 unsigned NumWords = Value.getNumWords(); 65 if (NumWords > 1) { 66 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t)); 67 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t));
|
Expr.cpp | 630 unsigned NumWords = Val.getNumWords(); 632 if (NumWords > 1) { 633 pVal = new (C) uint64_t[NumWords]; 634 std::copy(Words, Words + NumWords, pVal); 635 } else if (NumWords == 1) [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 33 inline static uint64_t* getClearedMemory(unsigned numWords) { 34 uint64_t * result = new uint64_t[numWords]; 36 memset(result, 0, numWords * sizeof(uint64_t)); 42 inline static uint64_t* getMemory(unsigned numWords) { 43 uint64_t * result = new uint64_t[numWords]; 111 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) 113 initFromArray(makeArrayRef(bigVal, numWords)); 173 unsigned NumWords = getNumWords(); 174 for (unsigned i = 0; i < NumWords; ++i) 403 unsigned numWords = getNumWords() [all...] |
/external/chromium/chrome/browser/history/ |
query_parser_unittest.cc | 74 TEST_F(QueryParserTest, NumWords) {
|
/external/chromium_org/chrome/browser/history/ |
query_parser_unittest.cc | 74 TEST_F(QueryParserTest, NumWords) {
|
/external/llvm/tools/llvm-bcanalyzer/ |
llvm-bcanalyzer.cpp | 344 unsigned NumWords = 0; 345 if (Stream.EnterSubBlock(BlockID, &NumWords)) 359 outs() << " NumWords=" << NumWords
|
/external/llvm/lib/Bitcode/Reader/ |
BitstreamReader.cpp | 75 unsigned NumWords = Read(bitc::BlockSizeWidth); 76 if (NumWordsP) *NumWordsP = NumWords;
|
/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 | 291 size_t numWords = (offset / 4) - 1; 292 data[2] = numWords >> 8; 293 data[3] = numWords & 0xff; [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...] |
/external/clang/include/clang/AST/ |
TemplateBase.h | 278 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); 279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
|
Expr.h | [all...] |
/external/llvm/include/llvm/ADT/ |
BitVector.h | 554 void init_words(BitWord *B, unsigned NumWords, bool t) { 555 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
|
APInt.h | 255 /// Equivalent to APInt(numBits, ArrayRef<uint64_t>(bigVal, numWords)), but 262 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]); [all...] |
/external/srec/tools/test_g2g/ |
test_g2g.c | 241 pfprintf(PSTDOUT, "%s failed 'cuz numwords(%d) < %d\n", base,
|
/dalvik/vm/interp/ |
Jit.cpp | 176 int numWords) 179 for (i = 0; i < numWords; i++) { [all...] |
/external/llvm/lib/IR/ |
Core.cpp | 633 unsigned NumWords, 638 makeArrayRef(Words, NumWords)))); [all...] |
/external/llvm/include/llvm-c/ |
Core.h | [all...] |