| /system/ulib/libzbi/ |
| A D | zbi.c | 59 static zbi_result_t zbi_check_internal(const void* base, in zbi_check_internal() 113 zbi_result_t zbi_check(const void* base, zbi_header_t** err) { in zbi_check() 117 zbi_result_t zbi_check_complete(const void* base, zbi_header_t** err) { in zbi_check_complete() 129 zbi_result_t zbi_for_each(const void* base, const zbi_foreach_cb_t cb, in zbi_for_each() 156 zbi_result_t zbi_append_section(void* base, const size_t capacity, in zbi_append_section() 175 zbi_result_t zbi_create_section(void* base, size_t capacity, in zbi_create_section()
|
| /system/dev/lib/mock_mmio_reg/ |
| A D | mock_mmio_reg.cpp | 7 void mmio_fake_read(uintptr_t base, size_t size, zx_off_t off, void* value) { in mmio_fake_read() 34 void mmio_fake_write(uintptr_t base, size_t size, const void* value, zx_off_t off) { in mmio_fake_write()
|
| /system/uapp/ihda/ |
| A D | intel_hda_controller.cpp | 20 static int ihda_dump_sdctl(const char* name, const void* base, size_t offset, bool crlf = true) { in ihda_dump_sdctl() 27 static int ihda_dump32(const char* name, const void* base, size_t offset, bool crlf = true) { in ihda_dump32() 33 static int ihda_dump16(const char* name, const void* base, size_t offset, bool crlf = true) { in ihda_dump16() 39 static int ihda_dump8(const char* name, const void* base, size_t offset, bool crlf = true) { in ihda_dump8()
|
| /system/private/zircon/ |
| A D | stack.h | 14 static inline uintptr_t compute_initial_stack_pointer(uintptr_t base, in compute_initial_stack_pointer()
|
| /system/ulib/libzbi/include/libzbi/ |
| A D | zbi-cpp.h | 21 explicit Zbi(uint8_t* base) in Zbi() 27 Zbi(uint8_t* base, size_t capacity) in Zbi()
|
| /system/ulib/inspector/ |
| A D | utils.cpp | 31 const char* base = strrchr(path, '/'); in path_basename() local 39 const char* base = path_basename(file); in do_print_debug() local 49 const char* base = path_basename(file); in do_print_error() local 125 zx_status_t fetch_build_id(zx_handle_t h, zx_vaddr_t base, char* buf, size_t buf_size) { in fetch_build_id()
|
| A D | dso-list-impl.h | 13 zx_vaddr_t base; member
|
| A D | dso-list.cpp | 37 const char* name, uintptr_t base) { in dsolist_add() 101 zx_vaddr_t base; in inspector_dso_fetch_list() local
|
| /system/ulib/hwreg/include/hwreg/ |
| A D | mmio.h | 38 uintptr_t base() const { return mmio_; } in base() function
|
| /system/dev/display/simple/ |
| A D | simple-bochs.c | 25 #define bochs_vbe_dispi_read(base, reg) pcie_read16(base + (0x500 + (reg << 1))) argument 26 #define bochs_vbe_dispi_write(base, reg, val) pcie_write16(base + (0x500 + (reg << 1)), val) argument
|
| /system/dev/clk/hisi-lib/ |
| A D | hisi-clk.c | 64 volatile uint32_t* base = (volatile uint32_t*)reg; in hisi_sep_clk_toggle_locked() local 101 volatile uint8_t* base = in hisi_clk_toggle() local 105 volatile uint8_t* base = in hisi_clk_toggle() local
|
| /system/ulib/zx/ |
| A D | resource.cpp | 13 uint64_t base, in create()
|
| /system/utest/fuzz-utils/ |
| A D | fuzzer-fixture.cpp | 74 auto base = fbl::StringPrintf("pkgfs/packages/%s/%ld", package, version); in CreatePackage() local
|
| /system/ulib/fbl/include/fbl/ |
| A D | ref_ptr.h | 130 RefPtr(T* ptr, RefPtr<BaseType>&& base) in RefPtr() function 144 static RefPtr Downcast(BaseRefPtr base) { in Downcast()
|
| /system/dev/display/intel-i915/ |
| A D | gtt.h | 31 uint64_t base() const { return region_->base; } in base() function
|
| A D | registers-pipe.h | 425 uint32_t base = registers::CscCoeff::kBaseAddr + 4 * ((i * 2) + (j == 2 ? 1 : 0)); in CscCoeff() local 434 uint32_t base = (4 * component_idx) + (preoffset ? in CscOffset() local 448 template <class RegType> hwreg::RegisterAddr<RegType> GetCscReg(uint32_t base) { in GetCscReg()
|
| /system/dev/board/astro/ |
| A D | astro-usb.c | 65 volatile void* base = buf.vaddr; in astro_usb_tuning() local
|
| /system/utest/fit/ |
| A D | optional_tests.cpp | 16 struct base {}; struct 18 struct base<false> { struct
|
| /system/ulib/launchpad/include/launchpad/ |
| A D | launchpad.h | 131 zx_vaddr_t base; member
|
| /system/dev/block/zxcrypt/ |
| A D | device.h | 132 uint8_t* base; member
|
| /system/ulib/ddk/ |
| A D | mmio-buffer.c | 43 zx_status_t mmio_buffer_init_physical(mmio_buffer_t* buffer, zx_paddr_t base, size_t size, in mmio_buffer_init_physical()
|
| /system/ulib/region-alloc/ |
| A D | region-alloc.cpp | 341 uint64_t base = requested_region.base; in GetRegion() local 420 uint64_t base, in AllocFromAvailLocked()
|
| /system/dev/block/ahci/ |
| A D | sata.c | 25 #define sata_devinfo_u32(base, offs) (((uint32_t)(base)[(offs) + 1] << 16) | ((uint32_t)(base)[(off… argument 26 #define sata_devinfo_u64(base, offs) (((uint64_t)(base)[(offs) + 3] << 48) | ((uint64_t)(base)[(off… argument
|
| /system/utest/fbl/ |
| A D | vector_tests.cpp | 174 auto base = gen.NextValue(); in VectorTestAccessRelease() local 606 auto base = gen.NextValue(); in VectorTestIterator() local 712 auto base = gen.NextValue(); in VectorTestNoAllocCheck() local 727 auto base = gen.NextValue(); in VectorTestNoAllocCheck() local 741 auto base = gen.NextValue(); in VectorTestNoAllocCheck() local
|
| /system/ulib/launchpad/ |
| A D | elf.c | 67 zx_vaddr_t* base, zx_vaddr_t* entry) { in elf_load_finish()
|