HomeSort by relevance Sort by last modified time
    Searched refs:tableSize (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontPlatformDataSkia.cpp 69 const size_t tableSize = m_typeface->getTableSize(tag);
70 if (tableSize) {
71 Vector<char> tableBuffer(tableSize);
72 m_typeface->getTableData(tag, 0, tableSize, &tableBuffer[0]);
  /bootable/recovery/minzip/
Hash.c 61 pHashTable->tableSize = roundUpPower2(initialSize);
65 (HashEntry*) calloc((size_t)pHashTable->tableSize, sizeof(HashTable));
83 for (i = 0; i < pHashTable->tableSize; i++, pEnt++) {
119 for (count = i = 0; i < pHashTable->tableSize; i++) {
149 for (i = 0; i < pHashTable->tableSize; i++) {
167 pHashTable->tableSize = newSize;
186 assert(pHashTable->tableSize > 0);
191 pEntry = &pHashTable->pEntries[itemHash & (pHashTable->tableSize-1)];
192 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
205 if (pHashTable->tableSize == 1
    [all...]
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/chromium_org/third_party/WebKit/Source/wtf/
BloomFilter.h 42 static const size_t tableSize = 1 << keyBits;
79 uint8_t m_table[tableSize];
110 memset(m_table, 0, tableSize);
117 for (size_t n = 0; n < tableSize; ++n) {
127 for (size_t n = 0; n < tableSize; ++n) {
  /external/chromium_org/third_party/WebKit/Tools/lldb/
lldb_webkit.py 69 return "{ tableSize = %d, keyCount = %d }" % (provider.tableSize(), provider.keyCount())
261 return self.tableSize() + 5
265 return self.tableSize()
267 return self.tableSize() + 1
269 return self.tableSize() + 2
271 return self.tableSize() + 3
273 return self.tableSize() + 4
278 if index == self.tableSize():
280 elif index == self.tableSize() + 1
    [all...]
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 142 const size_t tableSize = typeface->getTableSize(tag);
143 if (!tableSize)
146 char* buffer = reinterpret_cast<char*>(malloc(tableSize));
149 size_t actualSize = typeface->getTableData(tag, 0, tableSize, buffer);
150 if (tableSize != actualSize) {
155 return hb_blob_create(const_cast<char*>(buffer), tableSize,
MinikinSkia.cpp 83 const size_t tableSize = mTypeface->getTableSize(tag);
84 *size = tableSize;
85 return tableSize != 0;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.cpp 86 size_t tableSize = WTF_ARRAY_LENGTH(coreExceptions);
89 return tableIndex < tableSize ? &coreExceptions[tableIndex] : 0;
  /frameworks/minikin/sample/
MinikinSkia.cpp 63 const size_t tableSize = mTypeface->getTableSize(tag);
64 *size = tableSize;
65 return tableSize != 0;
  /external/aac/libMpegTPDec/include/
tp_data.h 312 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT);
314 for (sf_index=0; sf_index<tableSize; sf_index++) {
318 if (sf_index>tableSize-1) {
319 return tableSize-1;
  /external/aac/libMpegTPEnc/include/
tp_data.h 312 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT);
314 for (sf_index=0; sf_index<tableSize; sf_index++) {
318 if (sf_index>tableSize-1) {
319 return tableSize-1;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.h 76 GLuint tableSize;
xmlconfig.c 111 GLuint size = 1 << cache->tableSize, mask = size - 1;
119 hash = (hash >> (16-cache->tableSize/2)) & mask;
137 GLuint size = 1 << cache->tableSize;
704 info->tableSize = log2size;
897 cache->tableSize = info->tableSize;
898 cache->values = MALLOC ((1<<info->tableSize) * sizeof (driOptionValue));
904 (1<<info->tableSize) * sizeof (driOptionValue));
999 GLuint i, size = 1 << info->tableSize;
    [all...]
  /external/icu/icu4c/source/common/
ucol_data.h 77 uint32_t tableSize;
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.h 76 GLuint tableSize;
xmlconfig.c 111 GLuint size = 1 << cache->tableSize, mask = size - 1;
119 hash = (hash >> (16-cache->tableSize/2)) & mask;
137 GLuint size = 1 << cache->tableSize;
704 info->tableSize = log2size;
897 cache->tableSize = info->tableSize;
898 cache->values = MALLOC ((1<<info->tableSize) * sizeof (driOptionValue));
904 (1<<info->tableSize) * sizeof (driOptionValue));
999 GLuint i, size = 1 << info->tableSize;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzFaceSkia.cpp 195 const size_t tableSize = typeface->getTableSize(tag);
196 if (!tableSize)
199 char* buffer = reinterpret_cast<char*>(fastMalloc(tableSize));
202 size_t actualSize = typeface->getTableData(tag, 0, tableSize, buffer);
203 if (tableSize != actualSize) {
208 return hb_blob_create(const_cast<char*>(buffer), tableSize, HB_MEMORY_MODE_WRITABLE, buffer, fastFree);
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableMap.java 52 int tableSize = chooseTableSize(size);
53 table = createEntryArray(tableSize);
54 mask = tableSize - 1;
81 int tableSize = Integer.highestOneBit(size) << 1;
82 checkArgument(tableSize > 0, "table too large: %s", size);
83 return tableSize;
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/qemu/distrib/sdl-1.2.15/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 */
  /cts/libs/deviceutil/src/android/cts/util/
ReadElf.java 372 long tableOffset, long tableSize) throws IOException {
375 while (mFile.getFilePointer() < tableOffset + tableSize) {
411 private String readStrTabEntry(long tableOffset, long tableSize, long strOffset)
413 if (tableOffset == 0 || strOffset < 0 || strOffset >= tableSize) {
  /frameworks/minikin/libs/minikin/
CmapCoverage.cpp 162 const size_t tableSize = cmap_size - offset;
164 success = getCoverageFormat4(coverageVec, tableData, tableSize);
166 success = getCoverageFormat12(coverageVec, tableData, tableSize);
  /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 199 int tableSize = table.size();
200 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++) {

Completed in 658 milliseconds

1 2 3 4