Searched defs:totalSize (Results 26 - 50 of 75) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultimap.java113 private transient int totalSize; field in class:AbstractMapBasedMultimap
130 totalSize = 0;
133 totalSize += values.size();
180 return totalSize;
196 totalSize++;
203 totalSize++;
238 totalSize -= collection.size();
243 totalSize++;
265 totalSize -= collection.size();
292 totalSize
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractMapBasedMultimap.java110 private transient int totalSize; field in class:AbstractMapBasedMultimap
127 totalSize = 0;
130 totalSize += values.size();
177 return totalSize;
193 totalSize++;
200 totalSize++;
235 totalSize -= collection.size();
240 totalSize++;
262 totalSize -= collection.size();
289 totalSize
[all...]
/external/lz4/programs/
H A Dbench.c418 size_t pos = 0, totalSize = 0; local
436 totalSize += (size_t)fileSize;
440 if (totalSize == 0) EXM_THROW(12, "no data to bench");
/external/tpm2/
H A DNV.c278 UINT32 totalSize, // IN: total size needed for this entity For
279 // evict object, totalSize is the same as
280 // bufferSize. For NV Index, totalSize is
293 nextAddr = endAddr + sizeof(UINT32) + totalSize;
277 NvAdd( UINT32 totalSize, UINT32 bufferSize, BYTE *entity ) argument
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Ddemo.c216 GLint totalSize = 0; local
221 totalSize += superShapes[a]->vertexArraySize +
225 totalSize += groundPlane->vertexArraySize +
228 totalSize += fadeQuad->vertexArraySize +
233 glBufferData(GL_ARRAY_BUFFER, totalSize, 0, GL_STATIC_DRAW);
239 assert(offset == totalSize);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp930 VkDeviceSize totalSize = 0; local
940 totalSize = (VkDeviceSize)deAlign64((deInt64)totalSize, elementSize);
941 totalSize += planeW * planeH * elementSize;
944 return totalSize;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp249 int totalSize = 0; local
251 totalSize += sym->varType.getScalarSize();
252 return totalSize;
H A DvktShaderExecutor.cpp1632 const deUint32 totalSize = (deUint32)deAlign32(curOffset, maxAlignment); local
1635 varIter->stride = totalSize;
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp232 int totalSize = 0; local
234 totalSize += sym->varType.getScalarSize();
235 return totalSize;
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp306 int totalSize = 0; local
308 totalSize += sym->varType.getScalarSize();
309 return totalSize;
H A Des31fSSBOLayoutCase.cpp1932 int totalSize = 0; local
1935 totalSize += *sizeIter;
1937 storage.data.resize(totalSize);
1945 DE_ASSERT(totalSize == 0 || basePtr);
2182 int totalSize = 0; local
2199 totalSize = curOffset;
2203 buffers[0].size = totalSize;
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.cpp956 const deUint32 totalSize = (deUint32)deAlign32(curOffset, maxAlignment); local
959 varIter->stride = totalSize;
H A DglsUniformBlockCase.cpp1409 int totalSize = 0; local
1411 totalSize += blockIter->size;
1412 data.resize(totalSize);
1522 int totalSize = 0; local
1539 totalSize = curOffset;
1542 vector<deUint8> glData(totalSize);
/external/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.cpp1168 int32_t totalSize=offset; local
1170 indexes[i]=totalSize;
1177 printf("size of binary data file contents: %5ld bytes\n", (long)totalSize);
1219 int32_t totalSize=indexes[Normalizer2Impl::IX_TOTAL_SIZE]; local
1220 if(writtenSize!=totalSize) {
1222 (long)writtenSize, (long)totalSize);
/external/icu/icu4c/source/tools/genrb/
H A Dparse.cpp991 int32_t totalSize = icu::CollationDataWriter::writeTailoring( local
995 capacity = totalSize;
1004 totalSize = icu::CollationDataWriter::writeTailoring(
1015 icu::CollationInfo::printSizes(totalSize, indexes);
1022 struct SResource *collationBin = bin_open(state->bundle, "%%CollationBin", totalSize, dest, NULL, NULL, status);
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.cpp106 HRESULT CProgressSync::ScanProgress(UInt64 numFiles, UInt64 totalSize, const FString &fileName, bool isDir) argument
111 _totalBytes = totalSize;
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_cmd_vgpu10.c1057 unsigned totalSize = 2 * sizeof(*header) + local
1061 header = swc->reserve(swc, totalSize, 2);
/external/vulkan-validation-layers/layers/
H A Dimage.cpp342 uint64_t totalSize = ((uint64_t)pCreateInfo->extent.width * (uint64_t)pCreateInfo->extent.height * local
348 if (totalSize > ImageFormatProperties.maxResourceSize) {
353 totalSize, ImageFormatProperties.maxResourceSize);
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiObjectManagementTests.cpp312 VkDeviceSize totalSize = 0; local
319 totalSize += numPagesNeeded*limits.devicePageTableEntrySize;
322 return totalSize;
/external/deqp/external/vulkancts/modules/vulkan/ubo/
H A DvktUniformBlockCase.cpp1660 deUint32 totalSize = currentOffset; local
1664 data.resize(totalSize);
1670 vk::VkBuffer buffer = addUniformData(totalSize, &data[0]).buffer;
2269 int totalSize = 0; local
2271 totalSize += blockIter->size;
2272 m_data.resize(totalSize);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp2306 UInt64 totalSize = 0; local
2314 totalSize += ui.Size;
2315 if (totalSize > options.NumSolidBytes)
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
H A DvktSSBOLayoutCase.cpp1831 int totalSize = 0; local
1834 totalSize += *sizeIter;
1836 storage.data.resize(totalSize);
1844 DE_ASSERT(totalSize == 0 || basePtr);
2203 vk::VkDeviceSize totalSize = 0; local
2205 totalSize += bufferSizes[bufferNdx];
2217 totalSize
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_cmd.h1061 uint32 totalSize; /* Set by guest before query is ended. */ member in struct:__anon15287
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...

Completed in 834 milliseconds

123