Home
last modified time | relevance | path

Searched refs:totalBytes (Results 1 – 24 of 24) sorted by relevance

/external/libvncserver/libvncserver/
Dstats.c385 double totalBytes=0.0; in rfbPrintStats() local
410 totalBytes += bytes; in rfbPrintStats()
428 totalBytes += bytes; in rfbPrintStats()
433 savings = 100.0 - ((totalBytes/totalBytesIfRaw)*100.0); in rfbPrintStats()
435 "TOTALS", totalRects, totalBytes,totalBytesIfRaw, savings); in rfbPrintStats()
438 totalBytes=0.0; in rfbPrintStats()
456 totalBytes += bytes; in rfbPrintStats()
473 totalBytes += bytes; in rfbPrintStats()
478 savings = 100.0 - ((totalBytes/totalBytesIfRaw)*100.0); in rfbPrintStats()
480 "TOTALS", totalRects, totalBytes,totalBytesIfRaw, savings); in rfbPrintStats()
/external/skqp/tests/
DSwizzlerTest.cpp31 const size_t totalBytes = imageInfo.computeByteSize(rowBytes) + offset; in check_fill() local
34 std::unique_ptr<uint8_t[]> storage(new uint8_t[totalBytes]); in check_fill()
35 memset(storage.get(), 0, totalBytes); in check_fill()
DYUVTest.cpp59 size_t totalBytes = in codec_yuv() local
63 SkAutoMalloc storage(totalBytes); in codec_yuv()
DWriter32Test.cpp164 size_t totalBytes = writer->bytesWritten(); in testWritePad() local
166 SkAutoMalloc readStorage(totalBytes); in testWritePad()
170 reader.setMemory(readStorage.get(), totalBytes); in testWritePad()
DCodecTest.cpp580 size_t totalBytes = scaledInfo.computeByteSize(rowBytes); in test_dimensions() local
581 SkAutoTMalloc<SkPMColor> pixels(totalBytes); in test_dimensions()
/external/skia/tests/
DSwizzlerTest.cpp32 const size_t totalBytes = imageInfo.computeByteSize(rowBytes) + offset; in check_fill() local
35 std::unique_ptr<uint8_t[]> storage(new uint8_t[totalBytes]); in check_fill()
36 memset(storage.get(), 0, totalBytes); in check_fill()
DYUVTest.cpp59 size_t totalBytes = in codec_yuv() local
63 SkAutoMalloc storage(totalBytes); in codec_yuv()
DWriter32Test.cpp164 size_t totalBytes = writer->bytesWritten(); in testWritePad() local
166 SkAutoMalloc readStorage(totalBytes); in testWritePad()
170 reader.setMemory(readStorage.get(), totalBytes); in testWritePad()
DCodecTest.cpp582 size_t totalBytes = scaledInfo.computeByteSize(rowBytes); in test_dimensions() local
583 SkAutoTMalloc<SkPMColor> pixels(totalBytes); in test_dimensions()
/external/zlib/src/contrib/minizip/
Dmztools.c43 uLong totalBytes = 0; variable
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
/external/skqp/src/codec/
DSkBmpCodec.cpp141 uint32_t totalBytes; in ReadHeader() local
157 totalBytes = get_int(hBuffer, 2); in ReadHeader()
176 totalBytes = 0; in ReadHeader()
552 if (totalBytes <= offset) { in ReadHeader()
DSkJpegCodec.cpp135 size_t totalBytes = 0; in read_color_space() local
165 totalBytes += marker->data_length - kICCMarkerHeaderSize; in read_color_space()
169 if (0 == totalBytes) { in read_color_space()
175 sk_sp<SkData> iccData = SkData::MakeUninitialized(totalBytes); in read_color_space()
636 size_t totalBytes = swizzleBytes + xformBytes; in allocateStorage() local
637 if (totalBytes > 0) { in allocateStorage()
638 fStorage.reset(totalBytes); in allocateStorage()
DSkHeifCodec.cpp309 size_t totalBytes = swizzleBytes + xformBytes; in allocateStorage() local
310 fStorage.reset(totalBytes); in allocateStorage()
311 if (totalBytes > 0) { in allocateStorage()
/external/skia/src/codec/
DSkBmpCodec.cpp141 uint32_t totalBytes; in ReadHeader() local
157 totalBytes = get_int(hBuffer, 2); in ReadHeader()
176 totalBytes = 0; in ReadHeader()
557 if (totalBytes <= offset) { in ReadHeader()
DSkJpegCodec.cpp136 size_t totalBytes = 0; in read_color_space() local
166 totalBytes += marker->data_length - kICCMarkerHeaderSize; in read_color_space()
170 if (0 == totalBytes) { in read_color_space()
176 sk_sp<SkData> iccData = SkData::MakeUninitialized(totalBytes); in read_color_space()
637 size_t totalBytes = swizzleBytes + xformBytes; in allocateStorage() local
638 if (totalBytes > 0) { in allocateStorage()
639 fStorage.reset(totalBytes); in allocateStorage()
DSkHeifCodec.cpp309 size_t totalBytes = swizzleBytes + xformBytes; in allocateStorage() local
310 fStorage.reset(totalBytes); in allocateStorage()
311 if (totalBytes > 0) { in allocateStorage()
/external/swiftshader/src/OpenGL/compiler/
DPoolAlloc.cpp66 totalBytes(0) in TPoolAllocator()
246 totalBytes += numBytes; in allocate()
DPoolAlloc.h220 size_t totalBytes; // just an interesting statistic variable
/external/guava/guava-tests/test/com/google/common/hash/
DHashCodeTest.java375 int totalBytes = hashCode.bits() / 8; in assertReadableBytes() local
377 for (int bytes = 0; bytes < totalBytes; bytes++) { in assertReadableBytes()
/external/mesa3d/src/mesa/main/
Dtexgetimage.c1491 GLsizei totalBytes; in packed_compressed_size() local
1496 totalBytes = in packed_compressed_size()
1502 return totalBytes; in packed_compressed_size()
1521 GLsizei totalBytes; in getcompressedteximage_error_check() local
1562 totalBytes = packed_compressed_size(dimensions, texImage->TexFormat, in getcompressedteximage_error_check()
1569 if ((GLubyte *) pixels + totalBytes > in getcompressedteximage_error_check()
1584 if (totalBytes > bufSize) { in getcompressedteximage_error_check()
/external/mesa3d/src/amd/addrlib/r800/
Dsiaddrlib.cpp812 UINT_64 totalBytes; in HwlComputeXmaskAddrFromCoord() local
834 &totalBytes, in HwlComputeXmaskAddrFromCoord()
855 &totalBytes, in HwlComputeXmaskAddrFromCoord()
970 UINT_64 totalBytes; in HwlComputeXmaskCoordFromAddr() local
994 &totalBytes, in HwlComputeXmaskCoordFromAddr()
1014 &totalBytes, in HwlComputeXmaskCoordFromAddr()
/external/mesa3d/src/amd/addrlib/core/
Daddrlib.cpp2331 UINT_64 totalBytes; in HwlComputeXmaskCoordFromAddr() local
2384 &totalBytes, in HwlComputeXmaskCoordFromAddr()
2409 &totalBytes, in HwlComputeXmaskCoordFromAddr()
2502 UINT_64 totalBytes = 0; in HwlComputeXmaskAddrFromCoord() local
2564 &totalBytes, in HwlComputeXmaskAddrFromCoord()
2568 sliceBytes = totalBytes / numSlices; in HwlComputeXmaskAddrFromCoord()
2584 &totalBytes, in HwlComputeXmaskAddrFromCoord()
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java1310 protected Response(IStatus status, String mimeType, InputStream data, long totalBytes) { in Response() argument
1318 this.contentLength = totalBytes; in Response()
1977 …sponse newFixedLengthResponse(IStatus status, String mimeType, InputStream data, long totalBytes) { in newFixedLengthResponse() argument
1978 return new Response(status, mimeType, data, totalBytes); in newFixedLengthResponse()
/external/clang/lib/AST/
DDeclBase.cpp146 int totalBytes = 0; in PrintStats() local
149 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ in PrintStats()
158 llvm::errs() << "Total bytes = " << totalBytes << "\n"; in PrintStats()