Searched refs:base (Results 76 - 100 of 324) sorted by relevance

1234567891011>>

/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dopen_memstream.c16 ssize_t base; local
23 base = (size_t[3]){0, c->pos, c->len}[whence];
24 if (off < -base || off > SSIZE_MAX - base)
26 return c->pos = base + off;
/fuchsia/zircon/kernel/dev/pcie/
H A Dpcie_bridge.cpp131 uint32_t base, limit; local
134 base = cfg_->Read(PciConfig::kIoBase);
137 supports_32bit_pio_ = ((base & 0xF) == 0x1) && ((base & 0xF) == (limit& 0xF));
138 io_base_ = (base & ~0xF) << 8;
152 base = cfg_->Read(PciConfig::kPrefetchableMemoryBase);
155 bool supports_64bit_pf_mem = ((base & 0xF) == 0x1) && ((base & 0xF) == (limit& 0xF));
156 pf_mem_base_ = (base & ~0xF) << 16;
172 printf("\tio base
[all...]
/fuchsia/zircon/kernel/tests/
H A Dresource_tests.cpp61 uint64_t base = 0; local
68 EXPECT_EQ(ResourceDispatcher::Create(&disp1, &rights, ZX_RSRC_KIND_MMIO, base, size,
75 EXPECT_EQ(ResourceDispatcher::Create(&disp2, &rights, ZX_RSRC_KIND_MMIO, base, size,
92 uint64_t base = 0; local
99 EXPECT_EQ(ResourceDispatcher::Create(&disp1, &rights, ZX_RSRC_KIND_MMIO, base, size,
106 EXPECT_EQ(ResourceDispatcher::Create(&disp2, &rights, ZX_RSRC_KIND_MMIO, base, size,
/fuchsia/zircon/kernel/arch/x86/
H A Duser_copy.cpp55 static bool can_access(const void* base, size_t len) { argument
56 LTRACEF("can_access: base %p, len %zu\n", base, len);
62 return is_user_address_range((vaddr_t)base, len);
/fuchsia/zircon/system/dev/board/astro/
H A Dastro-gpio.c22 .base = S905D2_GPIO_BASE,
26 .base = S905D2_GPIO_A0_BASE,
30 .base = S905D2_GPIO_INTERRUPT_BASE,
H A Dastro-thermal.c18 .base = S905D2_TEMP_SENSOR_BASE,
22 .base = S905D2_GPIO_A0_BASE,
26 .base = S905D2_HIU_BASE,
30 .base = S905D2_AO_PWM_CD_BASE,
/fuchsia/zircon/system/dev/board/vim/
H A Dvim-gpio.c24 .base = S912_GPIO_BASE,
28 .base = S912_GPIO_A0_BASE,
32 .base = S912_GPIO_INTERRUPT_BASE,
/fuchsia/zircon/kernel/platform/pc/
H A Dplatform_pcie.cpp112 res = enumerate_e820([](uint64_t base, uint64_t size, bool is_mem, void* ctx) -> void {
117 res = pcie->SubtractBusRegion(base, size, PciAddrSpace::MMIO);
125 base, base + size, res);
H A Dplatform_p.h40 typedef void (*enumerate_e820_callback)(uint64_t base, uint64_t size, bool is_mem, void* ctx);
/fuchsia/zircon/system/dev/audio/intel-hda/codecs/qemu/
H A Dqemu-codec.h10 #include <intel-hda/codec-utils/codec-driver-base.h>
/fuchsia/zircon/system/dev/board/gauss/
H A Dgauss-pcie.c23 .base = 0xf9800000,
27 .base = 0xff646000,
31 .base = 0xffd01080,
35 .base = 0xff63c000,
/fuchsia/zircon/system/ulib/inspector/
H A Dutils.cpp31 const char* base = strrchr(path, '/'); local
32 if (base == nullptr)
34 return base + 1;
39 const char* base = path_basename(file); local
42 fprintf(stderr, "%s:%d: %s: ", base, line, func);
49 const char* base = path_basename(file); local
52 fprintf(stderr, "inspector: %s:%d: ", base, line);
125 zx_status_t fetch_build_id(zx_handle_t h, zx_vaddr_t base, char* buf, size_t buf_size) { argument
126 zx_vaddr_t vaddr = base;
/fuchsia/zircon/system/ulib/intel-hda/
H A Drules.mk14 $(LOCAL_DIR)/codec-utils/codec-driver-base.cpp \
15 $(LOCAL_DIR)/codec-utils/stream-base.cpp \
/fuchsia/zircon/system/ulib/launchpad/
H A Delf.h38 zx_vaddr_t* base, zx_vaddr_t* entry);
/fuchsia/zircon/third_party/lib/jitterentropy/
H A DMakefile15 LIBMAJOR=$(shell cat jitterentropy-base.c | grep define | grep MAJVERSION | awk '{print $$3}')
16 LIBMINOR=$(shell cat jitterentropy-base.c | grep define | grep MINVERSION | awk '{print $$3}')
17 LIBPATCH=$(shell cat jitterentropy-base.c | grep define | grep PATCHLEVEL | awk '{print $$3}')
21 C_SRCS := jitterentropy-base.c
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dutil_externs.h8 char **restrict endptr, int base);
/fuchsia/zircon/third_party/ulib/uboringssl/include/openssl/
H A Dcpu.h64 #include <openssl/base.h>
H A Dex_data.h112 #include <openssl/base.h>
H A Dmd4.h60 #include <openssl/base.h>
H A Dmd5.h60 #include <openssl/base.h>
/fuchsia/zircon/kernel/vm/
H A Dvm.cpp74 return vm_mapping->Protect(vm_mapping->base(), vm_mapping->size(), arch_mmu_flags);
126 vaddr_t base; member in struct:temp_region
132 .base = (vaddr_t)__code_start,
138 .base = (vaddr_t)__rodata_start,
144 .base = (vaddr_t)__data_start,
150 .base = (vaddr_t)__bss_start,
158 ASSERT(IS_PAGE_ALIGNED(region->base));
161 region->base, region->base + region->size, region->arch_mmu_flags, region->name);
163 zx_status_t status = aspace->ReserveSpace(region->name, region->size, region->base);
[all...]
/fuchsia/zircon/kernel/object/include/object/
H A Dvm_address_region_dispatcher.h41 zx_status_t Protect(vaddr_t base, size_t len, uint32_t flags);
43 zx_status_t Unmap(vaddr_t base, size_t len);
/fuchsia/zircon/kernel/syscalls/
H A Dresource.cpp27 // |parent_rsrc| must be a resource of kind ZX_RSRC_KIND_ROOT. |base|
28 // and detail an inclusive range from |base| to |base| + |size| for
32 uint64_t base,
71 status = ResourceDispatcher::Create(&child, &rights, kind, base, size, flags, name);
30 sys_resource_create(zx_handle_t parent_rsrc, uint32_t options, uint64_t base, size_t size, user_in_ptr<const char> _name, size_t name_size, user_out_handle* resource_out) argument
/fuchsia/zircon/kernel/target/pc/multiboot/
H A Dtrampoline.c46 const struct { uint16_t limit; void* base; } __PACKED lgdt = { member in struct:__anon114
47 .base = trampoline->gdt,
/fuchsia/zircon/system/dev/board/imx8mevk/
H A Dimx8mevk-sdhci.c21 .base = IMX8M_AIPS_USDHC1_BASE,
26 .base = IMX8M_AIPS_USDHC2_BASE,

Completed in 183 milliseconds

1234567891011>>