Home
last modified time | relevance | path

Searched refs:source_size (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/
Dcompilation-statistics.cc40 void CompilationStatistics::RecordTotalStats(size_t source_size, in RecordTotalStats() argument
42 source_size += source_size; in RecordTotalStats()
Dcompilation-statistics.h45 void RecordTotalStats(size_t source_size, const BasicStats& stats);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Ds3put207 source_size = os.stat(source_path).st_size
208 bytes_per_chunk = max(int(math.sqrt(5242880) * math.sqrt(source_size)),
210 chunk_amount = int(math.ceil(source_size / float(bytes_per_chunk)))
215 remaining_bytes = source_size - offset
/external/v8/src/wasm/
Dwasm-module.cc173 CHECK_LE(segment.source_size, mem_size); in LoadDataSegments()
174 CHECK_LE(segment.dest_addr + segment.source_size, mem_size); in LoadDataSegments()
177 segment.source_size); in LoadDataSegments()
Dwasm-module.h80 uint32_t source_size; // end offset in the module bytes. member
Dmodule-decoder.cc353 segment->source_size = in DecodeDataSegmentInModule()
/external/v8/test/unittests/wasm/
Dmodule-decoder-unittest.cc524 EXPECT_EQ(5, segment->source_size); in TEST_F()
562 EXPECT_EQ(3, segment->source_size); in TEST_F()
621 EXPECT_EQ(4, s0->source_size); in TEST_F()
626 EXPECT_EQ(10, s1->source_size); in TEST_F()
/external/parameter-framework/asio-1.10.6/include/asio/
Dbuffer.hpp1148 std::size_t source_size = buffer_size(source); in buffer_copy() local
1149 std::size_t n = target_size < source_size ? target_size : source_size; in buffer_copy()