Home
last modified time | relevance | path

Searched refs:source_size (Results 1 – 12 of 12) 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.py471 def _validate_timestamp_pyc(data, source_mtime, source_size, name, argument
494 if (source_size is not None and
495 _r_long(data[12:16]) != (source_size & 0xFFFFFFFF)):
536 def _code_to_timestamp_pyc(code, mtime=0, source_size=0): argument
541 data.extend(_w_long(source_size))
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py711 self.source_size = len(self.source)
717 data.extend(self.init._w_long(self.source_size))
735 return {'mtime': self.source_mtime, 'size': self.source_size}
881 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/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/v8/src/wasm/
Dmodule-compiler.cc1333 uint32_t source_size = segment.source.length(); in LoadDataSegments() local
1335 if (source_size == 0) continue; in LoadDataSegments()
1337 DCHECK(in_bounds(dest_offset, source_size, instance->memory_size())); in LoadDataSegments()
1340 memcpy(dest, src, source_size); in LoadDataSegments()
/external/u-boot/lib/efi_loader/
Defi_boottime.c1565 efi_uintn_t source_size, in efi_load_image() argument
1573 file_path, source_buffer, source_size, image_handle); in efi_load_image()
/external/u-boot/include/
Defi_api.h110 efi_uintn_t source_size, efi_handle_t *image);
/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.cc3001 int64 source_size = ByteSizeOf(source.shape()); in EmitMemcpy() local
3004 /*SrcAlign=*/1, source_size); in EmitMemcpy()
/external/v8/src/ic/
Daccessor-assembler.cc3487 Node* source_size = LoadMapInstanceSizeInWords(source_map); in GenerateCloneObjectIC() local
3491 BuildFastLoop(source_start, source_size, in GenerateCloneObjectIC()