HomeSort by relevance Sort by last modified time
    Searched defs:totalBytes (Results 1 - 25 of 33) sorted by null

1 2

  /external/skia/include/core/
SkYUVASizeInfo.h 53 size_t totalBytes = 0;
58 totalBytes += fWidthBytes[i] * fSizes[i].height();
61 return totalBytes;
  /external/skia/tests/
YUVTest.cpp 65 size_t totalBytes = info.computeTotalBytes();
67 SkAutoMalloc storage(totalBytes);
SwizzlerTest.cpp 26 const size_t totalBytes = imageInfo.computeByteSize(rowBytes) + offset;
29 std::unique_ptr<uint8_t[]> storage(new uint8_t[totalBytes]);
30 memset(storage.get(), 0, totalBytes);
Writer32Test.cpp 164 size_t totalBytes = writer->bytesWritten();
166 SkAutoMalloc readStorage(totalBytes);
170 reader.setMemory(readStorage.get(), totalBytes);
CodecTest.cpp 601 size_t totalBytes = scaledInfo.computeByteSize(rowBytes);
602 SkAutoTMalloc<SkPMColor> pixels(totalBytes);
    [all...]
  /external/skqp/include/core/
SkYUVASizeInfo.h 53 size_t totalBytes = 0;
58 totalBytes += fWidthBytes[i] * fSizes[i].height();
61 return totalBytes;
  /external/skqp/tests/
YUVTest.cpp 65 size_t totalBytes = info.computeTotalBytes();
67 SkAutoMalloc storage(totalBytes);
SwizzlerTest.cpp 26 const size_t totalBytes = imageInfo.computeByteSize(rowBytes) + offset;
29 std::unique_ptr<uint8_t[]> storage(new uint8_t[totalBytes]);
30 memset(storage.get(), 0, totalBytes);
Writer32Test.cpp 164 size_t totalBytes = writer->bytesWritten();
166 SkAutoMalloc readStorage(totalBytes);
170 reader.setMemory(readStorage.get(), totalBytes);
CodecTest.cpp 601 size_t totalBytes = scaledInfo.computeByteSize(rowBytes);
602 SkAutoTMalloc<SkPMColor> pixels(totalBytes);
    [all...]
  /external/zlib/src/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestStringByteConverter.java 71 + totalBytes + " = " + (totalUtf8Bytes / (double) totalBytes));
97 totalUtf8Bytes = totalBytes = 0;
109 + totalUtf8Bytes + "/" + totalBytes + " = "
110 + (totalUtf8Bytes / (double) totalBytes));
146 totalBytes += byteLen;
186 static int totalBytes = 0;
  /external/deqp-deps/glslang/glslang/Include/
PoolAlloc.h 242 size_t totalBytes; // just an interesting statistic
  /external/skia/src/codec/
SkHeifCodec.cpp 298 size_t totalBytes = swizzleBytes + xformBytes;
299 fStorage.reset(totalBytes);
300 if (totalBytes > 0) {
SkBmpCodec.cpp 141 uint32_t totalBytes;
157 totalBytes = get_int(hBuffer, 2);
176 totalBytes = 0;
558 if (totalBytes <= offset) {
565 // require that RLE Bmps have a valid number of totalBytes, and
566 // Icos skip the header that contains totalBytes.
SkJpegCodec.cpp 140 size_t totalBytes = 0;
170 totalBytes += marker->data_length - kICCMarkerHeaderSize;
174 if (0 == totalBytes) {
180 sk_sp<SkData> iccData = SkData::MakeUninitialized(totalBytes);
633 size_t totalBytes = swizzleBytes + xformBytes;
634 if (totalBytes > 0) {
635 fStorage.reset(totalBytes);
    [all...]
  /external/skqp/src/codec/
SkHeifCodec.cpp 298 size_t totalBytes = swizzleBytes + xformBytes;
299 fStorage.reset(totalBytes);
300 if (totalBytes > 0) {
SkBmpCodec.cpp 141 uint32_t totalBytes;
157 totalBytes = get_int(hBuffer, 2);
176 totalBytes = 0;
557 if (totalBytes <= offset) {
564 // require that RLE Bmps have a valid number of totalBytes, and
565 // Icos skip the header that contains totalBytes.
SkJpegCodec.cpp 140 size_t totalBytes = 0;
170 totalBytes += marker->data_length - kICCMarkerHeaderSize;
174 if (0 == totalBytes) {
180 sk_sp<SkData> iccData = SkData::MakeUninitialized(totalBytes);
633 size_t totalBytes = swizzleBytes + xformBytes;
634 if (totalBytes > 0) {
635 fStorage.reset(totalBytes);
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 220 size_t totalBytes; // just an interesting statistic
  /build/make/tools/signtos/
SignTos.java 238 int totalBytes = 0;
244 totalBytes += bytesRead;
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodeTest.java 375 int totalBytes = hashCode.bits() / 8;
377 for (int bytes = 0; bytes < totalBytes; bytes++) {
  /external/mesa3d/src/mesa/main/
texgetimage.c     [all...]
  /external/mesa3d/src/amd/addrlib/r800/
siaddrlib.cpp     [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 328 int64_t totalBytes = 0;
372 totalBytes += buffer->range_length();
417 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
419 printf("decoded a total of %" PRId64 " bytes\n", totalBytes);
    [all...]

Completed in 959 milliseconds

1 2