Home
last modified time | relevance | path

Searched refs:module_end (Results 1 – 10 of 10) sorted by relevance

/external/elfutils/libdwfl/
Ddwfl_segment_report_module.c136 handle_file_note (GElf_Addr module_start, GElf_Addr module_end, in handle_file_note() argument
182 if (firstix != -1 && mstart < module_end) in handle_file_note()
184 if (mend >= module_end) in handle_file_note()
435 GElf_Addr module_end = 0; in dwfl_segment_report_module() local
573 if (module_end < vaddr_end) in dwfl_segment_report_module()
574 module_end = vaddr_end; in dwfl_segment_report_module()
616 module_end += bias; in dwfl_segment_report_module()
632 if (module_start <= module->l_ld && module->l_ld < module_end) in dwfl_segment_report_module()
640 && module->l_ld < module_end + fixup) in dwfl_segment_report_module()
643 module_end += fixup; in dwfl_segment_report_module()
[all …]
/external/v8/src/wasm/
Dmodule-decoder.cc29 ModuleDecoder(Zone* zone, const byte* module_start, const byte* module_end, in ModuleDecoder() argument
31 : Decoder(module_start, module_end), module_zone(zone), asm_js_(asm_js) { in ModuleDecoder()
47 module->module_end = limit_; in DecodeModule()
515 const byte* module_start, const byte* module_end, in DecodeWasmModule() argument
517 size_t size = module_end - module_start; in DecodeWasmModule()
518 if (module_start > module_end) return ModuleError("start > end"); in DecodeWasmModule()
521 ModuleDecoder decoder(zone, module_start, module_end, asm_js); in DecodeWasmModule()
Dwasm-module.h91 const byte* module_end; // end address for the module bytes. member
115 size_t size = module_end - module_start; in BoundsCheck()
183 const byte* module_end, bool asm_js = false);
Dmodule-decoder.h16 const byte* module_start, const byte* module_end,
Dwasm-module.cc415 const byte* module_end, bool asm_js) { in CompileAndRunWasmModule() argument
421 DecodeWasmModule(isolate, &zone, module_start, module_end, false, false); in CompileAndRunWasmModule()
/external/clang/include/clang/Lex/
DModuleMap.h510 module_iterator module_end() const { return Modules.end(); } in module_end() function
/external/v8/test/unittests/wasm/
Dmodule-decoder-unittest.cc16 ModuleResult DecodeModule(const byte* module_start, const byte* module_end) { in DecodeModule() argument
17 return DecodeWasmModule(nullptr, zone(), module_start, module_end, false, in DecodeModule()
/external/clang/lib/Lex/
DHeaderSearch.cpp1380 MEnd = ModMap.module_end(); in collectAllModules()
/external/clang/include/clang/Basic/
DTokenKinds.def764 ANNOTATION(module_end)
/external/clang/lib/Frontend/
DCompilerInstance.cpp1681 E = MMap.module_end(); I != E; ++I) { in loadGlobalModuleIndex()