Home
last modified time | relevance | path

Searched refs:totalSize (Results 1 – 25 of 137) sorted by relevance

123456

/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dcollationdatawriter.cpp224 int32_t totalSize = indexesLength * 4; in write() local
232 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize; in write()
233 totalSize += reorderCodesLength * 4; in write()
235 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize; in write()
237 totalSize += 256; in write()
240 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize; in write()
244 if(totalSize < capacity) { in write()
245 length = utrie2_serialize(data.trie, dest + totalSize, in write()
246 capacity - totalSize, &errorCode2); in write()
257 totalSize += length; in write()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dcollationdatawriter.cpp224 int32_t totalSize = indexesLength * 4; in write() local
232 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize; in write()
233 totalSize += reorderCodesLength * 4; in write()
235 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize; in write()
237 totalSize += 256; in write()
240 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize; in write()
244 if(totalSize < capacity) { in write()
245 length = utrie2_serialize(data.trie, dest + totalSize, in write()
246 capacity - totalSize, &errorCode2); in write()
257 totalSize += length; in write()
[all …]
/third_party/icu/icu4c/source/i18n/
Dcollationdatawriter.cpp224 int32_t totalSize = indexesLength * 4; in write() local
232 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize; in write()
233 totalSize += reorderCodesLength * 4; in write()
235 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize; in write()
237 totalSize += 256; in write()
240 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize; in write()
244 if(totalSize < capacity) { in write()
245 length = utrie2_serialize(data.trie, dest + totalSize, in write()
246 capacity - totalSize, &errorCode2); in write()
257 totalSize += length; in write()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationdatawriter.cpp224 int32_t totalSize = indexesLength * 4; in write() local
232 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize; in write()
233 totalSize += reorderCodesLength * 4; in write()
235 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize; in write()
237 totalSize += 256; in write()
240 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize; in write()
244 if(totalSize < capacity) { in write()
245 length = utrie2_serialize(data.trie, dest + totalSize, in write()
246 capacity - totalSize, &errorCode2); in write()
257 totalSize += length; in write()
[all …]
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_request.js53 const totalSize = "[PC Preview] unknow totalSize"
54 args[len - 1].call(this, receivedSize, totalSize)
71 const totalSize = "[PC Preview] unknow totalSize"
72 args[len - 1].call(this, receivedSize, totalSize)
182 const totalSize = "[PC Preview] unknow totalSize"
183 args[len - 1].call(this, uploadedSize, totalSize)
201 const totalSize = "[PC Preview] unknow totalSize"
202 args[len - 1].call(this, uploadedSize, totalSize)
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DHuffman.java94 int totalSize = tableSize; in buildHuffmanTable() local
98 for (key = 0; key < totalSize; key++) { in buildHuffmanTable()
101 return totalSize; in buildHuffmanTable()
116 int mask = totalSize - 1; in buildHuffmanTable()
125 totalSize += tableSize; in buildHuffmanTable()
135 return totalSize; in buildHuffmanTable()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DDictionaryData.java65 int totalSize = indexes[IX_TOTAL_SIZE] - offset; in loadDictionaryFor() local
69 byte[] data = new byte[totalSize]; in loadDictionaryFor()
73 Assert.assrt(totalSize % 2 == 0); in loadDictionaryFor()
74 String data = ICUBinary.getString(bytes, totalSize / 2, totalSize & 1); in loadDictionaryFor()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDictionaryData.java64 int totalSize = indexes[IX_TOTAL_SIZE] - offset; in loadDictionaryFor() local
68 byte[] data = new byte[totalSize]; in loadDictionaryFor()
72 Assert.assrt(totalSize % 2 == 0); in loadDictionaryFor()
73 String data = ICUBinary.getString(bytes, totalSize / 2, totalSize & 1); in loadDictionaryFor()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/
DBufferConsumer_impl.h60 size_t totalSize = sizeof(T) * count; in NextN() local
61 if (totalSize > mSize) { in NextN()
66 mBuffer += totalSize; in NextN()
67 mSize -= totalSize; in NextN()
/third_party/cmsis/CMSIS/DSP/Source/StatisticsFunctions/
Darm_max_q7.c107 int32_t totalSize = blockSize; in arm_max_q7() local
110 if (totalSize <= sub_blk_sz) in arm_max_q7()
123 while (totalSize >= sub_blk_sz) in arm_max_q7()
139 totalSize -= sub_blk_sz; in arm_max_q7()
144 arm_small_blk_max_q7(pSrc, totalSize, pResult, pIndex); in arm_max_q7()
Darm_min_q7.c136 int32_t totalSize = blockSize; in arm_min_q7() local
138 if (totalSize <= UINT8_MAX) in arm_min_q7()
151 while (totalSize >= UINT8_MAX) in arm_min_q7()
167 totalSize -= UINT8_MAX; in arm_min_q7()
172 arm_small_blk_min_q7(pSrc, totalSize, pResult, pIndex); in arm_min_q7()
Darm_absmax_q7.c113 int32_t totalSize = blockSize; in arm_absmax_q7() local
115 if (totalSize <= MAX_BLKSZ_S8) in arm_absmax_q7()
128 while (totalSize >= MAX_BLKSZ_S8) in arm_absmax_q7()
144 totalSize -= MAX_BLKSZ_S8; in arm_absmax_q7()
149 arm_small_blk_absmax_q7(pSrc, totalSize, pResult, pIndex); in arm_absmax_q7()
Darm_absmin_q7.c141 int32_t totalSize = blockSize; in arm_absmin_q7() local
143 if (totalSize <= MAX_BLKSZ_S8) in arm_absmin_q7()
156 while (totalSize >= MAX_BLKSZ_S8) in arm_absmin_q7()
172 totalSize -= MAX_BLKSZ_S8; in arm_absmin_q7()
177 arm_small_blk_absmin_q7(pSrc, totalSize, pResult, pIndex); in arm_absmin_q7()
/third_party/skia/src/core/
DSkArenaAlloc.cpp110 const uint32_t totalSize = sizeIncludingFooter + skipOverhead; in allocObjectWithFooter() local
114 this->ensureSpace(totalSize, alignment); in allocObjectWithFooter()
121 if ((ptrdiff_t)totalSize > fEnd - objStart) { in allocObjectWithFooter()
122 this->ensureSpace(totalSize, alignment); in allocObjectWithFooter()
126 AssertRelease((ptrdiff_t)totalSize <= fEnd - objStart); in allocObjectWithFooter()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkQueue.cpp37 size_t totalSize = submitSize; in DeepCopySubmitInfo() local
40 totalSize += pSubmits[i].waitSemaphoreCount * sizeof(VkSemaphore); in DeepCopySubmitInfo()
41 totalSize += pSubmits[i].waitSemaphoreCount * sizeof(VkPipelineStageFlags); in DeepCopySubmitInfo()
42 totalSize += pSubmits[i].signalSemaphoreCount * sizeof(VkSemaphore); in DeepCopySubmitInfo()
43 totalSize += pSubmits[i].commandBufferCount * sizeof(VkCommandBuffer); in DeepCopySubmitInfo()
53 totalSize += tlsSubmitInfo->waitSemaphoreValueCount * sizeof(uint64_t); in DeepCopySubmitInfo()
54 totalSize += tlsSubmitInfo->signalSemaphoreValueCount * sizeof(uint64_t); in DeepCopySubmitInfo()
72 …vk::allocateHostMemory(totalSize, vk::REQUIRED_MEMORY_ALIGNMENT, vk::NULL_ALLOCATION_CALLBACKS, vk… in DeepCopySubmitInfo()
DVkDescriptorPool.cpp123 size_t totalSize = 0; in allocateSets() local
126 totalSize += sizes[i]; in allocateSets()
129 if(totalSize > poolSize) in allocateSets()
136 uint8_t *memory = findAvailableMemory(totalSize); in allocateSets()
169 …return (computeTotalFreeSize() > totalSize) ? VK_ERROR_FRAGMENTED_POOL : VK_ERROR_OUT_OF_POOL_MEMO… in allocateSets()
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DHuffman.cs105 int totalSize = tableSize; in BuildHuffmanTable()
109 for (key = 0; key < totalSize; key++) in BuildHuffmanTable()
127 int mask = totalSize - 1; in BuildHuffmanTable()
139 totalSize += tableSize; in BuildHuffmanTable()
/third_party/skia/third_party/externals/freetype/src/psaux/
Dpsarrst.c69 arrstack->totalSize = 0; in cf2_arrstack_init()
84 arrstack->totalSize = 0; in cf2_arrstack_finalize()
112 if ( !FT_QREALLOC( arrstack->ptr, arrstack->totalSize, newSize ) ) in cf2_arrstack_setNumElements()
115 arrstack->totalSize = newSize; in cf2_arrstack_setNumElements()
/third_party/freetype/src/psaux/
Dpsarrst.c70 arrstack->totalSize = 0; in cf2_arrstack_init()
85 arrstack->totalSize = 0; in cf2_arrstack_finalize()
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) ) in cf2_arrstack_setNumElements()
116 arrstack->totalSize = newSize; in cf2_arrstack_setNumElements()
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/
Dpsarrst.c70 arrstack->totalSize = 0; in cf2_arrstack_init()
85 arrstack->totalSize = 0; in cf2_arrstack_finalize()
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) ) in cf2_arrstack_setNumElements()
116 arrstack->totalSize = newSize; in cf2_arrstack_setNumElements()
/third_party/jsframework/runtime/main/extend/systemplugin/ohos/
DstorageInfoManager.js25 totalSize: 12800000, property
46 args[len - 1].call(this, paramMock.businessErrorMock, infoMock.totalSize);
49 resolve(infoMock.totalSize);
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ducnvsel.cpp186 int32_t totalSize = 0; in ucnvsel_open() local
189 totalSize += in ucnvsel_open()
193 int32_t encodingStrPadding = totalSize & 3; in ucnvsel_open()
197 newSelector->encodingStrLength = totalSize += encodingStrPadding; in ucnvsel_open()
198 char* allStrings = (char*) uprv_malloc(totalSize); in ucnvsel_open()
318 int32_t totalSize = in ucnvsel_serialize() local
324 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; in ucnvsel_serialize()
325 if (totalSize > bufferCapacity) { in ucnvsel_serialize()
327 return totalSize; in ucnvsel_serialize()
349 return totalSize; in ucnvsel_serialize()
[all …]
/third_party/node/deps/icu-small/source/common/
Ducnvsel.cpp186 int32_t totalSize = 0; in ucnvsel_open() local
189 totalSize += in ucnvsel_open()
193 int32_t encodingStrPadding = totalSize & 3; in ucnvsel_open()
197 newSelector->encodingStrLength = totalSize += encodingStrPadding; in ucnvsel_open()
198 char* allStrings = (char*) uprv_malloc(totalSize); in ucnvsel_open()
318 int32_t totalSize = in ucnvsel_serialize() local
324 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; in ucnvsel_serialize()
325 if (totalSize > bufferCapacity) { in ucnvsel_serialize()
327 return totalSize; in ucnvsel_serialize()
349 return totalSize; in ucnvsel_serialize()
[all …]
/third_party/icu/icu4c/source/common/
Ducnvsel.cpp186 int32_t totalSize = 0; in ucnvsel_open() local
189 totalSize += in ucnvsel_open()
193 int32_t encodingStrPadding = totalSize & 3; in ucnvsel_open()
197 newSelector->encodingStrLength = totalSize += encodingStrPadding; in ucnvsel_open()
198 char* allStrings = (char*) uprv_malloc(totalSize); in ucnvsel_open()
318 int32_t totalSize = in ucnvsel_serialize() local
324 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; in ucnvsel_serialize()
325 if (totalSize > bufferCapacity) { in ucnvsel_serialize()
327 return totalSize; in ucnvsel_serialize()
349 return totalSize; in ucnvsel_serialize()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducnvsel.cpp186 int32_t totalSize = 0; in ucnvsel_open() local
189 totalSize += in ucnvsel_open()
193 int32_t encodingStrPadding = totalSize & 3; in ucnvsel_open()
197 newSelector->encodingStrLength = totalSize += encodingStrPadding; in ucnvsel_open()
198 char* allStrings = (char*) uprv_malloc(totalSize); in ucnvsel_open()
318 int32_t totalSize = in ucnvsel_serialize() local
324 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; in ucnvsel_serialize()
325 if (totalSize > bufferCapacity) { in ucnvsel_serialize()
327 return totalSize; in ucnvsel_serialize()
349 return totalSize; in ucnvsel_serialize()
[all …]

123456