Searched refs:tableSize (Results 1 - 25 of 61) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontPlatformDataSkia.cpp80 const size_t tableSize = m_typeface->getTableSize(tag); local
81 if (tableSize) {
82 Vector<char> tableBuffer(tableSize);
83 m_typeface->getTableData(tag, 0, tableSize, &tableBuffer[0]);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBloomFilter.h42 static const size_t tableSize = 1 << keyBits; member in class:WTF::BloomFilter
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/
H A Dlldb_webkit.py69 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()
294 def tableSize(self): member in class:WTFHashTableProvider
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMException.cpp86 size_t tableSize = WTF_ARRAY_LENGTH(coreExceptions); local
89 return tableIndex < tableSize ? &coreExceptions[tableIndex] : 0;
/external/aac/libMpegTPDec/include/
H A Dtp_data.h312 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local
314 for (sf_index=0; sf_index<tableSize; sf_index++) {
318 if (sf_index>tableSize-1) {
319 return tableSize-1;
/external/aac/libMpegTPEnc/include/
H A Dtp_data.h312 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local
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/icu/source/common/
H A Ducol_data.h77 uint32_t tableSize; member in struct:__anon12005
H A Ducol_swp.cpp447 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Dxmlconfig.h76 GLuint tableSize; member in struct:driOptionCache
H A Dxmlconfig.c111 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;
/external/icu/icu4c/source/common/
H A Ducol_data.h77 uint32_t tableSize; member in struct:__anon21793
H A Ducol_swp.cpp669 header.tableSize= ds->readUInt32(inHeader->tableSize);
677 /* swap the inverse table; tableSize counts uint32_t[3] rows */
678 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4,
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dxmlconfig.h76 GLuint tableSize; member in struct:driOptionCache
H A Dxmlconfig.c111 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;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzFaceSkia.cpp199 const size_t tableSize = typeface->getTableSize(tag); local
200 if (!tableSize)
203 char* buffer = reinterpret_cast<char*>(fastMalloc(tableSize));
206 size_t actualSize = typeface->getTableData(tag, 0, tableSize, buffer);
207 if (tableSize != actualSize) {
212 return hb_blob_create(const_cast<char*>(buffer), tableSize, HB_MEMORY_MODE_WRITABLE, buffer, fastFree);
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableMap.java52 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;
H A DImmutableSet.java161 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/
H A DSDL_macwm.c91 short tableSize, dataWidth; local
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; local
291 tableSize = sizeof (GammaTbl) + (channels * entries * dataWidth);
292 pTableGammaOut = (GammaTblPtr) NewPtrClear (tableSize); /* allocate new tabel */
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java200 int tableSize = table.size();
201 for (int i = 0; i < tableSize; i++) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java154 private void verifyTableSize(int inputSize, int setSize, int tableSize) { argument
162 tableSize, ((RegularImmutableSet<Integer>) set).table.length);
/external/libpcap/msdos/
H A Dndis2.h238 WORD tableSize; member in struct:_CommonChars
290 WORD tableSize; member in struct:_MacChars
332 WORD tableSize; member in struct:_MacStatusTable
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzVideo.m1644 const uint32_t tableSize = 255;
1645 CGGammaValue redTable[tableSize];
1646 CGGammaValue greenTable[tableSize];
1647 CGGammaValue blueTable[tableSize];
1662 (display_id, tableSize, redTable, greenTable, blueTable) )
1670 const uint32_t tableSize = 255;
1671 CGGammaValue redTable[tableSize];
1672 CGGammaValue greenTable[tableSize];
1673 CGGammaValue blueTable[tableSize];
1678 (display_id, tableSize, redTabl
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java1486 int bytecodeSize = 5 + (3 - (orgPos & 3)) + tableSize();
1502 abstract int tableSize(); method in class:CodeIterator.Switcher
1545 int tableSize() { return 8 + 4 * offsets.length; } method in class:CodeIterator.Table
1569 int tableSize() { return 4 + 8 * matches.length; } method in class:CodeIterator.Lookup
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp622 const unsigned int tableSize = 16384;
624 "[" << tableSize << "] = {\n";
627 for (unsigned index = 0; index < tableSize; ++index) {
721 if (index < tableSize - 1)
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_mac.cpp1686 size_t tableSize = this->getTableSize(tableTags[tableIndex]); local
1687 totalSize += (tableSize + 3) & ~3;
1688 *tableSizes.append() = tableSize;
1720 size_t tableSize = tableSizes[tableIndex]; local
1721 this->getTableData(tableTags[tableIndex], 0, tableSize, dataPtr);
1724 tableSize));
1726 entry->logicalLength = SkEndian_SwapBE32(SkToU32(tableSize));
1728 dataPtr += (tableSize + 3) & ~3;

Completed in 1120 milliseconds

123