/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
D | Huffman.cs | 104 int tableSize = 1 << tableBits; in BuildHuffmanTable() 105 int totalSize = tableSize; in BuildHuffmanTable() 122 ReplicateValue(rootTable, tableOffset + key, step, tableSize, len << 16 | sorted[symbol++]); in BuildHuffmanTable() 136 currentOffset += tableSize; in BuildHuffmanTable() 138 tableSize = 1 << tableBits; in BuildHuffmanTable() 139 totalSize += tableSize; in BuildHuffmanTable() 143 …ReplicateValue(rootTable, currentOffset + (key >> rootBits), step, tableSize, (len - rootBits) << … in BuildHuffmanTable()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
D | Huffman.java | 93 int tableSize = 1 << tableBits; in buildHuffmanTable() local 94 int totalSize = tableSize; in buildHuffmanTable() 109 replicateValue(tableGroup, tableOffset + key, step, tableSize, in buildHuffmanTable() 122 currentOffset += tableSize; in buildHuffmanTable() 124 tableSize = 1 << tableBits; in buildHuffmanTable() 125 totalSize += tableSize; in buildHuffmanTable() 130 replicateValue(tableGroup, currentOffset + (key >> rootBits), step, tableSize, in buildHuffmanTable()
|
/third_party/mesa3d/src/util/ |
D | xmlconfig.c | 262 uint32_t size = 1 << cache->tableSize, mask = size - 1; in findOption() 270 hash = (hash >> (16-cache->tableSize/2)) & mask; in findOption() 323 info->tableSize = 7; in driParseOptionInfo() 324 info->info = calloc((size_t)1 << info->tableSize, sizeof(driOptionInfo)); in driParseOptionInfo() 325 info->values = calloc((size_t)1 << info->tableSize, sizeof(driOptionValue)); in driParseOptionInfo() 1147 unsigned i, size = 1 << info->tableSize; in initOptionCache() 1149 cache->tableSize = info->tableSize; in initOptionCache() 1150 cache->values = malloc(((size_t)1 << info->tableSize) * sizeof(driOptionValue)); in initOptionCache() 1156 ((size_t)1 << info->tableSize) * sizeof(driOptionValue)); in initOptionCache() 1230 uint32_t i, size = 1 << info->tableSize; in driDestroyOptionInfo() [all …]
|
D | xmlconfig.h | 93 unsigned int tableSize; member 180 for (int i = 0; i < 1 << cache->tableSize; i++) { in driComputeOptionsSha1()
|
/third_party/flutter/txt/src/minikin/ |
D | CmapCoverage.cpp | 290 const size_t tableSize = cmap_size - bestTableOffset; in getCoverage() local 294 success = getCoverageFormat4(coverageVec, tableData, tableSize); in getCoverage() 296 success = getCoverageFormat12(coverageVec, tableData, tableSize); in getCoverage()
|
/third_party/flutter/engine/flutter/third_party/txt/src/minikin/ |
D | CmapCoverage.cpp | 290 const size_t tableSize = cmap_size - bestTableOffset; in getCoverage() local 294 success = getCoverageFormat4(coverageVec, tableData, tableSize); in getCoverage() 296 success = getCoverageFormat12(coverageVec, tableData, tableSize); in getCoverage()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBITableBuilder.java | 1148 int tableSize; 1150 …tableSize = (getTableSize() - RBBIDataWrapper.RBBIStateTable.fHeaderSize); // fTable length … 1151 table.fTable = new char[tableSize]; 1154 …tableSize = (getTableSize() - RBBIDataWrapper.RBBIStateTable.fHeaderSize) / 2; // fTable length … 1155 table.fTable = new char[tableSize]; 1315 …int tableSize = (getSafeTableSize() - RBBIDataWrapper.RBBIStateTable.fHeaderSize); // fTable l… 1318 table.fTable = new char[tableSize]; 1321 tableSize /= 2; // fTable length in shorts. 1322 table.fTable = new char[tableSize];
|
/third_party/gptfdisk/ |
D | gptcl.cc | 37 tableSize = GPT_SIZE; in GPTDataCL() 110 {"resize-table", 'S', POPT_ARG_INT, &tableSize, 'S', "resize partition table", "numparts"}, in DoOptions() 382 if (SetGPTSize(tableSize) == 0) in DoOptions()
|
D | gptcl.h | 36 uint32_t tableSize; variable
|
D | gpt.cc | 1476 int sum, tableSize, allOK = 1; in DestroyGPT() local 1492 tableSize = numParts * mainHeader.sizeOfPartitionEntries; in DestroyGPT() 1493 emptyTable = new uint8_t[tableSize]; in DestroyGPT() 1498 memset(emptyTable, 0, tableSize); in DestroyGPT() 1500 sum = myDisk.Write(emptyTable, tableSize); in DestroyGPT() 1501 if (sum != tableSize) { in DestroyGPT() 1509 sum = myDisk.Write(emptyTable, tableSize); in DestroyGPT() 1510 if (sum != tableSize) { in DestroyGPT()
|
/third_party/skia/src/ports/ |
D | SkTypeface_mac_ct.cpp | 729 size_t tableSize = this->getTableSize(tableTags[tableIndex]); in onOpenStream() local 730 totalSize += (tableSize + 3) & ~3; in onOpenStream() 731 *tableSizes.append() = tableSize; in onOpenStream() 763 size_t tableSize = tableSizes[tableIndex]; in onOpenStream() local 764 this->getTableData(tableTags[tableIndex], 0, tableSize, dataPtr); in onOpenStream() 767 tableSize)); in onOpenStream() 769 entry->logicalLength = SkEndian_SwapBE32(SkToU32(tableSize)); in onOpenStream() 771 dataPtr += (tableSize + 3) & ~3; in onOpenStream()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | ucol_data.h | 79 uint32_t tableSize; member
|
D | ucol_swp.cpp | 595 header.tableSize= ds->readUInt32(inHeader->tableSize); in ucol_swapInverseUCA() 604 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4, in ucol_swapInverseUCA()
|
/third_party/node/deps/icu-small/source/common/ |
D | ucol_data.h | 79 uint32_t tableSize; member
|
D | ucol_swp.cpp | 595 header.tableSize= ds->readUInt32(inHeader->tableSize); in ucol_swapInverseUCA() 604 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4, in ucol_swapInverseUCA()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | ucol_data.h | 79 uint32_t tableSize; member
|
D | ucol_swp.cpp | 595 header.tableSize= ds->readUInt32(inHeader->tableSize); in ucol_swapInverseUCA() 604 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4, in ucol_swapInverseUCA()
|
/third_party/icu/icu4c/source/common/ |
D | ucol_data.h | 79 uint32_t tableSize; member
|
D | ucol_swp.cpp | 595 header.tableSize= ds->readUInt32(inHeader->tableSize); in ucol_swapInverseUCA() 604 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4, in ucol_swapInverseUCA()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | TagOffsetsTable.java | 255 int tableSize = TagOffsetRecordList.sizeOfListOfCount(serializedCount); in serializeFromBuilders() local 258 int subTableFillPos = tableSize; in serializeFromBuilders()
|
D | OffsetRecordTable.java | 317 int tableSize = NumRecordList.sizeOfListOfCount(serializedCount); in serializeFromBuilders() local 320 int subTableFillPos = tableSize; in serializeFromBuilders()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | TagOffsetsTable.java | 255 int tableSize = TagOffsetRecordList.sizeOfListOfCount(serializedCount); in serializeFromBuilders() local 258 int subTableFillPos = tableSize; in serializeFromBuilders()
|
D | OffsetRecordTable.java | 317 int tableSize = NumRecordList.sizeOfListOfCount(serializedCount); in serializeFromBuilders() local 320 int subTableFillPos = tableSize; in serializeFromBuilders()
|
/third_party/skia/third_party/externals/brotli/js/ |
D | decode.js | 576 var /** number */ tableSize = MAX_HUFFMAN_TABLE_SIZE[(alphabetSize + 31) >> 5]; 577 var /** !Int32Array */ table = new Int32Array(tableSize + 1); 1486 var /** number */ tableSize = 1 << tableBits; 1487 var /** number */ totalSize = tableSize; 1498 … replicateValue(tableGroup, tableOffset + key, step, tableSize, len << 16 | sorted[symbol++]); 1508 currentOffset += tableSize; 1510 tableSize = 1 << tableBits; 1511 totalSize += tableSize; 1515 …replicateValue(tableGroup, currentOffset + (key >> rootBits), step, tableSize, (len - rootBits) <<…
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/ |
D | SDL_cocoawindow.m | 1589 const uint32_t tableSize = 256; 1590 CGGammaValue redTable[tableSize]; 1591 CGGammaValue greenTable[tableSize]; 1592 CGGammaValue blueTable[tableSize]; 1603 if (CGSetDisplayTransferByTable(display_id, tableSize, 1615 const uint32_t tableSize = 256; 1616 CGGammaValue redTable[tableSize]; 1617 CGGammaValue greenTable[tableSize]; 1618 CGGammaValue blueTable[tableSize]; 1621 if (CGGetDisplayTransferByTable(display_id, tableSize,
|