Home
last modified time | relevance | path

Searched refs:totalBytes (Results 1 – 14 of 14) 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/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixDecoder.cpp59 int32_t totalBytes = 0; in Decode() local
62 totalBytes += in Decode()
66 resultBytes.SetSize(totalBytes); in Decode()
/external/skia/src/codec/
DSkBmpCodec.cpp105 uint32_t totalBytes; in ReadHeader() local
121 totalBytes = get_int(hBuffer.get(), 2); in ReadHeader()
140 totalBytes = 0; in ReadHeader()
458 if (totalBytes <= offset && kRLE_BmpInputFormat == inputFormat) { in ReadHeader()
462 const size_t RLEBytes = totalBytes - offset; in ReadHeader()
DSkBmpRLECodec.cpp150 size_t totalBytes = this->stream()->read(fStreamBuffer.get(), fRLEBytes); in initializeStreamBuffer() local
151 if (totalBytes < fRLEBytes) { in initializeStreamBuffer()
152 fRLEBytes = totalBytes; in initializeStreamBuffer()
/external/skia/tests/
DSwizzlerTest.cpp31 const size_t totalBytes = imageInfo.getSafeSize(rowBytes) + offset; in check_fill() local
34 SkAutoTDeleteArray<uint8_t> storage(new uint8_t[totalBytes]); in check_fill()
35 memset(storage.get(), 0, totalBytes); in check_fill()
DYUVTest.cpp57 size_t totalBytes = info.fYWidthBytes * info.fYSize.height() + in codec_yuv() local
60 SkAutoMalloc storage(totalBytes); in codec_yuv()
DWriter32Test.cpp163 size_t totalBytes = writer->bytesWritten(); in testWritePad() local
165 SkAutoMalloc readStorage(totalBytes); in testWritePad()
169 reader.setMemory(readStorage.get(), totalBytes); in testWritePad()
DCodexTest.cpp564 size_t totalBytes = scaledInfo.getSafeSize(rowBytes); in test_dimensions() local
565 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/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRCoderDecoder.cpp81 int32_t totalBytes = 0; in Decode() local
83 totalBytes += ((CBC_QRDataBlock*)((*dataBlocks)[i]))->GetNumDataCodewords(); in Decode()
/external/lzma/CPP/7zip/UI/Common/
DHashCalc.cpp212 UInt64 totalBytes = 0; in HashCalc() local
233 totalBytes = dirItems.TotalSize; in HashCalc()
260 RINOK(callback->SetTotal(totalBytes)); in HashCalc()
/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/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.cpp145 int totalBytes = 0; in PrintStats() local
148 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ in PrintStats()
157 llvm::errs() << "Total bytes = " << totalBytes << "\n"; in PrintStats()