/external/webkit/Source/WebCore/platform/graphics/mac/ |
H A D | SimpleFontDataATSUI.mm | 63 ByteCount tableSize; 64 OSStatus status = ATSFontGetTable(fontID, tables[i], 0, 0, 0, &tableSize);
|
H A D | SimpleFontDataMac.mm | 303 ByteCount tableSize; 304 if (ATSFontGetTable(atsFont, tableName, 0, 0, NULL, &tableSize) != noErr) 307 CFMutableDataRef data = CFDataCreateMutable(kCFAllocatorDefault, tableSize); 311 CFDataIncreaseLength(data, tableSize); 312 if (ATSFontGetTable(atsFont, tableName, 0, tableSize, CFDataGetMutableBytePtr(data), &tableSize) != noErr) {
|
/external/webkit/Source/JavaScriptCore/wtf/ |
H A D | BloomFilter.h | 42 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/webkit/Source/WebKit2/UIProcess/ |
H A D | VisitedLinkProvider.cpp | 97 unsigned tableSize = nextPowerOf2(keyCount * VisitedLinkTableMaxLoad); local 101 if (tableSize < minimumTableSize) 104 return tableSize;
|
/external/aac/libMpegTPDec/include/ |
H A D | tp_data.h | 309 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local 311 for (sf_index=0; sf_index<tableSize; sf_index++) { 315 if (sf_index>tableSize-1) { 316 return tableSize-1;
|
/external/aac/libMpegTPEnc/include/ |
H A D | tp_data.h | 309 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local 311 for (sf_index=0; sf_index<tableSize; sf_index++) { 315 if (sf_index>tableSize-1) { 316 return tableSize-1;
|
/external/skia/src/ports/ |
H A D | SkHarfBuzzFont.cpp | 171 const size_t tableSize = SkFontHost::GetTableSize(uniqueID, tag); local 172 if (!tableSize) { 177 *len = tableSize; 181 if (*len < tableSize) { 185 SkFontHost::GetTableData(uniqueID, tag, 0, tableSize, buffer);
|
H A D | SkFontHost_mac_coretext.cpp | 1765 size_t tableSize = GetTableSize(uniqueID, tableTags[index]); local 1766 totalSize += (tableSize + 3) & ~3; 1767 *tableSizes.append() = tableSize; 1799 size_t tableSize = tableSizes[index]; local 1800 GetTableData(uniqueID, tableTags[index], 0, tableSize, dataPtr); 1803 (uint32_t*)dataPtr, tableSize)); 1805 entry->fLength = SkEndian_SwapBE32(tableSize); 1806 dataPtr += (tableSize + 3) & ~3;
|
/external/webkit/Source/WebCore/platform/graphics/android/fonts/ |
H A D | HarfbuzzSkia.cpp | 206 const size_t tableSize = SkFontHost::GetTableSize(font->uniqueID(), tag); local 207 if (!tableSize) 211 *len = tableSize; 215 if (*len < tableSize) 217 SkFontHost::GetTableData(font->uniqueID(), tag, 0, tableSize, buffer);
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
H A D | HarfbuzzSkia.cpp | 223 const size_t tableSize = SkFontHost::GetTableSize(font->uniqueID(), tag); local 224 if (!tableSize) 228 *len = tableSize; 232 if (*len < tableSize) 234 SkFontHost::GetTableData(font->uniqueID(), tag, 0, tableSize, buffer);
|
/external/guava/guava/src/com/google/common/collect/ |
H A D | 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;
|
H A D | 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/ |
H A D | SDL_macwm.c | 91 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 D | CatchStructs.java | 200 int tableSize = table.size(); 201 for (int i = 0; i < tableSize; i++) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | ImmutableSetTest.java | 154 private void verifyTableSize(int inputSize, int setSize, int tableSize) { argument 162 tableSize, ((RegularImmutableSet<Integer>) set).table.length);
|
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/ |
H A D | SDL_QuartzVideo.m | 1644 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/icu4c/common/ |
H A D | ucol_swp.cpp | 449 header.tableSize= ds->readUInt32(inHeader->tableSize); 457 /* swap the inverse table; tableSize counts uint32_t[3] rows */ 458 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4,
|
/external/webkit/Source/WebKit/chromium/src/gtk/ |
H A D | WebInputEventFactory.cpp | 260 const int tableSize = sizeof(hardwareCodeToGDKKeyval) / sizeof(hardwareCodeToGDKKeyval[0]); local 261 if (event->hardware_keycode < tableSize) {
|
/external/javassist/src/main/javassist/bytecode/ |
H A D | CodeIterator.java | 1486 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/icu4c/common/unicode/ |
H A D | utext.h | 1363 int32_t tableSize; member in struct:UTextFuncs
|
/external/opencv/otherlibs/highgui/ |
H A D | grfmt_jpeg.cpp | 1693 int tableSize = 16 + (is_ac_tab ? 162 : 12); local 1696 lowstrm.PutWord( 3 + tableSize ); // define one huffman table 1698 lowstrm.PutBytes( htable, tableSize ); // put table
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
H A D | ConfigTab.java | 83 Point tableOrigin, tableSize; field in class:ConfigTab
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.registry_3.5.0.v20100503.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/icu4c/i18n/ |
H A D | ucol_imp.h | 158 * uint32_t tableSize; - length of inverse table (number of uint32_t[3] rows) 970 uint32_t tableSize; member in struct:__anon5901
|
H A D | ucol_bld.cpp | 126 uint32_t bottom = 0, top = src->invUCA->tableSize;
|