/external/bison/src/ |
uniqstr.c | 119 hash_uniqstr (void const *m, size_t tablesize) 121 return hash_string (m, tablesize);
|
symtab.c | 611 hash_symbol (const symbol *m, size_t tablesize) 614 return ((uintptr_t) m->tag) % tablesize; 618 hash_semantic_type (const semantic_type *m, size_t tablesize) 621 return ((uintptr_t) m->tag) % tablesize; 625 hash_symbol_hasher (void const *m, size_t tablesize) 627 return hash_symbol (m, tablesize); 631 hash_semantic_type_hasher (void const *m, size_t tablesize) 633 return hash_semantic_type (m, tablesize);
|
state.c | 331 state_hash (state const *s, size_t tablesize) 338 return key % tablesize; 342 state_hasher (void const *s, size_t tablesize) 344 return state_hash (s, tablesize);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSetTest.java | 154 private void verifyTableSize(int inputSize, int setSize, int tableSize) { 162 tableSize, ((RegularImmutableSet<Integer>) set).table.length);
|
/external/icu4c/common/ |
ucol_data.h | 77 uint32_t tableSize;
|
ucol_swp.cpp | 447 header.tableSize= ds->readUInt32(inHeader->tableSize); 455 /* swap the inverse table; tableSize counts uint32_t[3] rows */ 456 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4,
|
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/ |
SDL_QuartzVideo.m | [all...] |
/dalvik/vm/analysis/ |
DexVerify.cpp | 351 u4 valueCount, valueWidth, tableSize; 380 tableSize = 4 + (valueWidth * valueCount + 1) / 2; 383 if (curOffset + offsetToArrayData + tableSize > insnCount) { 387 curOffset + offsetToArrayData + tableSize, insnCount); 609 u4 switchCount, tableSize; 650 tableSize = offsetToTargets + switchCount*2; 659 if (curOffset + offsetToSwitch + tableSize > (u4) insnCount) { 662 curOffset, offsetToSwitch, curOffset + offsetToSwitch + tableSize, [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/ |
AACEncoder.cpp | 101 const int32_t tableSize = sizeof(kSampleRateTable) / sizeof(kSampleRateTable[0]); 102 for (int32_t i = 0; i < tableSize; ++i) {
|
SoftAACEncoder.cpp | 342 const int32_t tableSize = 345 for (int32_t i = 0; i < tableSize; ++i) {
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
CatchStructs.java | 202 int tableSize = table.size(); 203 for (int i = 0; i < tableSize; i++) {
|
/dalvik/dx/src/com/android/dx/dex/file/ |
CatchStructs.java | 200 int tableSize = table.size(); 201 for (int i = 0; i < tableSize; i++) {
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
CatchStructs.java | 200 int tableSize = table.size(); 201 for (int i = 0; i < tableSize; i++) {
|
/frameworks/av/media/libstagefright/ |
AACWriter.cpp | 215 const int tableSize = 219 for (int index = 0; index < tableSize; ++index) {
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSet.java | 161 int tableSize = chooseTableSize(elements.length); 162 Object[] table = new Object[tableSize]; 163 int mask = tableSize - 1; 201 } else if (tableSize > 2 * chooseTableSize(uniqueElements.length)) {
|
/external/llvm/lib/Transforms/Instrumentation/ |
GCOVProfiling.cpp | 599 size_t TableSize = Succs.size() * Preds.size(); 601 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize); 603 OwningArrayPtr<Constant *> EdgeTable(new Constant*[TableSize]); 605 for (size_t i = 0; i != TableSize; ++i) 625 ArrayRef<Constant*> V(&EdgeTable[0], TableSize);
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |
/cts/tests/tests/security/src/android/security/cts/ |
ReadElf.java | 372 private String readStrTabEntry(long tableOffset, long tableSize, long strOffset) 374 if ((tableOffset == 0) || (strOffset < 0) || (strOffset >= tableSize)) {
|
/external/skia/legacy/src/ports/ |
SkFontHost_mac_coretext.cpp | [all...] |
/external/skia/src/ports/ |
SkFontHost_mac_coretext.cpp | [all...] |
/dalvik/vm/alloc/ |
Visit.cpp | 42 for (int i = 0; i < table->tableSize; ++i) {
|
/external/javassist/src/main/javassist/bytecode/ |
CodeIterator.java | [all...] |
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGISel.h | 237 unsigned TableSize);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/scsi/ |
sg.h | 164 /* Yields max scatter gather tablesize allowed by current host adapter */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/scsi/ |
sg.h | 164 /* Yields max scatter gather tablesize allowed by current host adapter */
|