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

1234567891011>>

/barrelfish-2018-10-04/usr/drivers/megaraid/
H A Dlinux_defs.h21 lpaddr_t base; member in struct:frame_identity
/barrelfish-2018-10-04/include/arch/arm/barrelfish_kpi/
H A Dunknown_arch.h32 static inline void cache_flush_range(void *base, size_t len) argument
/barrelfish-2018-10-04/usr/monitor/include/
H A Dram_alloc.h18 errval_t mon_ram_free(struct capability *cap_raw, genpaddr_t base, uint8_t bits);
/barrelfish-2018-10-04/lib/skb/
H A Dskb_sscanf.c135 int base; /* base argument to conversion function */ local
148 base = 0; /* XXX just to keep gcc happy */
209 base = 10;
214 base = 0;
220 base = 8;
226 base = 10;
234 base = 16;
260 base = 16;
469 * base
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/snmp/
H A Dasn1_dec.c53 u16_t plen, base; local
58 base = plen;
62 msg_ptr += ofs - base;
85 u16_t plen, base; local
90 base = plen;
94 msg_ptr += ofs - base;
215 u16_t plen, base; local
220 base = plen;
224 msg_ptr += ofs - base;
295 u16_t plen, base; local
377 u16_t plen, base; local
519 u16_t plen, base; local
[all...]
/barrelfish-2018-10-04/lib/mm/
H A Dmm.c125 static errval_t add_node(struct mm *mm, genpaddr_t base, uint8_t sizebits, argument
131 assert(base >= nodebase &&
132 base + UNBITS_GENPA(sizebits) <= nodebase + UNBITS_GENPA(nodesizebits));
135 PRIxGENPADDR " %d %d\n", base, base + UNBITS_GENPA(sizebits),
140 if ((base == nodebase && sizebits == nodesizebits)
160 cslot_t nchild = (base - nodebase) / UNBITS_GENPA(childsizebits);
163 return add_node(mm, base, sizebits, node->children[nchild],
199 cslot_t nchild = (base - nodebase) / UNBITS_GENPA(childsizebits);
219 cslot_t childslot = (base
496 mm_init(struct mm *mm, enum objtype objtype, genpaddr_t base, uint8_t sizebits, uint8_t maxchildbits, slab_refill_func_t slab_refill_func, slot_alloc_t slot_alloc_func, slot_refill_t slot_refill_func, void *slot_alloc_inst, bool delete_chunked) argument
544 mm_add(struct mm *mm, struct capref cap, uint8_t sizebits, genpaddr_t base) argument
596 mm_add_multi(struct mm *mm, struct capref cap, gensize_t size, genpaddr_t base) argument
764 mm_realloc_range(struct mm *mm, uint8_t sizebits, genpaddr_t base, struct capref *retcap) argument
836 mm_free(struct mm *mm, struct capref cap, genpaddr_t base, uint8_t sizebits) argument
911 mm_relinquish_range(struct mm *mm, genpaddr_t base, genpaddr_t limit, struct mem_cap *ret, size_t retlen) argument
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/ipv4/
H A Dinet.c84 u8_t base; local
99 base = 10;
103 base = 16;
106 base = 8;
110 val = (val * base) + (int) (c - '0');
112 } else if (base == 16 && isxdigit(c)) {
/barrelfish-2018-10-04/lib/posixcompat/
H A Dsbrk.c42 static void *base; local
51 err = vspace_map_anon_nomalloc(&base, &memobj_, &vregion_,
62 // base, base + SBRK_REGION_BYTES);
73 void *ret = base + orig_offset;
77 return base + offset;
86 void *ret = base + orig_offset;
122 void *ret = base + orig_offset;
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Dserial.c28 xeon_phi_serial_t base; member in struct:xeon_phi_arg
68 sctrl = xeon_phi_serial_ctrl_rd(&xarg->base);
75 sdata = xeon_phi_serial_data_rd(&xarg->base);
131 xeon_phi_serial_ctrl_rawwr(&xarg->base, xeon_phi_serial_reset);
194 xeon_phi_serial_initialize(&recv_thread_arg.base, XEON_PHI_MMIO_TO_SBOX(phi));
196 xeon_phi_serial_ctrl_rawwr(&recv_thread_arg.base, xeon_phi_serial_reset);
H A Dsysmem_caps.c39 /// offset to the base address
210 lvaddr_t base = 0; local
212 base += 31 * XEON_PHI_SYSMEM_PAGE_SIZE;
213 base += requested_size_other;
216 base += XEON_PHI_SYSMEM_PAGE_SIZE << 1;
217 base += requested_size;
221 lvaddr_t base = (2UL * 1024 * 1024 * 1024); local
222 base += requested_size;
228 debug_printf("requesting: %lx, %u bits\n", base, bits);
231 err = sysmem_cap_request(base, bit
500 sysmem_cap_request(lpaddr_t base, uint8_t bits, struct capref *frame) argument
[all...]
/barrelfish-2018-10-04/usr/tests/capops/
H A Dretype.c94 if (bor_id.base != fi.base || fi.bytes != BASE_PAGE_SIZE) {
95 print_unexpected("", bor_id.base, "4kB", fi.base, fi.bytes);
108 if (bor_id.base + BASE_PAGE_SIZE != fi.base || fi.bytes != 4*BASE_PAGE_SIZE) {
109 print_unexpected("", bor_id.base + BASE_PAGE_SIZE, "16kB", fi.base, fi.bytes);
130 if (bor_id.base + (2+tmp.slot)*BASE_PAGE_SIZE != fi.base ||
[all...]
/barrelfish-2018-10-04/tools/elver/
H A Delver.c49 #define PML4_BASE(base) (((uint64_t)(base) >> 39) & PTABLE_MASK)
50 #define PDPT_BASE(base) (((uint64_t)(base) >> 30) & PTABLE_MASK)
51 #define PDIR_BASE(base) (((uint64_t)(base) >> 21) & PTABLE_MASK)
52 #define PTABLE_BASE(base) (((uint64_t)(base) >> 12) & PTABLE_MASK)
113 } base; member in union:ptable_entry
130 static errval_t linear_alloc(void *s, genvaddr_t base, size_ argument
211 paging_map_table(union pdir_entry *entry, uint64_t base) argument
221 paging_map_large(union ptable_entry *entry, uint64_t base, uint64_t bitmap) argument
240 set_elf_headers(uint32_t base) argument
[all...]
/barrelfish-2018-10-04/lib/libc/locale/
H A Dxlocale.c221 static int dupcomponent(int type, locale_t base, locale_t new) argument
225 struct xlocale_component *src = base->components[type];
227 if (&__xlocale_global_locale == base) {
233 } else if (base->components[type]) {
234 new->components[type] = xlocale_retain(base->components[type]);
236 /* If the component was NULL, return success - if base is a
250 locale_t newlocale(int mask, const char *locale, locale_t base) argument
264 FIX_LOCALE(base);
265 copyflags(new, base);
288 if (!dupcomponent(type, base, ne
303 duplocale(locale_t base) argument
[all...]
H A Dnextwctype.c47 _RuneEntry *base, *re; local
66 base = rr->__ranges;
68 re = base + (lim >> 1);
72 base = re + 1;
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/
H A Domap44xx.c510 lvaddr_t base; local
511 err = map_device_register(OMAP44XX_MAP_L4_CFG_HSUSBHOST, OMAP44XX_MAP_L4_CFG_HSUSBHOST_SIZE, &base);
515 omap44xx_hsusbhost_initialize(&hsusbhost_base, (mackerel_addr_t) base);
516 omap44xx_ehci_initialize(&ehci_base, (mackerel_addr_t) base + 0xC00);
518 err = map_device_register(OMAP44XX_MAP_L4_CFG_HSUSBTLL, OMAP44XX_MAP_L4_CFG_HSUSBTLL_SIZE, &base);
522 omap44xx_usbtllhs_config_initialize(&usbtllhs_config_base, (mackerel_addr_t) base);
525 err = map_device_register(OMAP44XX_MAP_L4_WKUP_SRCM, OMAP44XX_MAP_L4_WKUP_SRCM_SIZE, &base);
529 omap44xx_scrm_initialize(&srcm_base, (mackerel_addr_t) base);
531 err = map_device_register(OMAP44XX_MAP_L4_WKUP_SYSCTRL_PADCONF_WKUP, OMAP44XX_MAP_L4_WKUP_SYSCTRL_PADCONF_WKUP_SIZE, &base);
535 omap44xx_sysctrl_padconf_wkup_initialize(&sysctrl_padconf_wkup_base, (mackerel_addr_t) base);
585 platform_checkup(uintptr_t base, int argc, char *argv[]) argument
[all...]
/barrelfish-2018-10-04/kernel/arch/armv8/
H A Dplat_arm_vm.c25 lvaddr_t base = local_phys_to_mem(uart_base[port]); local
26 pl011_init(port, base, initialize_hw);
/barrelfish-2018-10-04/kernel/include/arch/x86_32/
H A Dx86.h65 static inline void monitor(lvaddr_t base, uint32_t extensions, uint32_t hints) argument
70 "a" (base),
/barrelfish-2018-10-04/kernel/include/arch/x86_64/
H A Dpaging_kernel_arch.h48 * Assigns given physical base address to the CR3 register,
52 * \param addr Physical base address of page table.
59 static lvaddr_t inline paging_map_device(lpaddr_t base, size_t size) argument
61 return paging_x86_64_map_device(base, size);
/barrelfish-2018-10-04/include/
H A Dftw.h52 int base; member in struct:FTW
H A Dgrubmenu.h13 uint64_t base; member in struct:menu_mmap_entry
/barrelfish-2018-10-04/usr/monitor/
H A Ddomain.c25 static errval_t reclaim_memory(genpaddr_t base, uint8_t bits) argument
37 .base = base,
58 err = b->rpc_tx_vtbl.free_monitor(b, ramcap, base, bits, &result);
106 /* printf("%s.%d: RAM cap deleted, base = %" PRIxGENPADDR ", bits = %u\n", */
107 /* disp_name(), disp_get_core_id(), ram->base, ram->bits); */
109 err = reclaim_memory(u->ram.base, log2ceil(u->ram.bytes));
/barrelfish-2018-10-04/include/vm/
H A Dvm_unix.c80 vm_offset_t new, old, base; local
94 base = round_page((vm_offset_t) vm->vm_daddr);
95 old = base + ctob(vm->vm_dsize);
96 if (new > base) {
101 if (new - base > datalim && new > old) {
109 } else if (new < base) {
133 error = racct_set(td->td_proc, RACCT_DATA, new - base);
143 old - base);
154 old - base);
178 RACCT_DATA, old - base);
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dwidget.tcl60 ## Specify the "type", "base", & "components" keys of the $CLASS global array
64 ## "base", "basecmd", "container", "class", any option specified in the
205 if {[string compare $class(type) $class(base)]} {
206 ## If -type and -base don't match, we need a special setup
207 lappend dataArrayVals "base \$w.[list [lindex $components(base) 1]]" \
208 "basecmd ${namesp}::\$w.[list [lindex $components(base) 1]]" \
211 ## If the base widget is not the container, then we want to rename
216 #interp alias {} \$base {} ::Widget::handle $namesp \$w
217 set renamingCmd "rename \$base \
[all...]
/barrelfish-2018-10-04/lib/elf/
H A Delf.c30 * This function loads an ELF binary image, based at 'base' and of size
36 * \param base Base address of ELF binary image in memory.
39 * \param ret_tlsbase Used to return TLS block base address
43 void *state, lvaddr_t base,
48 struct Elf64_Ehdr *head = (struct Elf64_Ehdr *)base;
56 return elf32_load(em_machine, allocate_func, state, base, size,
60 return elf64_load(em_machine, allocate_func, state, base, size,
68 void *state, lvaddr_t base,
71 return elf_load_tls(em_machine, allocate_func, state, base, size,
116 size_t elf_virtual_size(lvaddr_t base) argument
42 elf_load_tls(uint16_t em_machine, elf_allocator_fn allocate_func, void *state, lvaddr_t base, size_t size, genvaddr_t *retentry, genvaddr_t *ret_tlsbase, size_t *ret_tlsinitlen, size_t *ret_tlstotallen) argument
67 elf_load(uint16_t em_machine, elf_allocator_fn allocate_func, void *state, lvaddr_t base, size_t size, genvaddr_t *retentry) argument
140 elf_virtual_base(lvaddr_t base) argument
[all...]
/barrelfish-2018-10-04/lib/barrelfish/
H A Ddebug.c143 cap->u.physaddr.base, cap->u.physaddr.bytes);
147 cap->u.ram.base, cap->u.ram.bytes);
171 cap->u.frame.base, cap->u.frame.bytes);
175 cap->u.frame.base, cap->u.devframe.bytes);
179 cap->u.vnode_arm_l1.base);
183 cap->u.vnode_arm_l2.base);
187 cap->u.vnode_aarch64_l0.base);
191 cap->u.vnode_aarch64_l1.base);
195 cap->u.vnode_aarch64_l2.base);
199 cap->u.vnode_aarch64_l3.base);
[all...]

Completed in 231 milliseconds

1234567891011>>