Home
last modified time | relevance | path

Searched refs:kChunkSize (Results 1 – 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
DStreamingMemoryObject.h46 static const uint32_t kChunkSize = 4096 * 4; variable
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize); in fetchToPos()
68 Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped], kChunkSize); in fetchToPos()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DStreamingMemoryObject.h46 static const uint32_t kChunkSize = 4096 * 4; variable
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize); in fetchToPos()
68 kChunkSize); in fetchToPos()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DStreamingMemoryObject.cpp81 size_t pos = BytesRead + kChunkSize; in getExtent()
84 pos += kChunkSize; in getExtent()
136 : Bytes(kChunkSize), Streamer(std::move(Streamer)), BytesRead(0), in StreamingMemoryObject()
138 BytesRead = this->Streamer->GetBytes(&Bytes[0], kChunkSize); in StreamingMemoryObject()
/third_party/node/src/tracing/
Dnode_trace_buffer.cc84 chunk_index * TraceBufferChunk::kChunkSize + event_index) << 1) + id_; in MakeHandle()
94 *chunk_index = indices / TraceBufferChunk::kChunkSize; in ExtractHandle()
95 *event_index = indices % TraceBufferChunk::kChunkSize; in ExtractHandle()
Dnode_trace_buffer.h39 size_t Capacity() const { return max_chunks_ * TraceBufferChunk::kChunkSize; } in Capacity()
/third_party/mesa3d/src/gtest/src/
Dgtest-printers.cc89 const size_t kChunkSize = 64; in PrintBytesInObjectToImpl() local
96 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); in PrintBytesInObjectToImpl()
99 const size_t resume_pos = (count - kChunkSize + 1)/2*2; in PrintBytesInObjectToImpl()
/third_party/googletest/googletest/src/
Dgtest-printers.cc94 const size_t kChunkSize = 64; in PrintBytesInObjectToImpl() local
101 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); in PrintBytesInObjectToImpl()
104 const size_t resume_pos = (count - kChunkSize + 1)/2*2; in PrintBytesInObjectToImpl()
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-bignum.cpp240 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
245 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
385 if ((1 << (2 * (kChunkSize - kBigitSize))) <= used_bigits_) { in Square()
795 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + in SubtractTimes()
804 borrow = difference >> (kChunkSize - 1); in SubtractTimes()
Ddouble-conversion-bignum.h118 static const int kChunkSize = sizeof(Chunk) * 8; variable
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-bignum.cpp240 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
245 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
385 if ((1 << (2 * (kChunkSize - kBigitSize))) <= used_bigits_) { in Square()
795 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + in SubtractTimes()
804 borrow = difference >> (kChunkSize - 1); in SubtractTimes()
Ddouble-conversion-bignum.h118 static const int kChunkSize = sizeof(Chunk) * 8; variable
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dbignum.cc226 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
231 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
371 if ((1 << (2 * (kChunkSize - kBigitSize))) <= used_bigits_) { in Square()
781 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + in SubtractTimes()
790 borrow = difference >> (kChunkSize - 1); in SubtractTimes()
Dbignum.h104 static const int kChunkSize = sizeof(Chunk) * 8; variable
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-bignum.cpp240 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
245 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
385 if ((1 << (2 * (kChunkSize - kBigitSize))) <= used_bigits_) { in Square()
795 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + in SubtractTimes()
804 borrow = difference >> (kChunkSize - 1); in SubtractTimes()
Ddouble-conversion-bignum.h118 static const int kChunkSize = sizeof(Chunk) * 8; variable
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-bignum.cpp240 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
245 borrow = difference >> (kChunkSize - 1); in SubtractBignum()
371 if ((1 << (2 * (kChunkSize - kBigitSize))) <= used_digits_) { in Square()
767 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + in SubtractTimes()
774 borrow = difference >> (kChunkSize - 1); in SubtractTimes()
Ddouble-conversion-bignum.h117 static const int kChunkSize = sizeof(Chunk) * 8; variable
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-printers.h736 const size_t kChunkSize = 8; in UniversalPrintArray() local
743 PrintRawArrayTo(begin, kChunkSize, os); in UniversalPrintArray()
745 PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os); in UniversalPrintArray()
/third_party/protobuf/objectivec/
DGPBArray.m42 #define kChunkSize 16 macro
43 #define CapacityFromCount(x) (((x / kChunkSize) + 1) * kChunkSize)
63 //% if ((NEW_COUNT + (2 * kChunkSize)) < _capacity) {
514 if ((newCount + (2 * kChunkSize)) < _capacity) {
521 if ((0 + (2 * kChunkSize)) < _capacity) {
764 if ((newCount + (2 * kChunkSize)) < _capacity) {
771 if ((0 + (2 * kChunkSize)) < _capacity) {
1014 if ((newCount + (2 * kChunkSize)) < _capacity) {
1021 if ((0 + (2 * kChunkSize)) < _capacity) {
1264 if ((newCount + (2 * kChunkSize)) < _capacity) {
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DUniformTest.cpp986 static const size_t kChunkSize = 4; in CheckOneElement() local
987 std::array<T, 3 * kChunkSize> buffer; in CheckOneElement()
993 getUniformv(program, location, &buffer[kChunkSize]); in CheckOneElement()
994 for (size_t i = 0; i < kChunkSize; i++) in CheckOneElement()
998 for (size_t i = kChunkSize + components; i < buffer.size(); i++) in CheckOneElement()
/third_party/googletest/googletest/include/gtest/
Dgtest-printers.h790 const size_t kChunkSize = 8;
797 PrintRawArrayTo(begin, kChunkSize, os);
799 PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DUniformTest.cpp999 static const size_t kChunkSize = 4; in CheckOneElement() local
1000 std::array<T, 3 * kChunkSize> buffer; in CheckOneElement()
1006 getUniformv(program, location, &buffer[kChunkSize]); in CheckOneElement()
1007 for (size_t i = 0; i < kChunkSize; i++) in CheckOneElement()
1011 for (size_t i = kChunkSize + components; i < buffer.size(); i++) in CheckOneElement()
/third_party/skia/third_party/externals/piex/src/
Dtiff_parser.cc328 const size_t kChunkSize = 1048576; in GetData() local
333 size_t chunk_length = kChunkSize; in GetData()
334 if (length - data.size() < kChunkSize) { in GetData()
/third_party/flutter/skia/third_party/externals/piex/src/
Dtiff_parser.cc328 const size_t kChunkSize = 1048576; in GetData() local
333 size_t chunk_length = kChunkSize; in GetData()
334 if (length - data.size() < kChunkSize) { in GetData()
/third_party/protobuf/src/google/protobuf/
Dmap_test.cc357 const int kChunkSize = 1000; in TEST_F() local
358 GOOGLE_CHECK_EQ(kTestSize % kChunkSize, 0); in TEST_F()
361 for (int i = 0; i < kChunkSize; i++) { in TEST_F()
369 if (times.size() < .99 * kTestSize / kChunkSize) { in TEST_F()

12