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

  /bootable/recovery/minzip/
Hash.h 62 int tableSize; /* must be power of 2 */
108 return sizeof(HashTable) + pHashTable->tableSize * sizeof(HashEntry);
154 int lim = pIter->pHashTable->tableSize;
168 return (pIter->idx >= pIter->pHashTable->tableSize);
171 assert(pIter->idx >= 0 && pIter->idx < pIter->pHashTable->tableSize);
  /external/webkit/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 213 const size_t tableSize = SkFontHost::GetTableSize(font->uniqueID(), tag);
214 if (!tableSize)
218 *len = tableSize;
222 if (*len < tableSize)
224 SkFontHost::GetTableData(font->uniqueID(), tag, 0, tableSize, buffer);
  /external/webkit/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp 175 const int tableSize = sizeof(hardwareCodeToGDKKeyval) / sizeof(hardwareCodeToGDKKeyval[0]);
176 if (event->hardware_keycode < tableSize) {
  /dalvik/vm/
Hash.h 74 int tableSize; /* must be power of 2 */
132 return sizeof(HashTable) + pHashTable->tableSize * sizeof(HashEntry);
189 int lim = pIter->pHashTable->tableSize;
203 return (pIter->idx >= pIter->pHashTable->tableSize);
206 assert(pIter->idx >= 0 && pIter->idx < pIter->pHashTable->tableSize);
  /dalvik/vm/analysis/
DexVerify.c 235 int valueCount, valueWidth, tableSize;
265 tableSize = 4 + (valueWidth * valueCount + 1) / 2;
268 if (curOffset + offsetToArrayData + tableSize > insnCount) {
273 curOffset + offsetToArrayData + tableSize,
VerifySubs.c 183 u4 switchCount, tableSize;
225 tableSize = offsetToTargets + switchCount*2;
235 if (curOffset + offsetToSwitch + tableSize > (u4) insnCount) {
238 curOffset, offsetToSwitch, curOffset + offsetToSwitch + tableSize,
  /frameworks/base/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 99 const int32_t tableSize = sizeof(kSampleRateTable) / sizeof(kSampleRateTable[0]);
100 for (int32_t i = 0; i < tableSize; ++i) {
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 202 int tableSize = table.size();
203 for (int i = 0; i < tableSize; i++) {
  /external/chromium/third_party/icu/public/common/unicode/
utext.h     [all...]
  /external/guava/src/com/google/common/collect/
ImmutableSet.java 255 int tableSize = Hashing.chooseTableSize(count);
256 Object[] table = new Object[tableSize];
257 int mask = tableSize - 1;
283 } else if (tableSize > Hashing.chooseTableSize(elements.size())) {
RegularImmutableMap.java 47 int tableSize = Hashing.chooseTableSize(immutableEntries.length);
48 table = new Object[tableSize * 2];
49 mask = tableSize - 1;
  /external/icu4c/common/unicode/
utext.h     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macwm.c 91 short tableSize, dataWidth;
96 tableSize = sizeof (GammaTbl) + pTableGammaIn->gFormulaSize +
98 pTableGammaOut = (GammaTblPtr) NewPtr (tableSize); /* allocate new table */
100 BlockMove( (Ptr)pTableGammaIn, (Ptr)pTableGammaOut, tableSize); /* move everything */
288 short tableSize, dataWidth;
291 tableSize = sizeof (GammaTbl) + (channels * entries * dataWidth);
292 pTableGammaOut = (GammaTblPtr) NewPtrClear (tableSize); /* allocate new tabel */
  /external/chromium/third_party/icu/source/i18n/
ucol_imp.h 151 * uint32_t tableSize; - length of inverse table (number of uint32_t[3] rows)
    [all...]
  /external/icu4c/i18n/
ucol_imp.h 155 * uint32_t tableSize; - length of inverse table (number of uint32_t[3] rows)
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 339 milliseconds