Home
last modified time | relevance | path

Searched refs:image_base (Results 1 – 16 of 16) sorted by relevance

/external/u-boot/arch/arm/lib/
Dcrt0_arm_efi.S17 .globl image_base symbol
18 image_base: label
21 .long pe_header - image_base /* Offset to the PE header */
45 .long _start - image_base /* AddressOfEntryPoint */
46 .long _start - image_base /* BaseOfCode */
61 .long _edata - image_base /* SizeOfImage */
66 .long _start - image_base /* SizeOfHeaders */
109 .long _start - image_base /* VirtualAddress */
111 .long _start - image_base /* PointerToRawData */
127 adr r0, image_base
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dintegral_image.h30 explicit IntegralImage(const Image<uint8_t>& image_base) in IntegralImage() argument
31 : Image<uint32_t>(image_base.GetWidth(), image_base.GetHeight()) { in IntegralImage()
32 Recompute(image_base); in IntegralImage()
38 void Recompute(const Image<uint8_t>& image_base) { in Recompute() argument
39 SCHECK(image_base.GetWidth() == GetWidth() && in Recompute()
40 image_base.GetHeight() == GetHeight(), "Dimensions don't match!"); in Recompute()
45 for (int x = 0; x < image_base.GetWidth(); ++x) { in Recompute()
46 x_sum += image_base[0][x]; in Recompute()
52 for (int y = 1; y < image_base.GetHeight(); ++y) { in Recompute()
59 const uint8_t* curr_delta = image_base[y]; in Recompute()
[all …]
/external/u-boot/lib/efi_loader/
Defi_image_loader.c211 uint64_t image_base; in efi_load_pe() local
255 image_base = opt->ImageBase; in efi_load_pe()
271 image_base = opt->ImageBase; in efi_load_pe()
303 (unsigned long)image_base) != EFI_SUCCESS) { in efi_load_pe()
315 loaded_image_info->image_base = efi; in efi_load_pe()
/external/compiler-rt/lib/ubsan/
Dubsan_type_hash_win.cc64 char *image_base = ((char *)obj_locator) - obj_locator->obj_locator_addr; in getDynamicTypeInfoFromVtable() local
65 tinfo = (std::type_info *)(image_base + obj_locator->rtti_addr); in getDynamicTypeInfoFromVtable()
/external/libunwind_llvm/src/
DAddressSpace.hpp507 Elf_Addr image_base = in findUnwindSections()
520 if (pinfo->dlpi_addr == 0 && phdr->p_vaddr < image_base) in findUnwindSections()
521 begin = begin + image_base; in findUnwindSections()
533 if (pinfo->dlpi_addr == 0 && phdr->p_vaddr < image_base) in findUnwindSections()
534 eh_frame_hdr_start = eh_frame_hdr_start + image_base; in findUnwindSections()
/external/u-boot/lib/
Dinitcall.c23 reloc_ofs = (unsigned long)image_base; in initcall_run_list()
/external/u-boot/arch/x86/lib/
Dcrt0_x86_64_efi.S24 lea image_base(%rip), %rcx
Dcrt0_ia32_efi.S25 addl $image_base-0b,%eax # %eax = ldbase
Delf_x86_64_efi.lds13 image_base = .; symbol
Delf_ia32_efi.lds13 image_base = .; symbol
/external/u-boot/include/
Datf_common.h122 uintptr_t image_base; /* physical address of base of image */ member
Defi.h354 extern char image_base[];
Defi_api.h330 void *image_base; member
/external/boringssl/src/crypto/test/
Dabi_test.cc265 DWORD64 image_base; in Step() local
267 RtlLookupFunctionEntry(ctx_.Rip, &image_base, nullptr); in Step()
283 RtlVirtualUnwind(UNW_FLAG_NHANDLER, image_base, ctx_.Rip, entry, &ctx_, in Step()
/external/u-boot/cmd/
Dbootefi.c319 mdp->start_address = (uintptr_t)loaded_image_info.image_base; in do_bootefi_exec()
/external/clang/include/clang/Driver/
DOptions.td1306 def image__base : Separate<["-"], "image_base">;