Home
last modified time | relevance | path

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

/external/v8/src/
Dcompilation-statistics.cc44 void CompilationStatistics::RecordTotalStats(size_t source_size, in RecordTotalStats() argument
48 source_size += source_size; in RecordTotalStats()
Dcompilation-statistics.h51 void RecordTotalStats(size_t source_size, const BasicStats& stats);
/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py475 source_size = source_stats['size'] & 0xFFFFFFFF
479 if _r_long(raw_size) != source_size:
497 def _code_to_bytecode(code, mtime=0, source_size=0): argument
502 data.extend(_w_long(source_size))
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py665 self.source_size = len(self.source)
670 data.extend(self.init._w_long(self.source_size))
688 return {'mtime': self.source_mtime, 'size': self.source_size}
833 data.extend(self.init._w_long(self.loader.source_size))
/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()
/external/v8/src/wasm/
Dmodule-decoder.cc796 segment->source_size = consume_u32v("source size"); in DecodeDataSegmentInModule()
802 segment->source_size)) { in DecodeDataSegmentInModule()
806 consume_bytes(segment->source_size, "segment data"); in DecodeDataSegmentInModule()
Dwasm-module.cc1152 if (!in_bounds(base, seg.source_size, mem_size)) { in Build()
1428 uint32_t source_size = segment.source_size; in LoadDataSegments() local
1430 if (source_size == 0) continue; in LoadDataSegments()
1432 DCHECK(in_bounds(dest_offset, source_size, in LoadDataSegments()
1437 memcpy(dest, src, source_size); in LoadDataSegments()
Dwasm-module.h99 uint32_t source_size; // end offset in the module bytes. member
/external/swiftshader/third_party/subzero/src/
DWasmTranslator.cpp1515 LOG(out << Id << ": (" << Seg.source_offset << ", " << Seg.source_size in translate()
1599 Seg.source_size)); in translate()
1601 WritePtr += Seg.source_size; in translate()
/external/deqp/external/openglcts/modules/gl/
Dgl3cTextureSwizzleTests.cpp1642 glw::GLint source_size, glw::GLint output_size, void* out_expected_data_low, in calculate_expected_value() argument
1733 source_size -= 1; in calculate_expected_value()
1751 const float max_internal = float(calculate_max_for_size(source_size)); in calculate_expected_value()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.cc2906 int64 source_size = ByteSizeOf(source.shape()); in EmitMemcpy() local
2908 ir_builder_.CreateMemCpy(destination_value, source_value, source_size, 1); in EmitMemcpy()