HelenOS sources

base               41 abi/include/abi/ddi/irq.h 	uintptr_t base;
base               43 boot/arch/arm64/include/arch/relocate.h extern efi_status_t self_relocate(uintptr_t base, const elf_dyn_t *dyn);
base               45 boot/arch/arm64/src/relocate.c efi_status_t self_relocate(uintptr_t base, const elf_dyn_t *dyn)
base               55 boot/arch/arm64/src/relocate.c 			rela = (const elf_rela_t *) (base + dyn->d_un.d_ptr);
base               77 boot/arch/arm64/src/relocate.c 			*(uint64_t *) (base + rela->r_offset) =
base               78 boot/arch/arm64/src/relocate.c 			    base + rela->r_addend;
base               51 boot/arch/ia64/include/arch/types.h 	unsigned long base;
base               71 boot/arch/ia64/src/main.c 		memmap[items].base = DEFAULT_MEMORY_BASE;
base               76 boot/arch/ia64/src/main.c 		memmap[items].base = DEFAULT_LEGACY_IO_BASE;
base              108 boot/arch/ia64/src/main.c 				    o->base + o->size == md->phys_start) {
base              124 boot/arch/ia64/src/main.c 			memmap[items].base = md->phys_start;
base              183 boot/arch/ia64/src/main.c 		    m.base <= (uintptr_t) kernel_start &&
base              184 boot/arch/ia64/src/main.c 		    m.base + m.size > (uintptr_t) kernel_start) {
base              185 boot/arch/ia64/src/main.c 			ram_end = (uint8_t *) (m.base + m.size);
base              417 boot/genarch/src/ofw.c void ofw_alloc(const char *name, void **base, void **base_pa, const size_t size,
base              424 boot/genarch/src/ofw.c 	*base = ofw_claim_virt_any(size, PAGE_SIZE);
base              425 boot/genarch/src/ofw.c 	ofw_map(*base_pa, *base, ALIGN_UP(size, PAGE_SIZE), (ofw_arg_t) -1);
base               36 boot/generic/include/balloc.h 	uintptr_t base;
base               38 boot/generic/src/balloc.c void balloc_init(ballocs_t *ball, void *base, uintptr_t kernel_base,
base               42 boot/generic/src/balloc.c 	phys_base = (uintptr_t) base;
base               44 boot/generic/src/balloc.c 	ballocs->base = kernel_base;
base               68 boot/generic/src/balloc.c 	return (void *) (((uintptr_t) ptr - phys_base) + ballocs->base);
base              259 boot/generic/src/printf_core.c static int print_number(uint64_t num, int width, int precision, int base,
base              282 boot/generic/src/printf_core.c 			*ptr-- = digits[num % base];
base              284 boot/generic/src/printf_core.c 		} while (num /= base);
base              295 boot/generic/src/printf_core.c 		switch (base) {
base              359 boot/generic/src/printf_core.c 		switch (base) {
base              657 boot/generic/src/printf_core.c 			unsigned int base = 10;
base              696 boot/generic/src/printf_core.c 				base = 16;
base              700 boot/generic/src/printf_core.c 				base = 2;
base              703 boot/generic/src/printf_core.c 				base = 8;
base              715 boot/generic/src/printf_core.c 				base = 16;
base              779 boot/generic/src/printf_core.c 			    base, flags, ps)) < 0) {
base               48 boot/generic/src/tar.c static int64_t _parse_size(const char *s, size_t len, int base)
base               61 boot/generic/src/tar.c 		if ((INT64_MAX - 64) / base <= val) {
base               66 boot/generic/src/tar.c 		val *= base;
base              240 common/adt/bitmap.c static int constraint_satisfy(size_t index, size_t base, size_t constraint)
base              242 common/adt/bitmap.c 	return (((base + index) & constraint) == 0);
base              271 common/adt/bitmap.c bool bitmap_allocate_range(bitmap_t *bitmap, size_t count, size_t base,
base              284 common/adt/bitmap.c 	if ((prefered > base) && (prefered < base + bitmap->elements)) {
base              285 common/adt/bitmap.c 		size_t prefered_fit = (prefered - base) / BITMAP_ELEMENT;
base              306 common/adt/bitmap.c 			if (!constraint_satisfy(i, base, constraint))
base              399 common/printf/printf_core.c static int print_number(uint64_t num, int width, int precision, int base,
base              427 common/printf/printf_core.c 			*ptr-- = digits[num % base];
base              429 common/printf/printf_core.c 		} while (num /= base);
base              440 common/printf/printf_core.c 		switch (base) {
base              504 common/printf/printf_core.c 		switch (base) {
base             1497 common/printf/printf_core.c 			unsigned int base = 10;
base             1567 common/printf/printf_core.c 				base = 16;
base             1571 common/printf/printf_core.c 				base = 2;
base             1574 common/printf/printf_core.c 				base = 8;
base             1586 common/printf/printf_core.c 				base = 16;
base             1650 common/printf/printf_core.c 			    base, flags, ps)) < 0) {
base               49 common/stdc/bsearch.c void *bsearch(const void *key, const void *base, size_t nmemb, size_t size,
base               58 common/stdc/bsearch.c 		pivot = base + size * pividx;
base               70 common/stdc/bsearch.c 			base += size * (pividx + 1);
base               44 common/stdc/qsort.c 	void *base;
base               79 common/stdc/qsort.c 	a = qs->base + i * qs->size;
base               80 common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              100 common/stdc/qsort.c 	a = qs->base + i * qs->size;
base              101 common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              171 common/stdc/qsort.c void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              179 common/stdc/qsort.c 	qs.base = base;
base              196 common/stdc/qsort.c void qsort_r(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              204 common/stdc/qsort.c 	qs.base = base;
base               71 common/strtol.c __attribute__((noinline)) static uintmax_t _max_value(int base)
base               73 common/strtol.c 	return UINTMAX_MAX / base;
base              122 common/strtol.c     const char *restrict nptr, char **restrict endptr, int base,
base              150 common/strtol.c 	if (base == 0)
base              151 common/strtol.c 		base = _prefixbase(&nptr, nonstd);
base              153 common/strtol.c 	if (base == 16 && !nonstd) {
base              163 common/strtol.c 		    _digit_value(nptr[2]) < base)
base              167 common/strtol.c 	if (base < 2 || base > 36) {
base              174 common/strtol.c 	if (_digit_value(*nptr) >= base) {
base              184 common/strtol.c 	uintmax_t max = _max_value(base);
base              187 common/strtol.c 	while (digit = _digit_value(*nptr), digit < base) {
base              189 common/strtol.c 		    __builtin_add_overflow(result * base, digit, &result)) {
base              208 common/strtol.c 		while (_digit_value(*nptr) < base) {
base              218 common/strtol.c static inline intmax_t _strtosigned(const char *nptr, char **endptr, int base,
base              222 common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              236 common/strtol.c static inline uintmax_t _strtounsigned(const char *nptr, char **endptr, int base,
base              240 common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              269 common/strtol.c long strtol(const char *nptr, char **endptr, int base)
base              275 common/strtol.c 	return _strtosigned(nptr, endptr, base, LONG_MIN, LONG_MAX, &errno, false);
base              291 common/strtol.c unsigned long strtoul(const char *nptr, char **endptr, int base)
base              297 common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
base              300 common/strtol.c long long strtoll(const char *nptr, char **endptr, int base)
base              306 common/strtol.c 	return _strtosigned(nptr, endptr, base, LLONG_MIN, LLONG_MAX, &errno, false);
base              309 common/strtol.c unsigned long long strtoull(const char *nptr, char **endptr, int base)
base              315 common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
base              318 common/strtol.c intmax_t strtoimax(const char *nptr, char **endptr, int base)
base              324 common/strtol.c 	return _strtosigned(nptr, endptr, base, INTMAX_MIN, INTMAX_MAX, &errno, false);
base              327 common/strtol.c uintmax_t strtoumax(const char *nptr, char **endptr, int base)
base              333 common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
base              363 common/strtol.c errno_t str_uint8_t(const char *nptr, const char **endptr, unsigned int base,
base              371 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
base              398 common/strtol.c errno_t str_uint16_t(const char *nptr, const char **endptr, unsigned int base,
base              406 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
base              433 common/strtol.c errno_t str_uint32_t(const char *nptr, const char **endptr, unsigned int base,
base              441 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
base              468 common/strtol.c errno_t str_uint64_t(const char *nptr, const char **endptr, unsigned int base,
base              476 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
base              503 common/strtol.c errno_t str_int64_t(const char *nptr, const char **endptr, unsigned int base,
base              511 common/strtol.c 	intmax_t r = _strtosigned(nptr, &lendptr, base, INT64_MIN, INT64_MAX, &rc, true);
base              538 common/strtol.c errno_t str_size_t(const char *nptr, const char **endptr, unsigned int base,
base              546 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
base              136 kernel/arch/amd64/include/arch/pm.h 	uint64_t base;
base              141 kernel/arch/amd64/include/arch/pm.h 	uint32_t base;
base              173 kernel/arch/amd64/include/arch/pm.h extern void gdt_tss_setbase(descriptor_t *d, uintptr_t base);
base               96 kernel/arch/amd64/src/ddi/ddi.c 	descriptor_t *gdt_p = (descriptor_t *) cpugdtr.base;
base               69 kernel/arch/amd64/src/mm/frame.c 		uintptr_t base = (uintptr_t) base64;
base               72 kernel/arch/amd64/src/mm/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               77 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_base = ALIGN_UP(base, FRAME_SIZE);
base               78 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_size = ALIGN_DOWN(size - (new_base - base),
base              101 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
base              102 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_size = ALIGN_UP(size + (base - new_base),
base              109 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
base              110 kernel/arch/amd64/src/mm/frame.c 			uint64_t new_size = ALIGN_UP(size + (base - new_base),
base              119 kernel/arch/amd64/src/pm.c 	.base = (uint64_t) gdt
base              123 kernel/arch/amd64/src/pm.c 	.base = (uint64_t) idt
base              129 kernel/arch/amd64/src/pm.c void gdt_tss_setbase(descriptor_t *d, uintptr_t base)
base              133 kernel/arch/amd64/src/pm.c 	td->base_0_15 = base & 0xffffU;
base              134 kernel/arch/amd64/src/pm.c 	td->base_16_23 = ((base) >> 16) & 0xffU;
base              135 kernel/arch/amd64/src/pm.c 	td->base_24_31 = ((base) >> 24) & 0xffU;
base              136 kernel/arch/amd64/src/pm.c 	td->base_32_63 = ((base) >> 32);
base              254 kernel/arch/amd64/src/pm.c 	descriptor_t *gdt_p = (descriptor_t *) gdtr.base;
base              129 kernel/arch/amd64/src/smp/mps.c static bool mps_fs_check(uint8_t *base)
base              135 kernel/arch/amd64/src/smp/mps.c 		sum = (uint8_t) (sum + base[i]);
base              145 kernel/arch/amd64/src/smp/mps.c 	uint8_t *base = (uint8_t *) ct;
base              146 kernel/arch/amd64/src/smp/mps.c 	uint8_t *ext = base + ct->base_table_length;
base              152 kernel/arch/amd64/src/smp/mps.c 		sum = (uint8_t) (sum + base[i]);
base              171 kernel/arch/amd64/src/smp/smp.c 		protected_ap_gdtr.base = KA2PA((uintptr_t) gdt_new);
base              172 kernel/arch/amd64/src/smp/smp.c 		gdtr.base = (uintptr_t) gdt_new;
base               45 kernel/arch/arm32/src/mm/frame.c 	uintptr_t base;
base               48 kernel/arch/arm32/src/mm/frame.c 	machine_get_memory_extents(&base, &size);
base               49 kernel/arch/arm32/src/mm/frame.c 	base = ALIGN_UP(base, FRAME_SIZE);
base               52 kernel/arch/arm32/src/mm/frame.c 	if (!frame_adjust_zone_bounds(low, &base, &size))
base               56 kernel/arch/arm32/src/mm/frame.c 		zone_create(ADDR2PFN(base), SIZE2FRAMES(size),
base               63 kernel/arch/arm32/src/mm/frame.c 			zone_create(ADDR2PFN(base), SIZE2FRAMES(size), conf,
base               83 kernel/arch/arm64/src/mm/frame.c 		uintptr_t base = ALIGN_UP((uintptr_t) memmap.zones[i].start,
base               86 kernel/arch/arm64/src/mm/frame.c 		    (base - (uintptr_t) memmap.zones[i].start), FRAME_SIZE);
base               88 kernel/arch/arm64/src/mm/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               92 kernel/arch/arm64/src/mm/frame.c 		pfn_t pfn = ADDR2PFN(base);
base               90 kernel/arch/ia32/include/arch/pm.h 	uint32_t base;
base              164 kernel/arch/ia32/include/arch/pm.h extern void gdt_setbase(descriptor_t *d, uintptr_t base);
base               96 kernel/arch/ia32/src/ddi/ddi.c 	descriptor_t *gdt_p = (descriptor_t *) cpugdtr.base;
base               69 kernel/arch/ia32/src/mm/frame.c 		uintptr_t base = (uintptr_t) base64;
base               72 kernel/arch/ia32/src/mm/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               77 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_base = ALIGN_UP(base, FRAME_SIZE);
base               78 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_size = ALIGN_DOWN(size - (new_base - base),
base              101 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
base              102 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_size = ALIGN_UP(size + (base - new_base),
base              109 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
base              110 kernel/arch/ia32/src/mm/frame.c 			uint64_t new_size = ALIGN_UP(size + (base - new_base),
base              131 kernel/arch/ia32/src/pm.c 	.base = (uintptr_t) gdt
base              134 kernel/arch/ia32/src/pm.c void gdt_setbase(descriptor_t *d, uintptr_t base)
base              136 kernel/arch/ia32/src/pm.c 	d->base_0_15 = base & 0xffff;
base              137 kernel/arch/ia32/src/pm.c 	d->base_16_23 = (base >> 16) & 0xff;
base              138 kernel/arch/ia32/src/pm.c 	d->base_24_31 = (base >> 24) & 0xff;
base              261 kernel/arch/ia32/src/pm.c 	descriptor_t *gdt_p = (descriptor_t *) gdtr.base;
base              268 kernel/arch/ia32/src/pm.c 	idtr.base = (uintptr_t) idt;
base              129 kernel/arch/ia32/src/smp/mps.c static bool mps_fs_check(uint8_t *base)
base              135 kernel/arch/ia32/src/smp/mps.c 		sum = (uint8_t) (sum + base[i]);
base              145 kernel/arch/ia32/src/smp/mps.c 	uint8_t *base = (uint8_t *) ct;
base              146 kernel/arch/ia32/src/smp/mps.c 	uint8_t *ext = base + ct->base_table_length;
base              152 kernel/arch/ia32/src/smp/mps.c 		sum = (uint8_t) (sum + base[i]);
base              171 kernel/arch/ia32/src/smp/smp.c 		protected_ap_gdtr.base = KA2PA((uintptr_t) gdt_new);
base              172 kernel/arch/ia32/src/smp/smp.c 		gdtr.base = (uintptr_t) gdt_new;
base               61 kernel/arch/ia32/src/vreg.c 	descriptor_t *gdt_p = (descriptor_t *) gdtr.base;
base               54 kernel/arch/ia64/include/arch/bootinfo.h 	unsigned long base;
base              177 kernel/arch/ia64/include/arch/mm/page.h 	unsigned long long base : 49;
base               63 kernel/arch/ia64/src/mm/frame.c 		uintptr_t base = bootinfo->memmap[i].base;
base               65 kernel/arch/ia64/src/mm/frame.c 		uintptr_t abase = ALIGN_UP(base, FRAME_SIZE);
base               68 kernel/arch/ia64/src/mm/frame.c 			size -= abase - base;
base               95 kernel/arch/ia64/src/mm/page.c 	pta.map.base = 0 >> PTA_BASE_SHIFT;
base               98 kernel/arch/ia64/src/mm/page.c 	pta.map.base = vhpt_base >> PTA_BASE_SHIFT;
base               55 kernel/arch/ia64/src/proc/scheduler.c 	uintptr_t base;
base               57 kernel/arch/ia64/src/proc/scheduler.c 	base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
base               59 kernel/arch/ia64/src/proc/scheduler.c 	if ((uintptr_t) THREAD->kstack < base ||
base               60 kernel/arch/ia64/src/proc/scheduler.c 	    (uintptr_t) THREAD->kstack > base + (1 << (KERNEL_PAGE_WIDTH))) {
base              208 kernel/arch/mips32/src/debug/stacktrace.c 			unsigned int base = BASE_GET(*inst);
base              211 kernel/arch/mips32/src/debug/stacktrace.c 			if (base == SP || (has_fp && base == fp)) {
base              107 kernel/arch/mips32/src/mm/frame.c 	if ((frame << ZERO_PAGE_WIDTH) < KA2PA(config.base))
base              112 kernel/arch/mips32/src/mm/frame.c 	    KA2PA(config.base), config.kernel_size))
base              117 kernel/arch/mips32/src/mm/frame.c 	    KA2PA(ballocs.base), ballocs.size))
base              138 kernel/arch/mips32/src/mm/frame.c 	uintptr_t base = start_frame << ZERO_PAGE_WIDTH;
base              141 kernel/arch/mips32/src/mm/frame.c 	if (!frame_adjust_zone_bounds(low, &base, &size))
base              144 kernel/arch/mips32/src/mm/frame.c 	pfn_t first = ADDR2PFN(base);
base               43 kernel/arch/ppc32/src/drivers/pic.c void pic_init(uintptr_t base, size_t size, cir_t *cir, void **cir_arg)
base               45 kernel/arch/ppc32/src/drivers/pic.c 	pic = (uint32_t *) km_map(base, size, KM_NATURAL_ALIGNMENT,
base               63 kernel/arch/ppc32/src/mm/frame.c 		uintptr_t base = ALIGN_UP((uintptr_t) memmap.zones[i].start,
base               66 kernel/arch/ppc32/src/mm/frame.c 		    (base - ((uintptr_t) memmap.zones[i].start)), FRAME_SIZE);
base               68 kernel/arch/ppc32/src/mm/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               71 kernel/arch/ppc32/src/mm/frame.c 		pfn_t pfn = ADDR2PFN(base);
base              105 kernel/arch/ppc32/src/mm/pht.c 	uint32_t base = (hash & 0x3ff) << 3;
base              111 kernel/arch/ppc32/src/mm/pht.c 		if ((phte[base + i].v) &&
base              112 kernel/arch/ppc32/src/mm/pht.c 		    (phte[base + i].vsid == vsid) &&
base              113 kernel/arch/ppc32/src/mm/pht.c 		    (phte[base + i].api == api) &&
base              114 kernel/arch/ppc32/src/mm/pht.c 		    (phte[base + i].h == 0)) {
base              123 kernel/arch/ppc32/src/mm/pht.c 			if (!phte[base + i].v) {
base              141 kernel/arch/ppc32/src/mm/pht.c 				base = base2;
base              152 kernel/arch/ppc32/src/mm/pht.c 					base = base2;
base              163 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].v = 1;
base              164 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].vsid = vsid;
base              165 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].h = h;
base              166 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].api = api;
base              167 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].rpn = pte->pfn;
base              168 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].r = 0;
base              169 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].c = 0;
base              170 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].wimg = (pte->page_cache_disable ? WIMG_NO_CACHE : 0);
base              171 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].pp = 2; // FIXME
base              102 kernel/arch/ppc32/src/ppc32.c 	ballocs.base = bootinfo->ballocs.base;
base               60 kernel/arch/riscv64/src/mm/frame.c 		uintptr_t base = ALIGN_UP((uintptr_t) memmap.zones[i].start,
base               63 kernel/arch/riscv64/src/mm/frame.c 		    (base - ((uintptr_t) memmap.zones[i].start)), FRAME_SIZE);
base               65 kernel/arch/riscv64/src/mm/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               68 kernel/arch/riscv64/src/mm/frame.c 		pfn_t pfn = ADDR2PFN(base);
base               69 kernel/arch/sparc64/include/arch/mm/sun4u/tsb.h 		uint64_t base : 51;
base              131 kernel/arch/sparc64/src/mm/sun4u/as.c 	uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
base              138 kernel/arch/sparc64/src/mm/sun4u/as.c 	if (!overlaps(tsb, TSB_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
base              159 kernel/arch/sparc64/src/mm/sun4u/as.c 	tsb_base_reg.base = ((uintptr_t) as->arch.itsb) >> MMU_PAGE_WIDTH;
base              161 kernel/arch/sparc64/src/mm/sun4u/as.c 	tsb_base_reg.base = ((uintptr_t) as->arch.dtsb) >> MMU_PAGE_WIDTH;
base              203 kernel/arch/sparc64/src/mm/sun4u/as.c 	uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
base              210 kernel/arch/sparc64/src/mm/sun4u/as.c 	if (!overlaps(tsb, TSB_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
base               52 kernel/arch/sparc64/src/mm/sun4u/frame.c 		uintptr_t base;
base               61 kernel/arch/sparc64/src/mm/sun4u/frame.c 		base = ALIGN_UP((uintptr_t) memmap.zones[i].start, FRAME_SIZE);
base               63 kernel/arch/sparc64/src/mm/sun4u/frame.c 		    (base - ((uintptr_t) memmap.zones[i].start)), FRAME_SIZE);
base               65 kernel/arch/sparc64/src/mm/sun4u/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               69 kernel/arch/sparc64/src/mm/sun4u/frame.c 		pfn_t pfn = ADDR2PFN(base);
base              122 kernel/arch/sparc64/src/mm/sun4v/as.c 	uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
base              127 kernel/arch/sparc64/src/mm/sun4v/as.c 	if (!overlaps(tsb, TSB_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
base              161 kernel/arch/sparc64/src/mm/sun4v/as.c 	uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
base              167 kernel/arch/sparc64/src/mm/sun4v/as.c 	if (!overlaps(tsb, TSB_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
base               52 kernel/arch/sparc64/src/mm/sun4v/frame.c 		uintptr_t base;
base               61 kernel/arch/sparc64/src/mm/sun4v/frame.c 		base = ALIGN_UP((uintptr_t) memmap.zones[i].start, FRAME_SIZE);
base               63 kernel/arch/sparc64/src/mm/sun4v/frame.c 		    (base - ((uintptr_t) memmap.zones[i].start)), FRAME_SIZE);
base               65 kernel/arch/sparc64/src/mm/sun4v/frame.c 		if (!frame_adjust_zone_bounds(low, &base, &size))
base               69 kernel/arch/sparc64/src/mm/sun4v/frame.c 		pfn_t pfn = ADDR2PFN(base);
base               93 kernel/arch/sparc64/src/sun4u/sparc64.c 	ballocs.base = bootinfo->ballocs.base;
base               83 kernel/arch/sparc64/src/trap/sun4u/interrupt.c 	} else if (data0 > config.base) {
base               49 kernel/genarch/include/genarch/drivers/am335x/ctrl_module.h am335x_ctrl_module_clock_freq_get(am335x_ctrl_module_t *base, unsigned *freq)
base               51 kernel/genarch/include/genarch/drivers/am335x/ctrl_module.h 	unsigned const control_status = AM335x_CTRL_MODULE_REG_VALUE(base,
base               41 kernel/genarch/include/genarch/drivers/am335x/ctrl_module_regs.h #define AM335x_CTRL_MODULE_REG_VALUE(base, name) \
base               43 kernel/genarch/include/genarch/drivers/am335x/ctrl_module_regs.h 	    ((ioport8_t *) base))))
base              119 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h 	ioport32_t base;
base              153 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h extern bool bcm2835_prop_get_memory(uint32_t *base, uint32_t *size);
base               84 kernel/genarch/include/genarch/drivers/pl050/pl050.h 	ioport8_t *base;
base              173 kernel/genarch/src/acpi/acpi.c static uint8_t *search_rsdp(uint8_t *base, size_t len)
base              176 kernel/genarch/src/acpi/acpi.c 		if (!__builtin_memcmp(&base[i], RSDP_SIGNATURE, 8) &&
base              177 kernel/genarch/src/acpi/acpi.c 		    rsdp_check(&base[i]))
base              178 kernel/genarch/src/acpi/acpi.c 			return &base[i];
base               49 kernel/genarch/src/drivers/am335x/timer.c 	uintptr_t base;
base               54 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER0_BASE_ADDRESS, .size = AM335x_DMTIMER0_SIZE },
base               56 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER2_BASE_ADDRESS, .size = AM335x_DMTIMER2_SIZE },
base               57 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER3_BASE_ADDRESS, .size = AM335x_DMTIMER3_SIZE },
base               58 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER4_BASE_ADDRESS, .size = AM335x_DMTIMER4_SIZE },
base               59 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER5_BASE_ADDRESS, .size = AM335x_DMTIMER5_SIZE },
base               60 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER6_BASE_ADDRESS, .size = AM335x_DMTIMER6_SIZE },
base               61 kernel/genarch/src/drivers/am335x/timer.c 	{ .base = AM335x_DMTIMER7_BASE_ADDRESS, .size = AM335x_DMTIMER7_SIZE },
base              100 kernel/genarch/src/drivers/am335x/timer.c 	base_addr = regs_map[id].base;
base               60 kernel/genarch/src/drivers/bcm2835/mbox.c bool bcm2835_prop_get_memory(uint32_t *base, uint32_t *size)
base               78 kernel/genarch/src/drivers/bcm2835/mbox.c 		*base = req->data.base;
base               48 kernel/genarch/src/drivers/dsrln/dsrlnout.c 	ioport8_t *base;
base               57 kernel/genarch/src/drivers/dsrln/dsrlnout.c 			pio_write_8(instance->base, ch);
base               59 kernel/genarch/src/drivers/dsrln/dsrlnout.c 			pio_write_8(instance->base, U_SPECIAL);
base               70 kernel/genarch/src/drivers/dsrln/dsrlnout.c outdev_t *dsrlnout_init(ioport8_t *base, uintptr_t base_phys)
base               85 kernel/genarch/src/drivers/dsrln/dsrlnout.c 	instance->base = base;
base              101 kernel/genarch/src/drivers/dsrln/dsrlnout.c 		sysinfo_set_item_val("fb.address.physical", NULL, KA2PA(base));
base               70 kernel/genarch/src/drivers/ega/ega.c 	ioport8_t *base;
base              467 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0a);
base              468 kernel/genarch/src/drivers/ega/ega.c 		uint8_t stat = pio_read_8(instance->base + EGA_DATA_REG);
base              469 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0a);
base              470 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_DATA_REG, stat & (~(1 << 5)));
base              477 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0e);
base              478 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_DATA_REG,
base              480 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0f);
base              481 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_DATA_REG,
base              489 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0e);
base              490 kernel/genarch/src/drivers/ega/ega.c 		uint8_t hi = pio_read_8(instance->base + EGA_DATA_REG);
base              491 kernel/genarch/src/drivers/ega/ega.c 		pio_write_8(instance->base + EGA_INDEX_REG, 0x0f);
base              492 kernel/genarch/src/drivers/ega/ega.c 		uint8_t lo = pio_read_8(instance->base + EGA_DATA_REG);
base              601 kernel/genarch/src/drivers/ega/ega.c outdev_t *ega_init(ioport8_t *base, uintptr_t addr)
base              618 kernel/genarch/src/drivers/ega/ega.c 	instance->base = base;
base              293 kernel/genarch/src/mm/page_ht.c void ht_mapping_make_global(uintptr_t base, size_t size)
base              399 kernel/genarch/src/mm/page_pt.c void pt_mapping_make_global(uintptr_t base, size_t size)
base              415 kernel/genarch/src/mm/page_pt.c 	for (uintptr_t addr = ALIGN_DOWN(base, ptl0_step);
base              416 kernel/genarch/src/mm/page_pt.c 	    addr - 1 < base + size - 1;
base              240 kernel/generic/common/adt/bitmap.c static int constraint_satisfy(size_t index, size_t base, size_t constraint)
base              242 kernel/generic/common/adt/bitmap.c 	return (((base + index) & constraint) == 0);
base              271 kernel/generic/common/adt/bitmap.c bool bitmap_allocate_range(bitmap_t *bitmap, size_t count, size_t base,
base              284 kernel/generic/common/adt/bitmap.c 	if ((prefered > base) && (prefered < base + bitmap->elements)) {
base              285 kernel/generic/common/adt/bitmap.c 		size_t prefered_fit = (prefered - base) / BITMAP_ELEMENT;
base              306 kernel/generic/common/adt/bitmap.c 			if (!constraint_satisfy(i, base, constraint))
base              399 kernel/generic/common/printf/printf_core.c static int print_number(uint64_t num, int width, int precision, int base,
base              427 kernel/generic/common/printf/printf_core.c 			*ptr-- = digits[num % base];
base              429 kernel/generic/common/printf/printf_core.c 		} while (num /= base);
base              440 kernel/generic/common/printf/printf_core.c 		switch (base) {
base              504 kernel/generic/common/printf/printf_core.c 		switch (base) {
base             1497 kernel/generic/common/printf/printf_core.c 			unsigned int base = 10;
base             1567 kernel/generic/common/printf/printf_core.c 				base = 16;
base             1571 kernel/generic/common/printf/printf_core.c 				base = 2;
base             1574 kernel/generic/common/printf/printf_core.c 				base = 8;
base             1586 kernel/generic/common/printf/printf_core.c 				base = 16;
base             1650 kernel/generic/common/printf/printf_core.c 			    base, flags, ps)) < 0) {
base               49 kernel/generic/common/stdc/bsearch.c void *bsearch(const void *key, const void *base, size_t nmemb, size_t size,
base               58 kernel/generic/common/stdc/bsearch.c 		pivot = base + size * pividx;
base               70 kernel/generic/common/stdc/bsearch.c 			base += size * (pividx + 1);
base               44 kernel/generic/common/stdc/qsort.c 	void *base;
base               79 kernel/generic/common/stdc/qsort.c 	a = qs->base + i * qs->size;
base               80 kernel/generic/common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              100 kernel/generic/common/stdc/qsort.c 	a = qs->base + i * qs->size;
base              101 kernel/generic/common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              171 kernel/generic/common/stdc/qsort.c void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              179 kernel/generic/common/stdc/qsort.c 	qs.base = base;
base              196 kernel/generic/common/stdc/qsort.c void qsort_r(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              204 kernel/generic/common/stdc/qsort.c 	qs.base = base;
base               71 kernel/generic/common/strtol.c __attribute__((noinline)) static uintmax_t _max_value(int base)
base               73 kernel/generic/common/strtol.c 	return UINTMAX_MAX / base;
base              122 kernel/generic/common/strtol.c     const char *restrict nptr, char **restrict endptr, int base,
base              150 kernel/generic/common/strtol.c 	if (base == 0)
base              151 kernel/generic/common/strtol.c 		base = _prefixbase(&nptr, nonstd);
base              153 kernel/generic/common/strtol.c 	if (base == 16 && !nonstd) {
base              163 kernel/generic/common/strtol.c 		    _digit_value(nptr[2]) < base)
base              167 kernel/generic/common/strtol.c 	if (base < 2 || base > 36) {
base              174 kernel/generic/common/strtol.c 	if (_digit_value(*nptr) >= base) {
base              184 kernel/generic/common/strtol.c 	uintmax_t max = _max_value(base);
base              187 kernel/generic/common/strtol.c 	while (digit = _digit_value(*nptr), digit < base) {
base              189 kernel/generic/common/strtol.c 		    __builtin_add_overflow(result * base, digit, &result)) {
base              208 kernel/generic/common/strtol.c 		while (_digit_value(*nptr) < base) {
base              218 kernel/generic/common/strtol.c static inline intmax_t _strtosigned(const char *nptr, char **endptr, int base,
base              222 kernel/generic/common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              236 kernel/generic/common/strtol.c static inline uintmax_t _strtounsigned(const char *nptr, char **endptr, int base,
base              240 kernel/generic/common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              269 kernel/generic/common/strtol.c long strtol(const char *nptr, char **endptr, int base)
base              275 kernel/generic/common/strtol.c 	return _strtosigned(nptr, endptr, base, LONG_MIN, LONG_MAX, &errno, false);
base              291 kernel/generic/common/strtol.c unsigned long strtoul(const char *nptr, char **endptr, int base)
base              297 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
base              300 kernel/generic/common/strtol.c long long strtoll(const char *nptr, char **endptr, int base)
base              306 kernel/generic/common/strtol.c 	return _strtosigned(nptr, endptr, base, LLONG_MIN, LLONG_MAX, &errno, false);
base              309 kernel/generic/common/strtol.c unsigned long long strtoull(const char *nptr, char **endptr, int base)
base              315 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
base              318 kernel/generic/common/strtol.c intmax_t strtoimax(const char *nptr, char **endptr, int base)
base              324 kernel/generic/common/strtol.c 	return _strtosigned(nptr, endptr, base, INTMAX_MIN, INTMAX_MAX, &errno, false);
base              327 kernel/generic/common/strtol.c uintmax_t strtoumax(const char *nptr, char **endptr, int base)
base              333 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
base              363 kernel/generic/common/strtol.c errno_t str_uint8_t(const char *nptr, const char **endptr, unsigned int base,
base              371 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
base              398 kernel/generic/common/strtol.c errno_t str_uint16_t(const char *nptr, const char **endptr, unsigned int base,
base              406 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
base              433 kernel/generic/common/strtol.c errno_t str_uint32_t(const char *nptr, const char **endptr, unsigned int base,
base              441 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
base              468 kernel/generic/common/strtol.c errno_t str_uint64_t(const char *nptr, const char **endptr, unsigned int base,
base              476 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
base              503 kernel/generic/common/strtol.c errno_t str_int64_t(const char *nptr, const char **endptr, unsigned int base,
base              511 kernel/generic/common/strtol.c 	intmax_t r = _strtosigned(nptr, &lendptr, base, INT64_MIN, INT64_MAX, &rc, true);
base              538 kernel/generic/common/strtol.c errno_t str_size_t(const char *nptr, const char **endptr, unsigned int base,
base              546 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
base               75 kernel/generic/include/config.h 	uintptr_t base;
base               85 kernel/generic/include/config.h 	uintptr_t base;
base               58 kernel/generic/include/lib/ra.h 	uintptr_t base;		/**< Span base. */
base               83 kernel/generic/include/lib/ra.h 	uintptr_t base;		/**< Segment base. */
base              235 kernel/generic/include/mm/as.h 		uintptr_t base;
base              272 kernel/generic/include/mm/as.h 	uintptr_t base;
base               99 kernel/generic/include/mm/frame.h 	pfn_t base;
base              152 kernel/generic/src/ddi/ddi.c 	backend_data.base = phys;
base              447 kernel/generic/src/ddi/ddi.c 	backend_data.base = *phys;
base               74 kernel/generic/src/ipc/irq.c 		if ((void *) ranges[i].base >= IO_SPACE_BOUNDARY)
base               76 kernel/generic/src/ipc/irq.c 			km_unmap(ranges[i].base, ranges[i].size);
base               88 kernel/generic/src/ipc/irq.c 		pbase[i] = ranges[i].base;
base               93 kernel/generic/src/ipc/irq.c 		if ((void *) ranges[i].base < IO_SPACE_BOUNDARY)
base               96 kernel/generic/src/ipc/irq.c 		ranges[i].base = km_map(pbase[i], ranges[i].size,
base               99 kernel/generic/src/ipc/irq.c 		if (!ranges[i].base) {
base              143 kernel/generic/src/ipc/irq.c 			addr += ranges[j].base;
base              146 kernel/generic/src/lib/elf.c 	uintptr_t base = ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE);
base              147 kernel/generic/src/lib/elf.c 	size_t mem_sz = entry->p_memsz + (entry->p_vaddr - base);
base              149 kernel/generic/src/lib/elf.c 	backend_data.elf_base = base;
base              154 kernel/generic/src/lib/elf.c 	    AS_AREA_ATTR_NONE, &elf_backend, &backend_data, &base, 0);
base               65 kernel/generic/src/lib/ra.c 	return hash_mix(seg->base);
base               71 kernel/generic/src/lib/ra.c 	const uintptr_t *base = key;
base               72 kernel/generic/src/lib/ra.c 	return hash_mix(*base);
base               78 kernel/generic/src/lib/ra.c 	const uintptr_t *base = key;
base               80 kernel/generic/src/lib/ra.c 	return seg->base == *base;
base               96 kernel/generic/src/lib/ra.c 	return nextseg->base - seg->base;
base               99 kernel/generic/src/lib/ra.c static ra_segment_t *ra_segment_create(uintptr_t base)
base              110 kernel/generic/src/lib/ra.c 	seg->base = base;
base              121 kernel/generic/src/lib/ra.c static ra_span_t *ra_span_create(uintptr_t base, size_t size)
base              132 kernel/generic/src/lib/ra.c 	span->base = base;
base              144 kernel/generic/src/lib/ra.c 	seg = ra_segment_create(base);
base              159 kernel/generic/src/lib/ra.c 	lastseg = ra_segment_create(base + size);
base              233 kernel/generic/src/lib/ra.c bool ra_span_add(ra_arena_t *arena, uintptr_t base, size_t size)
base              237 kernel/generic/src/lib/ra.c 	span = ra_span_create(base, size);
base              249 kernel/generic/src/lib/ra.c ra_span_alloc(ra_span_t *span, size_t size, size_t align, uintptr_t *base)
base              281 kernel/generic/src/lib/ra.c 		if (!IS_ALIGNED(seg->base, align)) {
base              282 kernel/generic/src/lib/ra.c 			pred = ra_segment_create(seg->base);
base              291 kernel/generic/src/lib/ra.c 		newbase = ALIGN_UP(seg->base, align);
base              292 kernel/generic/src/lib/ra.c 		if (newbase + size != seg->base + ra_segment_size_get(seg)) {
base              293 kernel/generic/src/lib/ra.c 			assert(newbase + (size - 1) < seg->base +
base              327 kernel/generic/src/lib/ra.c 		seg->base = newbase;
base              333 kernel/generic/src/lib/ra.c 		*base = newbase;
base              340 kernel/generic/src/lib/ra.c static void ra_span_free(ra_span_t *span, size_t base, size_t size)
base              342 kernel/generic/src/lib/ra.c 	sysarg_t key = base;
base              355 kernel/generic/src/lib/ra.c 		    ", size=%zd).", base, size);
base              365 kernel/generic/src/lib/ra.c 	assert(seg->base == base);
base              375 kernel/generic/src/lib/ra.c 		assert(pred->base < seg->base);
base              386 kernel/generic/src/lib/ra.c 			seg->base = pred->base;
base              396 kernel/generic/src/lib/ra.c 	assert(succ->base > seg->base);
base              416 kernel/generic/src/lib/ra.c ra_alloc(ra_arena_t *arena, size_t size, size_t alignment, uintptr_t *base)
base              426 kernel/generic/src/lib/ra.c 		success = ra_span_alloc(span, size, alignment, base);
base              436 kernel/generic/src/lib/ra.c void ra_free(ra_arena_t *arena, uintptr_t base, size_t size)
base              440 kernel/generic/src/lib/ra.c 		if (iswithin(span->base, span->size, base, size)) {
base              441 kernel/generic/src/lib/ra.c 			ra_span_free(span, base, size);
base              449 kernel/generic/src/lib/ra.c 	    base, size);
base               58 kernel/generic/src/lib/rd.c 	uintptr_t base = (uintptr_t) data;
base               59 kernel/generic/src/lib/rd.c 	assert((base % FRAME_SIZE) == 0);
base               62 kernel/generic/src/lib/rd.c 	rd_parea.pbase = base;
base               70 kernel/generic/src/lib/rd.c 	sysinfo_set_item_val("rd.address.physical", NULL, (sysarg_t) base);
base               72 kernel/generic/src/lib/rd.c 	log(LF_OTHER, LVL_NOTE, "RAM disk at %p (size %zu bytes)", (void *) base,
base              114 kernel/generic/src/lib/ubsan.c     unsigned long base, unsigned long result);
base              246 kernel/generic/src/lib/ubsan.c     unsigned long base, unsigned long result)
base              129 kernel/generic/src/main/main.c 	.base = (uintptr_t) NULL,
base              170 kernel/generic/src/main/main.c 	config.base = (uintptr_t) kernel_load_address;
base              173 kernel/generic/src/main/main.c 	    ALIGN_UP((uintptr_t) kdata_end - config.base, PAGE_SIZE);
base              194 kernel/generic/src/main/main.c 	    (void *) config.base, config.kernel_size);
base              260 kernel/generic/src/mm/as.c 		as_area_destroy(as, area->base);
base              362 kernel/generic/src/mm/as.c 		if (!overflows(area->base, P2SZ(area->pages)))
base              366 kernel/generic/src/mm/as.c 	return overlaps(addr, gsize, area->base, agsize);
base              517 kernel/generic/src/mm/as.c 		addr = area->base + P2SZ(area->pages);
base              528 kernel/generic/src/mm/as.c 		    ((addr >= bound) && (addr >= area->base) &&
base              745 kernel/generic/src/mm/as.c     mem_backend_data_t *backend_data, uintptr_t *base, uintptr_t bound)
base              747 kernel/generic/src/mm/as.c 	if ((*base != (uintptr_t) AS_AREA_ANY) && !IS_ALIGNED(*base, PAGE_SIZE))
base              763 kernel/generic/src/mm/as.c 	if (*base == (uintptr_t) AS_AREA_ANY) {
base              764 kernel/generic/src/mm/as.c 		*base = as_get_unmapped_area(as, bound, size, guarded);
base              765 kernel/generic/src/mm/as.c 		if (*base == (uintptr_t) -1) {
base              771 kernel/generic/src/mm/as.c 	if (overflows_into_positive(*base, size)) {
base              776 kernel/generic/src/mm/as.c 	if (!check_area_conflicts(as, *base, pages, guarded, NULL)) {
base              794 kernel/generic/src/mm/as.c 	area->base = *base;
base              874 kernel/generic/src/mm/as.c 	assert(area->base <= va);
base              876 kernel/generic/src/mm/as.c 	if (va <= area->base + (P2SZ(area->pages) - 1))
base              933 kernel/generic/src/mm/as.c 	size_t pages = SIZE2FRAMES((address - area->base) + size);
base              944 kernel/generic/src/mm/as.c 		uintptr_t start_free = area->base + P2SZ(pages);
base              958 kernel/generic/src/mm/as.c 		    as->asid, area->base + P2SZ(pages),
base              976 kernel/generic/src/mm/as.c 			if (overlaps(ptr, P2SZ(pcount), area->base,
base             1034 kernel/generic/src/mm/as.c 		    area->base + P2SZ(pages),
base             1042 kernel/generic/src/mm/as.c 		    area->base + P2SZ(pages),
base             1107 kernel/generic/src/mm/as.c 	ipl_t ipl = tlb_shootdown_start(TLB_INVL_PAGES, as->asid, area->base,
base             1145 kernel/generic/src/mm/as.c 	tlb_invalidate_pages(as->asid, area->base, area->pages);
base             1151 kernel/generic/src/mm/as.c 	as_invalidate_translation_cache(as, area->base, area->pages);
base             1407 kernel/generic/src/mm/as.c 	ipl_t ipl = tlb_shootdown_start(TLB_INVL_PAGES, as->asid, area->base,
base             1444 kernel/generic/src/mm/as.c 	tlb_invalidate_pages(as->asid, area->base, area->pages);
base             1450 kernel/generic/src/mm/as.c 	as_invalidate_translation_cache(as, area->base, area->pages);
base             1720 kernel/generic/src/mm/as.c 	return (void *) &area->base;
base             1834 kernel/generic/src/mm/as.c size_t as_area_get_size(uintptr_t base)
base             1839 kernel/generic/src/mm/as.c 	as_area_t *src_area = find_area_and_lock(AS, base);
base             2098 kernel/generic/src/mm/as.c sysarg_t sys_as_area_create(uintptr_t base, size_t size, unsigned int flags,
base             2101 kernel/generic/src/mm/as.c 	uintptr_t virt = base;
base             2147 kernel/generic/src/mm/as.c 	info.start_addr = area->base;
base             2193 kernel/generic/src/mm/as.c 		info[area_idx].start_addr = area->base;
base             2222 kernel/generic/src/mm/as.c 		    " (%p - %p)\n", area, (void *) area->base,
base             2223 kernel/generic/src/mm/as.c 		    area->pages, (void *) area->base,
base             2224 kernel/generic/src/mm/as.c 		    (void *) (area->base + P2SZ(area->pages)));
base              125 kernel/generic/src/mm/backend_anon.c 		uintptr_t base = ival->page;
base              134 kernel/generic/src/mm/backend_anon.c 			found = page_mapping_find(area->as, base + P2SZ(j),
base              143 kernel/generic/src/mm/backend_anon.c 			    (base + P2SZ(j)) - area->base, PTE_GET_FRAME(&pte));
base              206 kernel/generic/src/mm/backend_anon.c 		    upage - area->base, &frame);
base              219 kernel/generic/src/mm/backend_anon.c 			    upage - area->base, frame);
base              110 kernel/generic/src/mm/backend_elf.c 	return page - area->base + area->backend_data.elf_base;
base              178 kernel/generic/src/mm/backend_elf.c 		uintptr_t base = cur->page;
base              187 kernel/generic/src/mm/backend_elf.c 			if (base >= entry->p_vaddr &&
base              188 kernel/generic/src/mm/backend_elf.c 			    base + P2SZ(count) <= start_anon)
base              200 kernel/generic/src/mm/backend_elf.c 				if (base >= entry->p_vaddr &&
base              201 kernel/generic/src/mm/backend_elf.c 				    base + P2SZ(i + 1) <= start_anon)
base              206 kernel/generic/src/mm/backend_elf.c 			    base + P2SZ(i), false, &pte);
base              214 kernel/generic/src/mm/backend_elf.c 			    (base + P2SZ(i)) - area->base,
base              262 kernel/generic/src/mm/backend_elf.c 	uintptr_t base;
base              287 kernel/generic/src/mm/backend_elf.c 	base = (uintptr_t)
base              300 kernel/generic/src/mm/backend_elf.c 		    upage - area->base, &frame);
base              327 kernel/generic/src/mm/backend_elf.c 			memcpy((void *) kpage, (void *) (base + i * PAGE_SIZE),
base              339 kernel/generic/src/mm/backend_elf.c 			    base + i * FRAME_SIZE, true, &pte);
base              379 kernel/generic/src/mm/backend_elf.c 		    (void *) (base + i * PAGE_SIZE + pad_lo),
base              393 kernel/generic/src/mm/backend_elf.c 		as_pagemap_insert(&area->sh_info->pagemap, upage - area->base,
base               63 kernel/generic/src/mm/backend_phys.c 	uintptr_t base;
base              136 kernel/generic/src/mm/backend_phys.c 	uintptr_t base = area->backend_data.base;
base              145 kernel/generic/src/mm/backend_phys.c 	assert(upage - area->base < area->backend_data.frames * FRAME_SIZE);
base              146 kernel/generic/src/mm/backend_phys.c 	page_mapping_insert(AS, upage, base + (upage - area->base),
base              167 kernel/generic/src/mm/backend_phys.c 		data->base = area->backend_data.base;
base              180 kernel/generic/src/mm/backend_phys.c 		frame_free(data->base, data->frames);
base              123 kernel/generic/src/mm/backend_user.c 	ipc_set_arg1(&data, upage - area->base);
base              102 kernel/generic/src/mm/frame.c _NO_TRACE static size_t zones_insert_zone(pfn_t base, size_t count,
base              114 kernel/generic/src/mm/frame.c 		if (overlaps(zones.info[i].base, zones.info[i].count,
base              115 kernel/generic/src/mm/frame.c 		    base, count)) {
base              125 kernel/generic/src/mm/frame.c 			    (!iswithin(zones.info[i].base, zones.info[i].count,
base              126 kernel/generic/src/mm/frame.c 			    base, count))) {
base              130 kernel/generic/src/mm/frame.c 				    (void *) PFN2ADDR(base), (void *) PFN2ADDR(count),
base              131 kernel/generic/src/mm/frame.c 				    (void *) PFN2ADDR(zones.info[i].base),
base              137 kernel/generic/src/mm/frame.c 		if (base < zones.info[i].base)
base              199 kernel/generic/src/mm/frame.c 		if ((zones.info[i].base <= frame) &&
base              200 kernel/generic/src/mm/frame.c 		    (zones.info[i].base + zones.info[i].count >= frame + count))
base              222 kernel/generic/src/mm/frame.c 	    bitmap_allocate_range(&zone->bitmap, count, zone->base,
base              267 kernel/generic/src/mm/frame.c _NO_TRACE static bool is_high_priority(pfn_t base, size_t count)
base              269 kernel/generic/src/mm/frame.c 	return (base + count <= FRAME_LOWPRIO);
base              294 kernel/generic/src/mm/frame.c 		if (is_high_priority(zones.info[i].base, zones.info[i].count))
base              376 kernel/generic/src/mm/frame.c 	int avail = bitmap_allocate_range(&zone->bitmap, count, zone->base,
base              481 kernel/generic/src/mm/frame.c 	assert(zones.info[z1].base < zones.info[z2].base);
base              482 kernel/generic/src/mm/frame.c 	assert(!overlaps(zones.info[z1].base, zones.info[z1].count,
base              483 kernel/generic/src/mm/frame.c 	    zones.info[z2].base, zones.info[z2].count));
base              486 kernel/generic/src/mm/frame.c 	pfn_t base_diff = zones.info[z2].base - zones.info[z1].base;
base              545 kernel/generic/src/mm/frame.c 	if ((pfn < zones.info[znum].base) ||
base              546 kernel/generic/src/mm/frame.c 	    (pfn >= zones.info[znum].base + zones.info[znum].count))
base              551 kernel/generic/src/mm/frame.c 		    pfn - zones.info[znum].base + i);
base              583 kernel/generic/src/mm/frame.c 	    zones.info[z2].base - zones.info[z1].base +
base              589 kernel/generic/src/mm/frame.c 		pfn = zones.info[z1].base +
base              592 kernel/generic/src/mm/frame.c 		pfn = zones.info[z2].base +
base              658 kernel/generic/src/mm/frame.c 	zone->base = start;
base              751 kernel/generic/src/mm/frame.c 				    KA2PA(config.base), config.kernel_size))
base              755 kernel/generic/src/mm/frame.c 				    KA2PA(ballocs.base), ballocs.size))
base              791 kernel/generic/src/mm/frame.c 				    i - zones.info[znum].base);
base              827 kernel/generic/src/mm/frame.c 	    pfn - zones.info[znum].base)->parent = data;
base              841 kernel/generic/src/mm/frame.c 	    pfn - zones.info[znum].base)->parent;
base              979 kernel/generic/src/mm/frame.c 	    frame_constraint) + zones.info[znum].base;
base             1021 kernel/generic/src/mm/frame.c 		    pfn - zones.info[znum].base);
base             1080 kernel/generic/src/mm/frame.c 	zones.info[znum].frames[pfn - zones.info[znum].base].refcount++;
base             1099 kernel/generic/src/mm/frame.c 		    start + i - zones.info[znum].base);
base             1121 kernel/generic/src/mm/frame.c 		frame_mark_unavailable(ADDR2PFN(KA2PA(config.base)),
base             1129 kernel/generic/src/mm/frame.c 			frame_mark_unavailable(ADDR2PFN(KA2PA(ballocs.base)),
base             1260 kernel/generic/src/mm/frame.c 		pfn_t fbase = zones.info[i].base;
base             1261 kernel/generic/src/mm/frame.c 		uintptr_t base = PFN2ADDR(fbase);
base             1303 kernel/generic/src/mm/frame.c 		printf("  %p", (void *) base);
base             1307 kernel/generic/src/mm/frame.c 		printf(" %p", (void *) base);
base             1356 kernel/generic/src/mm/frame.c 		if ((i == num) || (PFN2ADDR(zones.info[i].base) == num)) {
base             1372 kernel/generic/src/mm/frame.c 	pfn_t fbase = zones.info[znum].base;
base             1373 kernel/generic/src/mm/frame.c 	uintptr_t base = PFN2ADDR(fbase);
base             1418 kernel/generic/src/mm/frame.c 	printf("Zone base address:       %p\n", (void *) base);
base              107 kernel/generic/src/mm/km.c void km_non_identity_span_add(uintptr_t base, size_t size)
base              111 kernel/generic/src/mm/km.c 	page_mapping_make_global(base, size);
base              113 kernel/generic/src/mm/km.c 	span_added = ra_span_add(km_ni_arena, base, size);
base              120 kernel/generic/src/mm/km.c 	uintptr_t base;
base              121 kernel/generic/src/mm/km.c 	if (ra_alloc(km_ni_arena, size, align, &base))
base              122 kernel/generic/src/mm/km.c 		return base;
base              184 kernel/generic/src/mm/page.c void page_mapping_make_global(uintptr_t base, size_t size)
base              189 kernel/generic/src/mm/page.c 	return page_mapping_operations->mapping_make_global(base, size);
base              117 uspace/app/mkexfat/mkexfat.c     int base, uint32_t *chksum);
base              374 uspace/app/mkexfat/mkexfat.c ebs_write(service_id_t service_id, exfat_cfg_t *cfg, int base,
base              390 uspace/app/mkexfat/mkexfat.c 		    i + base, 1, ebs);
base              405 uspace/app/mkexfat/mkexfat.c 	rc = block_write_direct(service_id, i++ + base, 1, ebs);
base              412 uspace/app/mkexfat/mkexfat.c 	rc = block_write_direct(service_id, i + base, 1, ebs);
base              622 uspace/app/sbi/src/lex.c 	bigint_t base;
base              628 uspace/app/sbi/src/lex.c 	bigint_init(&base, 10);
base              631 uspace/app/sbi/src/lex.c 		bigint_mul(&value, &base, &tprod);
base              642 uspace/app/sbi/src/lex.c 	bigint_destroy(&base);
base              591 uspace/app/sbi/src/p_expr.c 	index->base = a;
base              119 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res);
base              121 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res);
base              123 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res);
base             2191 uspace/app/sbi/src/run_expr.c 	run_expr(run, index->base, &rbase);
base             2201 uspace/app/sbi/src/run_expr.c 		run_dereference(run, rbase, index->base->cspan, &base_i);
base             2280 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res)
base             2300 uspace/app/sbi/src/run_expr.c 	assert(base->ic == ic_address);
base             2301 uspace/app/sbi/src/run_expr.c 	assert(base->u.address->ac == ac_var);
base             2302 uspace/app/sbi/src/run_expr.c 	assert(base->u.address->u.var_a->vref->vc == vc_array);
base             2303 uspace/app/sbi/src/run_expr.c 	array = base->u.address->u.var_a->vref->u.array_v;
base             2380 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res)
base             2409 uspace/app/sbi/src/run_expr.c 	if (base->ic != ic_address || base->u.address->ac != ac_var) {
base             2417 uspace/app/sbi/src/run_expr.c 	obj_var = base->u.address->u.var_a->vref;
base             2468 uspace/app/sbi/src/run_expr.c     rdata_item_t *base, list_t *args, rdata_item_t **res)
base             2490 uspace/app/sbi/src/run_expr.c 	run_cvt_value_item(run, base, &base_vi);
base              210 uspace/app/sbi/src/stree_t.h 	struct stree_expr *base;
base             1548 uspace/app/sbi/src/stype_expr.c 	stype_expr(stype, index->base);
base             1549 uspace/app/sbi/src/stype_expr.c 	base_ti = index->base->titem;
base             1571 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base             1577 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base             1583 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base             1589 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base             1596 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base             1632 uspace/app/sbi/src/stype_expr.c 	cspan_print(index->base->cspan);
base             1675 uspace/app/sbi/src/stype_expr.c 		cspan_print(index->base->cspan);
base              112 uspace/app/tetris/tetris.c 	int base;
base              116 uspace/app/tetris/tetris.c 		base = i * B_COLS + 1;
base              117 uspace/app/tetris/tetris.c 		p = &board[base];
base              123 uspace/app/tetris/tetris.c 				memset(&board[base], 0, sizeof(cell) * (B_COLS - 2));
base              128 uspace/app/tetris/tetris.c 				while (--base != 0)
base              129 uspace/app/tetris/tetris.c 					board[base + B_COLS] = board[base];
base               58 uspace/app/wavplay/dplay.c 		void *base;
base               80 uspace/app/wavplay/dplay.c 	pb->buffer.base = NULL;
base              136 uspace/app/wavplay/dplay.c 		if (pb->buffer.write_ptr >= (pb->buffer.base + pb->buffer.size))
base              160 uspace/app/wavplay/dplay.c 	const size_t bytes = fread(pb->buffer.base, sizeof(uint8_t),
base              163 uspace/app/wavplay/dplay.c 		memset(pb->buffer.base + bytes, 0, fragment_size - bytes);
base              165 uspace/app/wavplay/dplay.c 	    pb->buffer.base, bytes, fragment_size);
base              166 uspace/app/wavplay/dplay.c 	pb->buffer.write_ptr = pb->buffer.base + fragment_size;
base              197 uspace/app/wavplay/dplay.c 	void *read_ptr = pb->buffer.base + pos;
base              213 uspace/app/wavplay/dplay.c 	void *read_ptr = pb->buffer.base + pos;
base              226 uspace/app/wavplay/dplay.c 	return (pb->buffer.base + pb->buffer.size) - pb->buffer.write_ptr;
base              238 uspace/app/wavplay/dplay.c 	while (pb->buffer.write_ptr >= (pb->buffer.base + pb->buffer.size))
base              254 uspace/app/wavplay/dplay.c 	pb->buffer.write_ptr = pb->buffer.base;
base              273 uspace/app/wavplay/dplay.c 		    pb->buffer.write_ptr - pb->buffer.base);
base              284 uspace/app/wavplay/dplay.c 			    pb->buffer.write_ptr - pb->buffer.base);
base              373 uspace/app/wavplay/dplay.c 	ret = audio_pcm_get_buffer(pb.device, &pb.buffer.base, &pb.buffer.size);
base              378 uspace/app/wavplay/dplay.c 	printf("Buffer: %p %zu.\n", pb.buffer.base, pb.buffer.size);
base              409 uspace/app/wavplay/dplay.c 	as_area_destroy(pb.buffer.base);
base               62 uspace/app/wavplay/drec.c 		void *base;
base               80 uspace/app/wavplay/drec.c 	rec->buffer.base = NULL;
base              130 uspace/app/wavplay/drec.c 		if (rec->buffer.position >= (rec->buffer.base + rec->buffer.size))
base              131 uspace/app/wavplay/drec.c 			rec->buffer.position = rec->buffer.base;
base              151 uspace/app/wavplay/drec.c 	rec->buffer.position = rec->buffer.base;
base              212 uspace/app/wavplay/drec.c 	ret = audio_pcm_get_buffer(rec.device, &rec.buffer.base,
base              218 uspace/app/wavplay/drec.c 	printf("Buffer: %p %zu.\n", rec.buffer.base, rec.buffer.size);
base              246 uspace/app/wavplay/drec.c 	as_area_destroy(rec.buffer.base);
base              114 uspace/dist/src/c/demos/tetris/tetris.c 	int base;
base              118 uspace/dist/src/c/demos/tetris/tetris.c 		base = i * B_COLS + 1;
base              119 uspace/dist/src/c/demos/tetris/tetris.c 		p = &board[base];
base              125 uspace/dist/src/c/demos/tetris/tetris.c 				memset(&board[base], 0, sizeof(cell) * (B_COLS - 2));
base              130 uspace/dist/src/c/demos/tetris/tetris.c 				while (--base != 0)
base              131 uspace/dist/src/c/demos/tetris/tetris.c 					board[base + B_COLS] = board[base];
base               81 uspace/drv/audio/hdaudio/hdaudio.c 		.base = 0,
base              244 uspace/drv/audio/hdaudio/hdaudio.c 	hdaudio_irq_pio_ranges[0].base = (uintptr_t)hda->rwbase;
base              258 uspace/drv/audio/hdaudio/hdaudio.c 	ddf_msg(LVL_DEBUG, "range0.base=%zu", hdaudio_irq_pio_ranges[0].base);
base               92 uspace/drv/audio/sb16/sb16.c 	ranges[0].base = (uintptr_t) registers;
base              850 uspace/drv/block/ahci/ahci.c 		.base = 0,
base             1162 uspace/drv/block/ahci/ahci.c 	ahci_ranges[0].base = RNGABS(hw_res_parsed.mem_ranges.ranges[0]);
base             1166 uspace/drv/block/ahci/ahci.c 		size_t base = port * 7;
base             1168 uspace/drv/block/ahci/ahci.c 		ahci_cmds[base].addr =
base             1172 uspace/drv/block/ahci/ahci.c 		ahci_cmds[base + 2].addr = ahci_cmds[base].addr;
base             1174 uspace/drv/block/ahci/ahci.c 		ahci_cmds[base + 3].addr =
base             1177 uspace/drv/block/ahci/ahci.c 		ahci_cmds[base + 4].addr = ahci_cmds[base + 3].addr;
base               83 uspace/drv/block/ddisk/ddisk.c 	uintptr_t base;
base              138 uspace/drv/block/ddisk/ddisk.c 		.base = 0,
base              303 uspace/drv/block/ddisk/ddisk.c 	ddisk_res->base = RNGABS(*regs);
base              465 uspace/drv/block/ddisk/ddisk.c 	rc = pio_enable((void *) res.base, sizeof(ddisk_regs_t), &vaddr);
base              509 uspace/drv/block/ddisk/ddisk.c 	ddisk_regs_t *res_phys = (ddisk_regs_t *) res.base;
base              510 uspace/drv/block/ddisk/ddisk.c 	ddisk_irq_pio_ranges[0].base = res.base;
base              525 uspace/drv/block/ddisk/ddisk.c 	    (void *) ddisk->ddisk_res.base, ddisk->blocks,
base              118 uspace/drv/block/virtio-blk/virtio-blk.c 			.base = vdev->isr_phys,
base               75 uspace/drv/bus/adb/cuda_adb/cuda_adb.c 		.base = 0,
base              162 uspace/drv/bus/adb/cuda_adb/cuda_adb.c 	cuda->phys_base = res->base;
base              249 uspace/drv/bus/adb/cuda_adb/cuda_adb.c 	cuda_irq_code.ranges[0].base = (uintptr_t) cuda->phys_base;
base               60 uspace/drv/bus/adb/cuda_adb/cuda_adb.h 	uintptr_t base;
base               84 uspace/drv/bus/adb/cuda_adb/main.c 	res->base = RNGABS(hw_res.io_ranges.ranges[0]);
base              442 uspace/drv/bus/isa/isa.c 		resources[count].res.io_range.address += isa->pio_win.io.base;
base              465 uspace/drv/bus/isa/isa.c 		resources[count].res.mem_range.address += isa->pio_win.mem.base;
base               88 uspace/drv/bus/usb/ehci/ehci_batch.c 	usb_transfer_batch_init(&ehci_batch->base, ep);
base              103 uspace/drv/bus/usb/ehci/ehci_batch.c 	const size_t setup_size = (ehci_batch->base.ep->transfer_type == USB_TRANSFER_CONTROL) ?
base              107 uspace/drv/bus/usb/ehci/ehci_batch.c 	const size_t size = ehci_batch->base.size;
base              110 uspace/drv/bus/usb/ehci/ehci_batch.c 	ehci_batch->qh = ehci_endpoint_get(ehci_batch->base.ep)->qh;
base              117 uspace/drv/bus/usb/ehci/ehci_batch.c 	if (ehci_batch->base.ep->transfer_type == USB_TRANSFER_CONTROL) {
base              138 uspace/drv/bus/usb/ehci/ehci_batch.c 	memcpy(ehci_batch->setup_buffer, ehci_batch->base.setup.buffer, setup_size);
base              141 uspace/drv/bus/usb/ehci/ehci_batch.c 	ehci_batch->data_buffer = ehci_batch->base.dma_buffer.virt;
base              143 uspace/drv/bus/usb/ehci/ehci_batch.c 	if (!batch_setup[ehci_batch->base.ep->transfer_type])
base              146 uspace/drv/bus/usb/ehci/ehci_batch.c 	batch_setup[ehci_batch->base.ep->transfer_type](ehci_batch);
base              149 uspace/drv/bus/usb/ehci/ehci_batch.c 	    ehci_batch, usb_str_direction(ehci_batch->base.dir),
base              150 uspace/drv/bus/usb/ehci/ehci_batch.c 	    USB_TRANSFER_BATCH_ARGS(ehci_batch->base));
base              187 uspace/drv/bus/usb/ehci/ehci_batch.c 	ehci_batch->base.transferred_size = ehci_batch->base.size;
base              196 uspace/drv/bus/usb/ehci/ehci_batch.c 		ehci_batch->base.error = td_error(&ehci_batch->tds[i]);
base              197 uspace/drv/bus/usb/ehci/ehci_batch.c 		if (ehci_batch->base.error == EOK) {
base              211 uspace/drv/bus/usb/ehci/ehci_batch.c 			ehci_batch->base.transferred_size -=
base              217 uspace/drv/bus/usb/ehci/ehci_batch.c 			    str_error_name(ehci_batch->base.error));
base              224 uspace/drv/bus/usb/ehci/ehci_batch.c 	assert(ehci_batch->base.transferred_size <= ehci_batch->base.size);
base              230 uspace/drv/bus/usb/ehci/ehci_batch.c 	    str_error(ehci_batch->base.error));
base              258 uspace/drv/bus/usb/ehci/ehci_batch.c 	usb_direction_t dir = ehci_batch->base.dir;
base              289 uspace/drv/bus/usb/ehci/ehci_batch.c 	size_t remain_size = ehci_batch->base.size;
base              290 uspace/drv/bus/usb/ehci/ehci_batch.c 	uintptr_t buffer = dma_buffer_phys(&ehci_batch->base.dma_buffer,
base              343 uspace/drv/bus/usb/ehci/ehci_batch.c 	size_t remain_size = ehci_batch->base.size;
base              344 uspace/drv/bus/usb/ehci/ehci_batch.c 	uintptr_t buffer = dma_buffer_phys(&ehci_batch->base.dma_buffer,
base              354 uspace/drv/bus/usb/ehci/ehci_batch.c 		    buffer, ehci_batch->base.dir, transfer_size, -1, last);
base               49 uspace/drv/bus/usb/ehci/ehci_batch.h 	usb_transfer_batch_t base;
base               84 uspace/drv/bus/usb/ehci/ehci_bus.c 	endpoint_init(&ehci_ep->base, dev, desc);
base               93 uspace/drv/bus/usb/ehci/ehci_bus.c 	return &ehci_ep->base;
base              160 uspace/drv/bus/usb/ehci/ehci_bus.c 	return &batch->base;
base               49 uspace/drv/bus/usb/ehci/ehci_bus.h 	endpoint_t base;
base               66 uspace/drv/bus/usb/ehci/ehci_bus.h 	bus_t base;
base              135 uspace/drv/bus/usb/ehci/ehci_rh.c 	return virthub_base_init(&instance->base, name, &ops, instance,
base              150 uspace/drv/bus/usb/ehci/ehci_rh.c 	batch->error = virthub_base_request(&instance->base, batch->target,
base              209 uspace/drv/bus/usb/ehci/ehci_rh.c 		batch->error = virthub_base_request(&instance->base, batch->target,
base               54 uspace/drv/bus/usb/ehci/ehci_rh.h 	virthub_base_t base;
base               96 uspace/drv/bus/usb/ehci/ehci_rh.h 	return virthub_base_get_address(&instance->base);
base               60 uspace/drv/bus/usb/ehci/hc.c 		.base = 0,
base              130 uspace/drv/bus/usb/ehci/hc.c 	code->ranges[0].base = RNGABS(regs);
base              367 uspace/drv/bus/usb/ehci/hc.c 			    ehci_transfer_batch_get(ep->base.active_batch);
base              371 uspace/drv/bus/usb/ehci/hc.c 				endpoint_deactivate_locked(&ep->base);
base              373 uspace/drv/bus/usb/ehci/hc.c 				hc_reset_toggles(&batch->base, &ehci_ep_toggle_reset);
base              374 uspace/drv/bus/usb/ehci/hc.c 				usb_transfer_batch_finish(&batch->base);
base               59 uspace/drv/bus/usb/ehci/hc.h 	hc_device_t base;
base               61 uspace/drv/bus/usb/ohci/hc.c 		.base = 0,
base              132 uspace/drv/bus/usb/ohci/hc.c 	code->ranges[0].base = RNGABS(regs);
base              369 uspace/drv/bus/usb/ohci/hc.c 			    ohci_transfer_batch_get(ep->base.active_batch);
base              373 uspace/drv/bus/usb/ohci/hc.c 				endpoint_deactivate_locked(&ep->base);
base              375 uspace/drv/bus/usb/ohci/hc.c 				hc_reset_toggles(&batch->base, &ohci_ep_toggle_reset);
base              376 uspace/drv/bus/usb/ohci/hc.c 				usb_transfer_batch_finish(&batch->base);
base              384 uspace/drv/bus/usb/ohci/hc.c 		hc_start(&hc->base);
base              516 uspace/drv/bus/usb/ohci/hc.c 	if (cap_handle_valid(instance->base.irq_handle)) {
base              617 uspace/drv/bus/usb/ohci/hc.c 	hc_device_setup(&instance->base, (bus_t *) &instance->bus);
base               62 uspace/drv/bus/usb/ohci/hc.h 	hc_device_t base;
base               80 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_transfer_batch_init(&ohci_batch->base, ep);
base               94 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_transfer_batch_t *usb_batch = &ohci_batch->base;
base              152 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_transfer_batch_t *usb_batch = &ohci_batch->base;
base              236 uspace/drv/bus/usb/ohci/ohci_batch.c 	ohci_endpoint_t *ohci_ep = ohci_endpoint_get(ohci_batch->base.ep);
base              273 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_direction_t dir = ohci_batch->base.dir;
base              296 uspace/drv/bus/usb/ohci/ohci_batch.c 	size_t remain_size = ohci_batch->base.size;
base              328 uspace/drv/bus/usb/ohci/ohci_batch.c 	    &ohci_batch->base,
base              329 uspace/drv/bus/usb/ohci/ohci_batch.c 	    usb_str_transfer_type(ohci_batch->base.ep->transfer_type),
base              331 uspace/drv/bus/usb/ohci/ohci_batch.c 	    USB_TRANSFER_BATCH_ARGS(ohci_batch->base));
base              346 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_direction_t dir = ohci_batch->base.dir;
base              350 uspace/drv/bus/usb/ohci/ohci_batch.c 	size_t remain_size = ohci_batch->base.size;
base              373 uspace/drv/bus/usb/ohci/ohci_batch.c 	    &ohci_batch->base,
base              374 uspace/drv/bus/usb/ohci/ohci_batch.c 	    usb_str_transfer_type(ohci_batch->base.ep->transfer_type),
base              376 uspace/drv/bus/usb/ohci/ohci_batch.c 	    USB_TRANSFER_BATCH_ARGS(ohci_batch->base));
base               49 uspace/drv/bus/usb/ohci/ohci_batch.h 	usb_transfer_batch_t base;
base               83 uspace/drv/bus/usb/ohci/ohci_bus.c 	endpoint_init(&ohci_ep->base, dev, desc);
base               99 uspace/drv/bus/usb/ohci/ohci_bus.c 	return &ohci_ep->base;
base              166 uspace/drv/bus/usb/ohci/ohci_bus.c 	return &batch->base;
base               55 uspace/drv/bus/usb/ohci/ohci_bus.h 	endpoint_t base;
base               74 uspace/drv/bus/usb/ohci/ohci_bus.h 	bus_t base;
base              168 uspace/drv/bus/usb/ohci/ohci_rh.c 	return virthub_base_init(&instance->base, name, &ops, instance,
base              183 uspace/drv/bus/usb/ohci/ohci_rh.c 	batch->error = virthub_base_request(&instance->base, batch->target,
base              234 uspace/drv/bus/usb/ohci/ohci_rh.c 		batch->error = virthub_base_request(&instance->base, batch->target,
base               53 uspace/drv/bus/usb/ohci/ohci_rh.h 	virthub_base_t base;
base               81 uspace/drv/bus/usb/ohci/ohci_rh.h 	return virthub_base_get_address(&instance->base);
base               68 uspace/drv/bus/usb/uhci/hc.c 		.base = 0,
base              139 uspace/drv/bus/usb/uhci/hc.c 	code->ranges[0].base = RNGABS(regs);
base              194 uspace/drv/bus/usb/uhci/hc.c 			hc_gone(&instance->base);
base              297 uspace/drv/bus/usb/uhci/hc.c 	if (cap_handle_valid(instance->base.irq_handle)) {
base              315 uspace/drv/bus/usb/uhci/hc.c 	return &batch->base;
base              407 uspace/drv/bus/usb/uhci/hc.c 	batch->base.error = EINTR;
base              408 uspace/drv/bus/usb/uhci/hc.c 	batch->base.transferred_size = 0;
base              409 uspace/drv/bus/usb/uhci/hc.c 	usb_transfer_batch_finish(&batch->base);
base              462 uspace/drv/bus/usb/uhci/hc.c 	hc_device_setup(&instance->base, &instance->bus);
base              105 uspace/drv/bus/usb/uhci/hc.h 	hc_device_t base;
base              142 uspace/drv/bus/usb/uhci/hc.h 	endpoint_t base;
base              120 uspace/drv/bus/usb/uhci/transfer_list.c 	endpoint_t *ep = uhci_batch->base.ep;
base              124 uspace/drv/bus/usb/uhci/transfer_list.c 	const int err = endpoint_activate_locked(ep, &uhci_batch->base);
base              159 uspace/drv/bus/usb/uhci/transfer_list.c 	    USB_TRANSFER_BATCH_ARGS(uhci_batch->base), instance->name);
base              187 uspace/drv/bus/usb/uhci/transfer_list.c 			assert(batch->base.ep->active_batch == &batch->base);
base              188 uspace/drv/bus/usb/uhci/transfer_list.c 			endpoint_deactivate_locked(batch->base.ep);
base              189 uspace/drv/bus/usb/uhci/transfer_list.c 			hc_reset_toggles(&batch->base, &uhci_reset_toggle);
base              191 uspace/drv/bus/usb/uhci/transfer_list.c 			usb_transfer_batch_finish(&batch->base);
base              253 uspace/drv/bus/usb/uhci/transfer_list.c 	    USB_TRANSFER_BATCH_ARGS(uhci_batch->base),
base               83 uspace/drv/bus/usb/uhci/uhci_batch.c 	usb_transfer_batch_init(&uhci_batch->base, ep);
base              100 uspace/drv/bus/usb/uhci/uhci_batch.c 	usb_transfer_batch_t *usb_batch = &uhci_batch->base;
base              155 uspace/drv/bus/usb/uhci/uhci_batch.c 	usb_transfer_batch_t *batch = &uhci_batch->base;
base              217 uspace/drv/bus/usb/uhci/uhci_batch.c 	usb_direction_t dir = uhci_batch->base.dir;
base              222 uspace/drv/bus/usb/uhci/uhci_batch.c 	    uhci_batch->base.ep->device->speed == USB_SPEED_LOW;
base              223 uspace/drv/bus/usb/uhci/uhci_batch.c 	const size_t mps = uhci_batch->base.ep->max_packet_size;
base              225 uspace/drv/bus/usb/uhci/uhci_batch.c 	uhci_endpoint_t *uhci_ep = (uhci_endpoint_t *) uhci_batch->base.ep;
base              231 uspace/drv/bus/usb/uhci/uhci_batch.c 	size_t remain_size = uhci_batch->base.size;
base              243 uspace/drv/bus/usb/uhci/uhci_batch.c 		    toggle, false, low_speed, uhci_batch->base.target, pid, buffer, next_td);
base              255 uspace/drv/bus/usb/uhci/uhci_batch.c 	    usb_str_transfer_type(uhci_batch->base.ep->transfer_type),
base              256 uspace/drv/bus/usb/uhci/uhci_batch.c 	    usb_str_direction(uhci_batch->base.ep->direction),
base              257 uspace/drv/bus/usb/uhci/uhci_batch.c 	    USB_TRANSFER_BATCH_ARGS(uhci_batch->base));
base              275 uspace/drv/bus/usb/uhci/uhci_batch.c 	usb_direction_t dir = uhci_batch->base.dir;
base              286 uspace/drv/bus/usb/uhci/uhci_batch.c 	    uhci_batch->base.ep->device->speed == USB_SPEED_LOW;
base              287 uspace/drv/bus/usb/uhci/uhci_batch.c 	const size_t mps = uhci_batch->base.ep->max_packet_size;
base              288 uspace/drv/bus/usb/uhci/uhci_batch.c 	const usb_target_t target = uhci_batch->base.target;
base              300 uspace/drv/bus/usb/uhci/uhci_batch.c 	size_t remain_size = uhci_batch->base.size;
base               53 uspace/drv/bus/usb/uhci/uhci_batch.h 	usb_transfer_batch_t base;
base               97 uspace/drv/bus/usb/uhci/uhci_batch.h 	return uhci_batch->base.dma_buffer.virt;
base               89 uspace/drv/bus/usb/uhci/uhci_rh.c 	return virthub_base_init(&instance->base, name, &ops, instance,
base              108 uspace/drv/bus/usb/uhci/uhci_rh.c 		batch->error = virthub_base_request(&instance->base, batch->target,
base              112 uspace/drv/bus/usb/uhci/uhci_rh.c 			fibril_usleep(instance->base.endpoint_descriptor.poll_interval * 1000);
base               51 uspace/drv/bus/usb/uhci/uhci_rh.h 	virthub_base_t base;
base               69 uspace/drv/bus/usb/uhci/uhci_rh.h 	return virthub_base_get_address(&instance->base);
base               67 uspace/drv/bus/usb/usbhub/port.c 	usb_port_init(&port->base);
base              114 uspace/drv/bus/usb/usbhub/port.c 	err = usb_hub_reserve_default_address(port->hub, exch, &port->base);
base              122 uspace/drv/bus/usb/usbhub/port.c 	if (port->base.state != PORT_CONNECTING)
base              133 uspace/drv/bus/usb/usbhub/port.c 	if ((err = usb_port_wait_for_enabled(&port->base))) {
base              172 uspace/drv/bus/usb/usbhub/port.c 	if ((err = usb_port_wait_for_enabled(&port->base))) {
base              216 uspace/drv/bus/usb/usbhub/port.c 		usb_port_connected(&port->base, &enumerate_device);
base              218 uspace/drv/bus/usb/usbhub/port.c 		usb_port_disabled(&port->base, &remove_device);
base              228 uspace/drv/bus/usb/usbhub/port.c 		usb_port_disabled(&port->base, &remove_device);
base              245 uspace/drv/bus/usb/usbhub/port.c 	usb_port_disabled(&port->base, &remove_device);
base              262 uspace/drv/bus/usb/usbhub/port.c 		usb_port_enabled(&port->base);
base              264 uspace/drv/bus/usb/usbhub/port.c 		usb_port_disabled(&port->base, &remove_device);
base               49 uspace/drv/bus/usb/usbhub/port.h 	usb_port_t base;
base              207 uspace/drv/bus/usb/usbhub/usbhub.c 		usb_port_fini(&hub->ports[port].base);
base               88 uspace/drv/bus/usb/vhc/main.c 	hc_device_setup(&vhc->base, (bus_t *) &vhc->bus);
base              110 uspace/drv/bus/usb/vhc/main.c 	ret = hc_setup_virtual_root_hub(&vhc->base, USB_SPEED_HIGH);
base               62 uspace/drv/bus/usb/vhc/vhcd.h 	hc_device_t base;
base               73 uspace/drv/bus/usb/xhci/bus.c 	bus_init(&bus->base, sizeof(xhci_device_t));
base               80 uspace/drv/bus/usb/xhci/bus.c 	bus->base.ops = &xhci_bus_ops;
base               47 uspace/drv/bus/usb/xhci/bus.h 	bus_t base; /**< Inheritance. Keep this first. */
base               85 uspace/drv/bus/usb/xhci/device.c 	if ((err = bus_endpoint_add(&dev->base, &ep0_initial_desc, &ep0_base)))
base               89 uspace/drv/bus/usb/xhci/device.c 	    usb_str_speed(dev->base.speed));
base               90 uspace/drv/bus/usb/xhci/device.c 	ep0_base->max_packet_size = hc_get_ep0_initial_mps(dev->base.speed);
base              122 uspace/drv/bus/usb/xhci/device.c 	if ((err = hc_get_ep0_max_packet_size(&max_packet_size, &dev->base)))
base              125 uspace/drv/bus/usb/xhci/device.c 	xhci_endpoint_t *ep0 = xhci_endpoint_get(dev->base.endpoints[0]);
base              128 uspace/drv/bus/usb/xhci/device.c 	if (ep0->base.max_packet_size == max_packet_size)
base              131 uspace/drv/bus/usb/xhci/device.c 	ep0->base.max_packet_size = max_packet_size;
base              132 uspace/drv/bus/usb/xhci/device.c 	ep0->base.max_transfer_size = max_packet_size * ep0->base.packets_per_uframe;
base              152 uspace/drv/bus/usb/xhci/device.c 	const errno_t err = hc_get_hub_desc(&dev->base, &hub_desc);
base              159 uspace/drv/bus/usb/xhci/device.c 	if (dev->base.speed == USB_SPEED_HIGH) {
base              166 uspace/drv/bus/usb/xhci/device.c 	    dev->base.address, dev->num_ports);
base              209 uspace/drv/bus/usb/xhci/device.c 	fibril_mutex_lock(&bus->base.guard);
base              212 uspace/drv/bus/usb/xhci/device.c 	fibril_mutex_unlock(&bus->base.guard);
base              242 uspace/drv/bus/usb/xhci/device.c 	bus_endpoint_remove(xhci_dev->base.endpoints[0]);
base              333 uspace/drv/bus/usb/xhci/device.c 	XHCI_SLOT_SPEED_SET(*ctx, hc_speed_to_psiv(dev->base.speed));
base              348 uspace/drv/bus/usb/xhci/device.c 	if (dev->base.tt.dev != NULL) {
base              349 uspace/drv/bus/usb/xhci/device.c 		xhci_device_t *hub = xhci_device_get(dev->base.tt.dev);
base              351 uspace/drv/bus/usb/xhci/device.c 		XHCI_SLOT_TT_HUB_PORT_SET(*ctx, dev->base.tt.port);
base               43 uspace/drv/bus/usb/xhci/device.h 	device_t base;		/**< Inheritance. Keep this first. */
base               64 uspace/drv/bus/usb/xhci/device.h #define XHCI_DEV_ARGS(dev)	ddf_fun_get_name((dev).base.fun), (dev).slot_id
base               66 uspace/drv/bus/usb/xhci/endpoint.c 	endpoint_t *ep = &xhci_ep->base;
base              119 uspace/drv/bus/usb/xhci/endpoint.c 	if (xhci_ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS)
base              164 uspace/drv/bus/usb/xhci/endpoint.c 	return &ep->base;
base              290 uspace/drv/bus/usb/xhci/endpoint.c 	const bool in = ep->base.direction == USB_DIRECTION_IN;
base              292 uspace/drv/bus/usb/xhci/endpoint.c 	switch (ep->base.transfer_type) {
base              332 uspace/drv/bus/usb/xhci/endpoint.c 	if (xhci_ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS) {
base              356 uspace/drv/bus/usb/xhci/endpoint.c 	if (xhci_ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS)
base              382 uspace/drv/bus/usb/xhci/endpoint.c 	XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, ep->base.max_packet_size);
base              398 uspace/drv/bus/usb/xhci/endpoint.c 	XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, ep->base.max_packet_size);
base              415 uspace/drv/bus/usb/xhci/endpoint.c 	XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, ep->base.max_packet_size & 0x07FF);
base              435 uspace/drv/bus/usb/xhci/endpoint.c 	XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, ep->base.max_packet_size & 0x07FF);
base              468 uspace/drv/bus/usb/xhci/endpoint.c 	usb_transfer_type_t tt = ep->base.transfer_type;
base               70 uspace/drv/bus/usb/xhci/endpoint.h 	endpoint_t base;	/**< Inheritance. Keep this first. */
base              122 uspace/drv/bus/usb/xhci/endpoint.h 	((ep).base.device ? (ep).base.device->address : -1),	\
base              123 uspace/drv/bus/usb/xhci/endpoint.h 	((ep).base.endpoint),		\
base              124 uspace/drv/bus/usb/xhci/endpoint.h 	(usb_str_transfer_type((ep).base.transfer_type))
base              149 uspace/drv/bus/usb/xhci/endpoint.h 	return xhci_device_get(ep->base.device);
base              205 uspace/drv/bus/usb/xhci/hc.c 	void *base;
base              206 uspace/drv/bus/usb/xhci/hc.c 	if ((err = pio_enable_range(&hc->mmio_range, &base)))
base              209 uspace/drv/bus/usb/xhci/hc.c 	hc->reg_base = base;
base              210 uspace/drv/bus/usb/xhci/hc.c 	hc->cap_regs = (xhci_cap_regs_t *)  base;
base              211 uspace/drv/bus/usb/xhci/hc.c 	hc->op_regs  = (xhci_op_regs_t *)  (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_LENGTH));
base              212 uspace/drv/bus/usb/xhci/hc.c 	hc->rt_regs  = (xhci_rt_regs_t *)  (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_RTSOFF));
base              213 uspace/drv/bus/usb/xhci/hc.c 	hc->db_arry  = (xhci_doorbell_t *) (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_DBOFF));
base              217 uspace/drv/bus/usb/xhci/hc.c 		hc->xecp = (xhci_extcap_t *) (base + xec_offset);
base              385 uspace/drv/bus/usb/xhci/hc.c 		.base = RNGABS(hc->mmio_range),
base              496 uspace/drv/bus/usb/xhci/hc.c 	if (cap_handle_valid(hc->base.irq_handle)) {
base              770 uspace/drv/bus/usb/xhci/hc.c 	return (2 * ep->base.endpoint) +
base              771 uspace/drv/bus/usb/xhci/hc.c 	    (ep->base.transfer_type == USB_TRANSFER_CONTROL ||
base              772 uspace/drv/bus/usb/xhci/hc.c 	    ep->base.direction == USB_DIRECTION_IN);
base              778 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              791 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              826 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              851 uspace/drv/bus/usb/xhci/hc.c 	const xhci_hc_t *hc = bus_to_hc(dev->base.bus);
base              875 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              876 uspace/drv/bus/usb/xhci/hc.c 	xhci_endpoint_t *ep0 = xhci_endpoint_get(dev->base.endpoints[0]);
base              882 uspace/drv/bus/usb/xhci/hc.c 	if (!usb_speed_to_psiv[dev->base.speed]) {
base              884 uspace/drv/bus/usb/xhci/hc.c 		    "to HC port speed.", usb_str_speed(dev->base.speed));
base              914 uspace/drv/bus/usb/xhci/hc.c 	dev->base.address = XHCI_SLOT_DEVICE_ADDRESS(*XHCI_GET_SLOT_CTX(device_ctx, hc));
base              915 uspace/drv/bus/usb/xhci/hc.c 	usb_log_debug("Obtained USB address: %d.", dev->base.address);
base              927 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              952 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base              991 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base             1015 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base             1055 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base             1087 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base             1113 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(dev->base.bus);
base             1142 uspace/drv/bus/usb/xhci/hc.c 	xhci_hc_t *const hc = bus_to_hc(endpoint_get_bus(&ep->base));
base               56 uspace/drv/bus/usb/xhci/hc.h 	hc_device_t base;
base               50 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base               56 uspace/drv/bus/usb/xhci/isoch.c 	const xhci_hc_t *hc = bus_to_xhci_bus(ep->base.device->bus)->hc;
base              125 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              147 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              161 uspace/drv/bus/usb/xhci/isoch.c 		if (dma_buffer_alloc(&transfer->data, ep->base.max_transfer_size)) {
base              237 uspace/drv/bus/usb/xhci/isoch.c 		const xhci_bus_t *bus = bus_to_xhci_bus(ep->base.device->bus);
base              305 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              309 uspace/drv/bus/usb/xhci/isoch.c 	xhci_bus_t *bus = bus_to_xhci_bus(ep->base.device->bus);
base              391 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              395 uspace/drv/bus/usb/xhci/isoch.c 	xhci_bus_t *bus = bus_to_xhci_bus(ep->base.device->bus);
base              406 uspace/drv/bus/usb/xhci/isoch.c 			it->size = ep->base.max_transfer_size;
base              482 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              486 uspace/drv/bus/usb/xhci/isoch.c 	assert(transfer->batch.size <= ep->base.max_transfer_size);
base              546 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base              549 uspace/drv/bus/usb/xhci/isoch.c 	if (transfer->batch.size < ep->base.max_transfer_size) {
base              593 uspace/drv/bus/usb/xhci/isoch.c 	assert(ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS);
base               69 uspace/drv/bus/usb/xhci/rh.c 	usb_port_t base;
base               92 uspace/drv/bus/usb/xhci/rh.c 	const errno_t err = bus_device_init(&rh->device.base, &rh->hc->bus.base);
base              105 uspace/drv/bus/usb/xhci/rh.c 		usb_port_init(&rh->ports[i].base);
base              149 uspace/drv/bus/usb/xhci/rh.c 		if ((err = usb_port_wait_for_enabled(&port->base)))
base              154 uspace/drv/bus/usb/xhci/rh.c 		if ((err = usb_port_wait_for_enabled(&port->base)))
base              173 uspace/drv/bus/usb/xhci/rh.c 	device_t *dev = hcd_ddf_fun_create(&port->rh->hc->base, speed);
base              179 uspace/drv/bus/usb/xhci/rh.c 	dev->hub = &port->rh->device.base;
base              224 uspace/drv/bus/usb/xhci/rh.c 	bus_device_gone(&port->device->base);
base              256 uspace/drv/bus/usb/xhci/rh.c 				usb_port_connected(&port->base, &rh_enumerate_device);
base              258 uspace/drv/bus/usb/xhci/rh.c 				usb_port_disabled(&port->base, &rh_remove_device);
base              266 uspace/drv/bus/usb/xhci/rh.c 				usb_port_enabled(&port->base);
base              268 uspace/drv/bus/usb/xhci/rh.c 				usb_port_disabled(&port->base, &rh_remove_device);
base              308 uspace/drv/bus/usb/xhci/rh.c 		    port->base.state == PORT_DISABLED)
base              309 uspace/drv/bus/usb/xhci/rh.c 			usb_port_connected(&port->base, &rh_enumerate_device);
base              324 uspace/drv/bus/usb/xhci/rh.c 		usb_port_disabled(&port->base, &rh_remove_device);
base              325 uspace/drv/bus/usb/xhci/rh.c 		usb_port_fini(&port->base);
base               74 uspace/drv/bus/usb/xhci/scratchpad.c 	const char *base = hc->scratchpad_array.virt + array_size;
base               79 uspace/drv/bus/usb/xhci/scratchpad.c 		    base + i * PAGE_SIZE));
base              280 uspace/drv/bus/usb/xhci/streams.c 	XHCI_EP_MAX_PACKET_SIZE_SET(*ctx, xhci_ep->base.max_packet_size);
base              299 uspace/drv/bus/usb/xhci/streams.c 	if (xhci_ep->base.transfer_type != USB_TRANSFER_BULK ||
base              300 uspace/drv/bus/usb/xhci/streams.c 	    dev->base.speed != USB_SPEED_SUPER) {
base              308 uspace/drv/bus/usb/xhci/transfers.c 	endpoint_t *ep_base = bus_find_endpoint(&dev->base, ep_num, dir);
base              331 uspace/drv/bus/usb/xhci/transfers.c 		if (ep->base.transfer_type == USB_TRANSFER_ISOCHRONOUS) {
base              334 uspace/drv/bus/usb/xhci/transfers.c 			endpoint_del_ref(&ep->base);
base              339 uspace/drv/bus/usb/xhci/transfers.c 		batch = ep->base.active_batch;
base              340 uspace/drv/bus/usb/xhci/transfers.c 		endpoint_deactivate_locked(&ep->base);
base              345 uspace/drv/bus/usb/xhci/transfers.c 			endpoint_del_ref(&ep->base);
base              405 uspace/drv/bus/usb/xhci/transfers.c 	endpoint_del_ref(&ep->base);
base              467 uspace/drv/bus/usb/xhci/transfers.c 			endpoint_t *halted_ep = bus_find_endpoint(&xhci_dev->base, ep_num, dir);
base              488 uspace/drv/bus/usb/xhci/transfers.c 				    " %u %s.", xhci_dev->base.address, ep_num,
base               80 uspace/drv/char/i8042/i8042.c 		.base = 0,
base              274 uspace/drv/char/i8042/i8042.c 	ranges[0].base = RNGABS(*regs);
base               84 uspace/drv/char/msim-con/main.c 	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
base              111 uspace/drv/char/msim-con/msim-con.c 	rc = pio_enable((void *)res->base, 1, (void **) &con->out_reg);
base              119 uspace/drv/char/msim-con/msim-con.c 	con->irq_range[0].base = res->base;
base              123 uspace/drv/char/msim-con/msim-con.c 	msim_cmds[0].addr = (void *) res->base;
base               53 uspace/drv/char/msim-con/msim-con.h 	uintptr_t base;
base               84 uspace/drv/char/pc-lpt/main.c 	res->base = RNGABS(hw_res.io_ranges.ranges[0]);
base              106 uspace/drv/char/pc-lpt/pc-lpt.c 	rc = pio_enable((void *)res->base, sizeof(pc_lpt_regs_t),
base              115 uspace/drv/char/pc-lpt/pc-lpt.c 	lpt->irq_range[0].base = res->base;
base              119 uspace/drv/char/pc-lpt/pc-lpt.c 	pc_lpt_cmds[0].addr = (void *) res->base;
base               49 uspace/drv/char/pc-lpt/pc-lpt.h 	uintptr_t base;
base               84 uspace/drv/char/pl011/main.c 	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
base              156 uspace/drv/char/pl011/pl011.c 		.base = 0,
base              251 uspace/drv/char/pl011/pl011.c 	    (void *) res->base, sizeof(pl011_uart_regs_t), &pl011->regs);
base              259 uspace/drv/char/pl011/pl011.c 	pl011_ranges[0].base = res->base;
base              260 uspace/drv/char/pl011/pl011.c 	pl011_uart_regs_t *regsphys = (pl011_uart_regs_t *) res->base;
base               53 uspace/drv/char/pl011/pl011.h 	uintptr_t base;
base              101 uspace/drv/char/pl050/pl050.c 		.base = 0,
base              198 uspace/drv/char/pl050/pl050.c 	pl050_irq_code.ranges[0].base = pl050->iobase;
base              221 uspace/drv/intctl/apic/apic.c 	rc = pio_enable((void *) res->base, IO_APIC_SIZE, &regs);
base               44 uspace/drv/intctl/apic/apic.h 	uintptr_t base;
base               84 uspace/drv/intctl/apic/main.c 	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
base              120 uspace/drv/intctl/icp-ic/icp-ic.c 	rc = pio_enable((void *)res->base, sizeof(icpic_regs_t), &regs);
base               45 uspace/drv/intctl/icp-ic/icp-ic.h 	uintptr_t base;
base               84 uspace/drv/intctl/icp-ic/main.c 	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
base               84 uspace/drv/intctl/obio/main.c 	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
base              122 uspace/drv/intctl/obio/obio.c 	rc = pio_enable((void *)res->base, OBIO_SIZE, (void **) &obio->regs);
base              129 uspace/drv/intctl/obio/obio.c 	ddf_msg(LVL_NOTE, "OBIO registers with base at 0x%" PRIxn, res->base);
base               44 uspace/drv/intctl/obio/obio.h 	uintptr_t base;
base              242 uspace/drv/nic/e1k/e1k.c 		.base = 0,
base             1280 uspace/drv/nic/e1k/e1k.c 	e1000_irq_code.ranges[0].base = (uintptr_t) e1000->reg_base_phys;
base               68 uspace/drv/nic/ne2k/ne2k.c 		.base = 0,
base              139 uspace/drv/nic/ne2k/ne2k.c 		ne2k_ranges[0].base = (uintptr_t) ne2k->base_port;
base              622 uspace/drv/nic/rtl8139/driver.c 		.base = 0,
base              858 uspace/drv/nic/rtl8139/driver.c 	rtl8139_irq_code.ranges[0].base = (uintptr_t) rtl8139->io_addr;
base              120 uspace/drv/nic/rtl8169/driver.c 		.base = 0,
base              369 uspace/drv/nic/rtl8169/driver.c 	rtl8169_irq_code.ranges[0].base = (uintptr_t) rtl8169->regs;
base              137 uspace/drv/nic/virtio-net/virtio-net.c 			.base = vdev->isr_phys,
base               46 uspace/drv/platform/amdm37x/amdm37x.c log_message(const volatile void *place, uint64_t val, volatile void *base, size_t size,
base               50 uspace/drv/platform/amdm37x/amdm37x.c 	    (place - base) + data, place, val);
base              116 uspace/drv/platform/arm64virt/arm64virt.c 		.base = 0,
base              116 uspace/drv/platform/hikey960/hikey960.c 		.base = 0,
base              124 uspace/drv/platform/icp/icp.c 		.base = 0,
base               78 uspace/drv/platform/mac/mac.c 			.base = 0, /* patched at run time */
base              198 uspace/drv/platform/mac/mac.c 	adb_data.pio_window.io.base = cuda_physical;
base              120 uspace/drv/platform/malta/malta.c 			.base = GT_PCI_MEMBASE,
base              124 uspace/drv/platform/malta/malta.c 			.base = GT_PCI_IOBASE,
base              102 uspace/drv/platform/msim/msim.c 			.base = MSIM_DDISK_BASE,
base              133 uspace/drv/platform/msim/msim.c 			.base = MSIM_KBD_ADDRESS,
base              103 uspace/drv/platform/pc/pc.c 			.base = UINT32_C(0),
base              107 uspace/drv/platform/pc/pc.c 			.base = UINT32_C(0),
base              110 uspace/drv/platform/sun4u/sun4u.c 			.base = PBM_BASE + PBM_OBIO_BASE,
base              135 uspace/drv/platform/sun4u/sun4u.c 			.base = PBM_BASE + PBM_PCI_MEM_BASE,
base              139 uspace/drv/platform/sun4u/sun4u.c 			.base = PBM_BASE + PBM_PCI_IO_BASE,
base               95 uspace/drv/platform/sun4v/sun4v.c 			.base = 0,
base               49 uspace/lib/bithenge/include/bithenge/blob.h 	struct bithenge_node_t base;
base               76 uspace/lib/bithenge/include/bithenge/blob.h 	bithenge_blob_t base;
base              134 uspace/lib/bithenge/include/bithenge/blob.h 	assert(self->base.blob_ops);
base              135 uspace/lib/bithenge/include/bithenge/blob.h 	return self->base.blob_ops->size(self, size);
base              157 uspace/lib/bithenge/include/bithenge/blob.h 	assert(self->base.blob_ops);
base              158 uspace/lib/bithenge/include/bithenge/blob.h 	if (!self->base.blob_ops->read)
base              160 uspace/lib/bithenge/include/bithenge/blob.h 	return self->base.blob_ops->read(self, offset, buffer, size);
base              185 uspace/lib/bithenge/include/bithenge/blob.h 	assert(self->base.blob_ops);
base              186 uspace/lib/bithenge/include/bithenge/blob.h 	if (!self->base.blob_ops->read_bits)
base              188 uspace/lib/bithenge/include/bithenge/blob.h 	return self->base.blob_ops->read_bits(self, offset, buffer, size,
base              202 uspace/lib/bithenge/include/bithenge/blob.h 	assert(self->base.blob_ops);
base              216 uspace/lib/bithenge/include/bithenge/blob.h 	return &blob->base;
base               63 uspace/lib/bithenge/src/blob.c 	blob->base.type = BITHENGE_NODE_BLOB;
base               64 uspace/lib/bithenge/src/blob.c 	blob->base.refs = 1;
base               65 uspace/lib/bithenge/src/blob.c 	blob->base.blob_ops = ops;
base               91 uspace/lib/bithenge/src/blob.c     bithenge_blob_t *base)
base               93 uspace/lib/bithenge/src/blob.c 	return (bithenge_sequential_blob_t *)base;
base               99 uspace/lib/bithenge/src/blob.c 	return &blob->base;
base              102 uspace/lib/bithenge/src/blob.c static errno_t sequential_size(bithenge_blob_t *base, aoff64_t *size)
base              104 uspace/lib/bithenge/src/blob.c 	bithenge_sequential_blob_t *blob = blob_as_sequential(base);
base              123 uspace/lib/bithenge/src/blob.c static errno_t sequential_read(bithenge_blob_t *base, aoff64_t offset,
base              126 uspace/lib/bithenge/src/blob.c 	bithenge_sequential_blob_t *blob = blob_as_sequential(base);
base              140 uspace/lib/bithenge/src/blob.c static void sequential_destroy(bithenge_blob_t *base)
base              142 uspace/lib/bithenge/src/blob.c 	bithenge_sequential_blob_t *blob = blob_as_sequential(base);
base              181 uspace/lib/bithenge/src/blob.c 	bithenge_blob_t base;
base              187 uspace/lib/bithenge/src/blob.c static inline memory_blob_t *blob_as_memory(bithenge_blob_t *base)
base              189 uspace/lib/bithenge/src/blob.c 	return (memory_blob_t *)base;
base              194 uspace/lib/bithenge/src/blob.c 	return &blob->base;
base              197 uspace/lib/bithenge/src/blob.c static errno_t memory_size(bithenge_blob_t *base, aoff64_t *size)
base              199 uspace/lib/bithenge/src/blob.c 	memory_blob_t *blob = blob_as_memory(base);
base              206 uspace/lib/bithenge/src/blob.c static errno_t memory_read(bithenge_blob_t *base, aoff64_t offset, char *buffer,
base              209 uspace/lib/bithenge/src/blob.c 	memory_blob_t *blob = blob_as_memory(base);
base              217 uspace/lib/bithenge/src/blob.c static void memory_destroy(bithenge_blob_t *base)
base              219 uspace/lib/bithenge/src/blob.c 	memory_blob_t *blob = blob_as_memory(base);
base              294 uspace/lib/bithenge/src/blob.c 	bithenge_blob_t base;
base              301 uspace/lib/bithenge/src/blob.c static inline subblob_t *blob_as_subblob(bithenge_blob_t *base)
base              303 uspace/lib/bithenge/src/blob.c 	return (subblob_t *)base;
base              308 uspace/lib/bithenge/src/blob.c 	return &blob->base;
base              311 uspace/lib/bithenge/src/blob.c static errno_t subblob_size(bithenge_blob_t *base, aoff64_t *size)
base              313 uspace/lib/bithenge/src/blob.c 	subblob_t *blob = blob_as_subblob(base);
base              324 uspace/lib/bithenge/src/blob.c static errno_t subblob_read(bithenge_blob_t *base, aoff64_t offset,
base              327 uspace/lib/bithenge/src/blob.c 	subblob_t *blob = blob_as_subblob(base);
base              337 uspace/lib/bithenge/src/blob.c static errno_t subblob_read_bits(bithenge_blob_t *base, aoff64_t offset,
base              340 uspace/lib/bithenge/src/blob.c 	subblob_t *blob = blob_as_subblob(base);
base              351 uspace/lib/bithenge/src/blob.c static void subblob_destroy(bithenge_blob_t *base)
base              353 uspace/lib/bithenge/src/blob.c 	subblob_t *blob = blob_as_subblob(base);
base              367 uspace/lib/bithenge/src/blob.c 	return blob->base.blob_ops == &subblob_ops;
base              389 uspace/lib/bithenge/src/blob.c 		if (source->base.refs == 1) {
base              468 uspace/lib/bithenge/src/blob.c 	assert(a->base.blob_ops);
base              470 uspace/lib/bithenge/src/blob.c 	assert(b->base.blob_ops);
base               49 uspace/lib/bithenge/src/compound.c 	bithenge_transform_t base;
base               56 uspace/lib/bithenge/src/compound.c 	return &xform->base;
base               64 uspace/lib/bithenge/src/compound.c static errno_t compose_apply(bithenge_transform_t *base, bithenge_scope_t *scope,
base               68 uspace/lib/bithenge/src/compound.c 	compose_transform_t *self = transform_as_compose(base);
base               87 uspace/lib/bithenge/src/compound.c static errno_t compose_prefix_length(bithenge_transform_t *base,
base               90 uspace/lib/bithenge/src/compound.c 	compose_transform_t *self = transform_as_compose(base);
base               95 uspace/lib/bithenge/src/compound.c static void compose_destroy(bithenge_transform_t *base)
base               97 uspace/lib/bithenge/src/compound.c 	compose_transform_t *self = transform_as_compose(base);
base              157 uspace/lib/bithenge/src/compound.c 	bithenge_transform_t base;
base              164 uspace/lib/bithenge/src/compound.c 	return &self->base;
base              167 uspace/lib/bithenge/src/compound.c static inline if_transform_t *transform_as_if(bithenge_transform_t *base)
base              169 uspace/lib/bithenge/src/compound.c 	return (if_transform_t *)base;
base              188 uspace/lib/bithenge/src/compound.c static errno_t if_transform_apply(bithenge_transform_t *base,
base              191 uspace/lib/bithenge/src/compound.c 	if_transform_t *self = transform_as_if(base);
base              200 uspace/lib/bithenge/src/compound.c static errno_t if_transform_prefix_length(bithenge_transform_t *base,
base              203 uspace/lib/bithenge/src/compound.c 	if_transform_t *self = transform_as_if(base);
base              212 uspace/lib/bithenge/src/compound.c static void if_transform_destroy(bithenge_transform_t *base)
base              214 uspace/lib/bithenge/src/compound.c 	if_transform_t *self = transform_as_if(base);
base              271 uspace/lib/bithenge/src/compound.c 	bithenge_transform_t base;
base              278 uspace/lib/bithenge/src/compound.c 	return &self->base;
base              282 uspace/lib/bithenge/src/compound.c     bithenge_transform_t *base)
base              284 uspace/lib/bithenge/src/compound.c 	return (partial_transform_t *)base;
base              287 uspace/lib/bithenge/src/compound.c static errno_t partial_transform_apply(bithenge_transform_t *base,
base              290 uspace/lib/bithenge/src/compound.c 	partial_transform_t *self = transform_as_partial(base);
base              297 uspace/lib/bithenge/src/compound.c static void partial_transform_destroy(bithenge_transform_t *base)
base              299 uspace/lib/bithenge/src/compound.c 	partial_transform_t *self = transform_as_partial(base);
base               74 uspace/lib/bithenge/src/expression.c 	bithenge_expression_t base;
base               80 uspace/lib/bithenge/src/expression.c     bithenge_expression_t *base)
base               82 uspace/lib/bithenge/src/expression.c 	return (binary_expression_t *)base;
base               88 uspace/lib/bithenge/src/expression.c 	return &self->base;
base               91 uspace/lib/bithenge/src/expression.c static errno_t binary_expression_evaluate(bithenge_expression_t *base,
base               95 uspace/lib/bithenge/src/expression.c 	binary_expression_t *self = expression_as_binary(base);
base              236 uspace/lib/bithenge/src/expression.c static void binary_expression_destroy(bithenge_expression_t *base)
base              238 uspace/lib/bithenge/src/expression.c 	binary_expression_t *self = expression_as_binary(base);
base              360 uspace/lib/bithenge/src/expression.c 	bithenge_expression_t base;
base              365 uspace/lib/bithenge/src/expression.c     bithenge_expression_t *base)
base              367 uspace/lib/bithenge/src/expression.c 	return (param_expression_t *)base;
base              373 uspace/lib/bithenge/src/expression.c 	return &self->base;
base              376 uspace/lib/bithenge/src/expression.c static errno_t param_expression_evaluate(bithenge_expression_t *base,
base              379 uspace/lib/bithenge/src/expression.c 	param_expression_t *self = expression_as_param(base);
base              383 uspace/lib/bithenge/src/expression.c static void param_expression_destroy(bithenge_expression_t *base)
base              385 uspace/lib/bithenge/src/expression.c 	param_expression_t *self = expression_as_param(base);
base              423 uspace/lib/bithenge/src/expression.c 	bithenge_expression_t base;
base              428 uspace/lib/bithenge/src/expression.c     bithenge_expression_t *base)
base              430 uspace/lib/bithenge/src/expression.c 	return (const_expression_t *)base;
base              436 uspace/lib/bithenge/src/expression.c 	return &self->base;
base              439 uspace/lib/bithenge/src/expression.c static errno_t const_expression_evaluate(bithenge_expression_t *base,
base              442 uspace/lib/bithenge/src/expression.c 	const_expression_t *self = expression_as_const(base);
base              448 uspace/lib/bithenge/src/expression.c static void const_expression_destroy(bithenge_expression_t *base)
base              450 uspace/lib/bithenge/src/expression.c 	const_expression_t *self = expression_as_const(base);
base              495 uspace/lib/bithenge/src/expression.c 	bithenge_expression_t base;
base              500 uspace/lib/bithenge/src/expression.c     bithenge_expression_t *base)
base              502 uspace/lib/bithenge/src/expression.c 	return (scope_member_expression_t *)base;
base              508 uspace/lib/bithenge/src/expression.c 	return &expr->base;
base              511 uspace/lib/bithenge/src/expression.c static errno_t scope_member_expression_evaluate(bithenge_expression_t *base,
base              514 uspace/lib/bithenge/src/expression.c 	scope_member_expression_t *self = expression_as_scope_member(base);
base              529 uspace/lib/bithenge/src/expression.c static void scope_member_expression_destroy(bithenge_expression_t *base)
base              531 uspace/lib/bithenge/src/expression.c 	scope_member_expression_t *self = expression_as_scope_member(base);
base              578 uspace/lib/bithenge/src/expression.c 	bithenge_expression_t base;
base              583 uspace/lib/bithenge/src/expression.c static subblob_expression_t *expression_as_subblob(bithenge_expression_t *base)
base              585 uspace/lib/bithenge/src/expression.c 	return (subblob_expression_t *)base;
base              590 uspace/lib/bithenge/src/expression.c 	return &expr->base;
base              593 uspace/lib/bithenge/src/expression.c static errno_t subblob_expression_evaluate(bithenge_expression_t *base,
base              596 uspace/lib/bithenge/src/expression.c 	subblob_expression_t *self = expression_as_subblob(base);
base              645 uspace/lib/bithenge/src/expression.c static void subblob_expression_destroy(bithenge_expression_t *base)
base              647 uspace/lib/bithenge/src/expression.c 	subblob_expression_t *self = expression_as_subblob(base);
base              706 uspace/lib/bithenge/src/expression.c 	bithenge_transform_t base;
base              714 uspace/lib/bithenge/src/expression.c 	return &self->base;
base              718 uspace/lib/bithenge/src/expression.c     bithenge_transform_t *base)
base              720 uspace/lib/bithenge/src/expression.c 	return (param_wrapper_t *)base;
base              744 uspace/lib/bithenge/src/expression.c static errno_t param_wrapper_apply(bithenge_transform_t *base,
base              747 uspace/lib/bithenge/src/expression.c 	param_wrapper_t *self = transform_as_param_wrapper(base);
base              764 uspace/lib/bithenge/src/expression.c static errno_t param_wrapper_prefix_length(bithenge_transform_t *base,
base              767 uspace/lib/bithenge/src/expression.c 	param_wrapper_t *self = transform_as_param_wrapper(base);
base              784 uspace/lib/bithenge/src/expression.c static errno_t param_wrapper_prefix_apply(bithenge_transform_t *base,
base              788 uspace/lib/bithenge/src/expression.c 	param_wrapper_t *self = transform_as_param_wrapper(base);
base              805 uspace/lib/bithenge/src/expression.c static void param_wrapper_destroy(bithenge_transform_t *base)
base              807 uspace/lib/bithenge/src/expression.c 	param_wrapper_t *self = transform_as_param_wrapper(base);
base              867 uspace/lib/bithenge/src/expression.c 	bithenge_transform_t base;
base              874 uspace/lib/bithenge/src/expression.c 	return &self->base;
base              878 uspace/lib/bithenge/src/expression.c     bithenge_transform_t *base)
base              880 uspace/lib/bithenge/src/expression.c 	return (expression_transform_t *)base;
base              883 uspace/lib/bithenge/src/expression.c static errno_t expression_transform_apply(bithenge_transform_t *base,
base              886 uspace/lib/bithenge/src/expression.c 	expression_transform_t *self = transform_as_expression(base);
base              898 uspace/lib/bithenge/src/expression.c static void expression_transform_destroy(bithenge_transform_t *base)
base              900 uspace/lib/bithenge/src/expression.c 	expression_transform_t *self = transform_as_expression(base);
base              945 uspace/lib/bithenge/src/expression.c static errno_t inputless_transform_prefix_length(bithenge_transform_t *base,
base              952 uspace/lib/bithenge/src/expression.c static errno_t inputless_transform_prefix_apply(bithenge_transform_t *base,
base              956 uspace/lib/bithenge/src/expression.c 	expression_transform_t *self = transform_as_expression(base);
base             1004 uspace/lib/bithenge/src/expression.c 	bithenge_blob_t base;
base             1011 uspace/lib/bithenge/src/expression.c static inline concat_blob_t *blob_as_concat(bithenge_blob_t *base)
base             1013 uspace/lib/bithenge/src/expression.c 	return (concat_blob_t *)base;
base             1018 uspace/lib/bithenge/src/expression.c 	return &blob->base;
base             1043 uspace/lib/bithenge/src/expression.c static errno_t concat_blob_size(bithenge_blob_t *base, aoff64_t *size)
base             1045 uspace/lib/bithenge/src/expression.c 	concat_blob_t *self = blob_as_concat(base);
base             1054 uspace/lib/bithenge/src/expression.c static errno_t concat_blob_read(bithenge_blob_t *base, aoff64_t offset,
base             1058 uspace/lib/bithenge/src/expression.c 	concat_blob_t *self = blob_as_concat(base);
base             1082 uspace/lib/bithenge/src/expression.c static errno_t concat_blob_read_bits(bithenge_blob_t *base, aoff64_t offset,
base             1086 uspace/lib/bithenge/src/expression.c 	concat_blob_t *self = blob_as_concat(base);
base             1113 uspace/lib/bithenge/src/expression.c static void concat_blob_destroy(bithenge_blob_t *base)
base             1115 uspace/lib/bithenge/src/expression.c 	concat_blob_t *self = blob_as_concat(base);
base               49 uspace/lib/bithenge/src/file.c 	bithenge_blob_t base;
base               55 uspace/lib/bithenge/src/file.c static inline file_blob_t *blob_as_file(bithenge_blob_t *base)
base               57 uspace/lib/bithenge/src/file.c 	return (file_blob_t *)base;
base               62 uspace/lib/bithenge/src/file.c 	return &blob->base;
base               65 uspace/lib/bithenge/src/file.c static errno_t file_size(bithenge_blob_t *base, aoff64_t *size)
base               67 uspace/lib/bithenge/src/file.c 	file_blob_t *blob = blob_as_file(base);
base               72 uspace/lib/bithenge/src/file.c static errno_t file_read(bithenge_blob_t *base, aoff64_t offset, char *buffer,
base               75 uspace/lib/bithenge/src/file.c 	file_blob_t *blob = blob_as_file(base);
base               87 uspace/lib/bithenge/src/file.c static void file_destroy(bithenge_blob_t *base)
base               89 uspace/lib/bithenge/src/file.c 	file_blob_t *blob = blob_as_file(base);
base               49 uspace/lib/bithenge/src/helenos/block.c 	bithenge_blob_t base;
base               54 uspace/lib/bithenge/src/helenos/block.c static inline block_blob_t *blob_as_block(bithenge_blob_t *base)
base               56 uspace/lib/bithenge/src/helenos/block.c 	return (block_blob_t *)base;
base               61 uspace/lib/bithenge/src/helenos/block.c 	return &blob->base;
base               64 uspace/lib/bithenge/src/helenos/block.c static errno_t block_size(bithenge_blob_t *base, aoff64_t *size)
base               66 uspace/lib/bithenge/src/helenos/block.c 	block_blob_t *self = blob_as_block(base);
base               71 uspace/lib/bithenge/src/helenos/block.c static errno_t block_read(bithenge_blob_t *base, aoff64_t offset, char *buffer,
base               74 uspace/lib/bithenge/src/helenos/block.c 	block_blob_t *self = blob_as_block(base);
base               81 uspace/lib/bithenge/src/helenos/block.c static void block_destroy(bithenge_blob_t *base)
base               83 uspace/lib/bithenge/src/helenos/block.c 	block_blob_t *self = blob_as_block(base);
base               49 uspace/lib/bithenge/src/sequence.c 	bithenge_node_t base;
base               66 uspace/lib/bithenge/src/sequence.c 	return &node->base;
base              282 uspace/lib/bithenge/src/sequence.c 	bithenge_transform_t base;
base              289 uspace/lib/bithenge/src/sequence.c 	return &xform->base;
base              298 uspace/lib/bithenge/src/sequence.c 	seq_node_t base;
base              305 uspace/lib/bithenge/src/sequence.c 	return &node->base;
base              308 uspace/lib/bithenge/src/sequence.c static struct_node_t *seq_as_struct(seq_node_t *base)
base              310 uspace/lib/bithenge/src/sequence.c 	return (struct_node_t *)base;
base              323 uspace/lib/bithenge/src/sequence.c static errno_t struct_node_for_each(bithenge_node_t *base,
base              327 uspace/lib/bithenge/src/sequence.c 	struct_node_t *self = node_as_struct(base);
base              372 uspace/lib/bithenge/src/sequence.c static errno_t struct_node_get(bithenge_node_t *base, bithenge_node_t *key,
base              375 uspace/lib/bithenge/src/sequence.c 	struct_node_t *self = node_as_struct(base);
base              418 uspace/lib/bithenge/src/sequence.c static void struct_node_destroy(bithenge_node_t *base)
base              420 uspace/lib/bithenge/src/sequence.c 	struct_node_t *node = node_as_struct(base);
base              443 uspace/lib/bithenge/src/sequence.c 		bithenge_node_inc_ref(base);
base              467 uspace/lib/bithenge/src/sequence.c static errno_t struct_node_get_transform(seq_node_t *base,
base              470 uspace/lib/bithenge/src/sequence.c 	struct_node_t *self = seq_as_struct(base);
base              527 uspace/lib/bithenge/src/sequence.c static errno_t struct_transform_apply(bithenge_transform_t *base,
base              530 uspace/lib/bithenge/src/sequence.c 	struct_transform_t *self = transform_as_struct(base);
base              537 uspace/lib/bithenge/src/sequence.c static errno_t struct_transform_prefix_length(bithenge_transform_t *base,
base              540 uspace/lib/bithenge/src/sequence.c 	struct_transform_t *self = transform_as_struct(base);
base              553 uspace/lib/bithenge/src/sequence.c static errno_t struct_transform_prefix_apply(bithenge_transform_t *base,
base              557 uspace/lib/bithenge/src/sequence.c 	struct_transform_t *self = transform_as_struct(base);
base              584 uspace/lib/bithenge/src/sequence.c static void struct_transform_destroy(bithenge_transform_t *base)
base              586 uspace/lib/bithenge/src/sequence.c 	struct_transform_t *self = transform_as_struct(base);
base              639 uspace/lib/bithenge/src/sequence.c 	bithenge_transform_t base;
base              647 uspace/lib/bithenge/src/sequence.c 	return &self->base;
base              651 uspace/lib/bithenge/src/sequence.c     bithenge_transform_t *base)
base              653 uspace/lib/bithenge/src/sequence.c 	return (repeat_transform_t *)base;
base              657 uspace/lib/bithenge/src/sequence.c 	seq_node_t base;
base              665 uspace/lib/bithenge/src/sequence.c 	return &self->base;
base              668 uspace/lib/bithenge/src/sequence.c static repeat_node_t *seq_as_repeat(seq_node_t *base)
base              670 uspace/lib/bithenge/src/sequence.c 	return (repeat_node_t *)base;
base              678 uspace/lib/bithenge/src/sequence.c static repeat_node_t *node_as_repeat(bithenge_node_t *base)
base              680 uspace/lib/bithenge/src/sequence.c 	return seq_as_repeat(node_as_seq(base));
base              683 uspace/lib/bithenge/src/sequence.c static errno_t repeat_node_for_each(bithenge_node_t *base,
base              687 uspace/lib/bithenge/src/sequence.c 	repeat_node_t *self = node_as_repeat(base);
base              726 uspace/lib/bithenge/src/sequence.c static errno_t repeat_node_get(bithenge_node_t *base, bithenge_node_t *key,
base              729 uspace/lib/bithenge/src/sequence.c 	repeat_node_t *self = node_as_repeat(base);
base              743 uspace/lib/bithenge/src/sequence.c static void repeat_node_destroy(bithenge_node_t *base)
base              745 uspace/lib/bithenge/src/sequence.c 	repeat_node_t *self = node_as_repeat(base);
base              757 uspace/lib/bithenge/src/sequence.c static errno_t repeat_node_get_transform(seq_node_t *base,
base              760 uspace/lib/bithenge/src/sequence.c 	repeat_node_t *self = seq_as_repeat(base);
base              817 uspace/lib/bithenge/src/sequence.c static errno_t repeat_transform_apply(bithenge_transform_t *base,
base              820 uspace/lib/bithenge/src/sequence.c 	repeat_transform_t *self = transform_as_repeat(base);
base              827 uspace/lib/bithenge/src/sequence.c static errno_t repeat_transform_prefix_apply(bithenge_transform_t *base,
base              831 uspace/lib/bithenge/src/sequence.c 	repeat_transform_t *self = transform_as_repeat(base);
base              864 uspace/lib/bithenge/src/sequence.c static void repeat_transform_destroy(bithenge_transform_t *base)
base              866 uspace/lib/bithenge/src/sequence.c 	repeat_transform_t *self = transform_as_repeat(base);
base              918 uspace/lib/bithenge/src/sequence.c 	bithenge_transform_t base;
base              926 uspace/lib/bithenge/src/sequence.c 	return &self->base;
base              930 uspace/lib/bithenge/src/sequence.c     bithenge_transform_t *base)
base              932 uspace/lib/bithenge/src/sequence.c 	return (do_while_transform_t *)base;
base              936 uspace/lib/bithenge/src/sequence.c 	seq_node_t base;
base              944 uspace/lib/bithenge/src/sequence.c 	return &self->base;
base              947 uspace/lib/bithenge/src/sequence.c static do_while_node_t *seq_as_do_while(seq_node_t *base)
base              949 uspace/lib/bithenge/src/sequence.c 	return (do_while_node_t *)base;
base              957 uspace/lib/bithenge/src/sequence.c static do_while_node_t *node_as_do_while(bithenge_node_t *base)
base              959 uspace/lib/bithenge/src/sequence.c 	return seq_as_do_while(node_as_seq(base));
base              962 uspace/lib/bithenge/src/sequence.c static errno_t do_while_node_for_each(bithenge_node_t *base,
base              966 uspace/lib/bithenge/src/sequence.c 	do_while_node_t *self = node_as_do_while(base);
base             1019 uspace/lib/bithenge/src/sequence.c static void do_while_node_destroy(bithenge_node_t *base)
base             1021 uspace/lib/bithenge/src/sequence.c 	do_while_node_t *self = node_as_do_while(base);
base             1033 uspace/lib/bithenge/src/sequence.c static errno_t do_while_node_get_transform(seq_node_t *base,
base             1036 uspace/lib/bithenge/src/sequence.c 	do_while_node_t *self = seq_as_do_while(base);
base             1084 uspace/lib/bithenge/src/sequence.c static errno_t do_while_transform_prefix_apply(bithenge_transform_t *base,
base             1088 uspace/lib/bithenge/src/sequence.c 	do_while_transform_t *self = transform_as_do_while(base);
base             1111 uspace/lib/bithenge/src/sequence.c static void do_while_transform_destroy(bithenge_transform_t *base)
base             1113 uspace/lib/bithenge/src/sequence.c 	do_while_transform_t *self = transform_as_do_while(base);
base              440 uspace/lib/bithenge/src/transform.c 	bithenge_transform_t base;
base              445 uspace/lib/bithenge/src/transform.c     bithenge_transform_t *base)
base              447 uspace/lib/bithenge/src/transform.c 	return (barrier_transform_t *)base;
base              453 uspace/lib/bithenge/src/transform.c 	return &self->base;
base              456 uspace/lib/bithenge/src/transform.c static errno_t barrier_transform_apply(bithenge_transform_t *base,
base              459 uspace/lib/bithenge/src/transform.c 	barrier_transform_t *self = transform_as_barrier(base);
base              471 uspace/lib/bithenge/src/transform.c static errno_t barrier_transform_prefix_length(bithenge_transform_t *base,
base              474 uspace/lib/bithenge/src/transform.c 	barrier_transform_t *self = transform_as_barrier(base);
base              487 uspace/lib/bithenge/src/transform.c static errno_t barrier_transform_prefix_apply(bithenge_transform_t *base,
base              491 uspace/lib/bithenge/src/transform.c 	barrier_transform_t *self = transform_as_barrier(base);
base              504 uspace/lib/bithenge/src/transform.c static void barrier_transform_destroy(bithenge_transform_t *base)
base              506 uspace/lib/bithenge/src/transform.c 	barrier_transform_t *self = transform_as_barrier(base);
base              524 uspace/lib/bithenge/src/transform.c errno_t bithenge_barrier_transform_set_subtransform(bithenge_transform_t *base,
base              535 uspace/lib/bithenge/src/transform.c 	barrier_transform_t *self = transform_as_barrier(base);
base              649 uspace/lib/bithenge/src/transform.c 	bithenge_blob_t base;
base              654 uspace/lib/bithenge/src/transform.c static bits_xe_blob_t *blob_as_bits_xe(bithenge_blob_t *base)
base              656 uspace/lib/bithenge/src/transform.c 	return (bits_xe_blob_t *)base;
base              661 uspace/lib/bithenge/src/transform.c 	return &self->base;
base              664 uspace/lib/bithenge/src/transform.c static errno_t bits_xe_size(bithenge_blob_t *base, aoff64_t *out)
base              666 uspace/lib/bithenge/src/transform.c 	bits_xe_blob_t *self = blob_as_bits_xe(base);
base              680 uspace/lib/bithenge/src/transform.c static errno_t bits_xe_read_bits(bithenge_blob_t *base, aoff64_t offset,
base              683 uspace/lib/bithenge/src/transform.c 	bits_xe_blob_t *self = blob_as_bits_xe(base);
base              724 uspace/lib/bithenge/src/transform.c static void bits_xe_destroy(bithenge_blob_t *base)
base              726 uspace/lib/bithenge/src/transform.c 	bits_xe_blob_t *self = blob_as_bits_xe(base);
base               43 uspace/lib/bithenge/src/tree.c static void blob_destroy(bithenge_node_t *base)
base               45 uspace/lib/bithenge/src/tree.c 	bithenge_blob_t *self = bithenge_node_as_blob(base);
base               46 uspace/lib/bithenge/src/tree.c 	assert(self->base.blob_ops);
base               47 uspace/lib/bithenge/src/tree.c 	self->base.blob_ops->destroy(self);
base              174 uspace/lib/bithenge/src/tree.c static errno_t empty_internal_node_for_each(bithenge_node_t *base,
base              212 uspace/lib/bithenge/src/tree.c 	bithenge_node_t base;
base              225 uspace/lib/bithenge/src/tree.c 	return &node->base;
base              228 uspace/lib/bithenge/src/tree.c static errno_t simple_internal_node_for_each(bithenge_node_t *base,
base              232 uspace/lib/bithenge/src/tree.c 	simple_internal_node_t *self = node_as_simple(base);
base              243 uspace/lib/bithenge/src/tree.c static void simple_internal_node_destroy(bithenge_node_t *base)
base              245 uspace/lib/bithenge/src/tree.c 	simple_internal_node_t *self = node_as_simple(base);
base              240 uspace/lib/c/common/adt/bitmap.c static int constraint_satisfy(size_t index, size_t base, size_t constraint)
base              242 uspace/lib/c/common/adt/bitmap.c 	return (((base + index) & constraint) == 0);
base              271 uspace/lib/c/common/adt/bitmap.c bool bitmap_allocate_range(bitmap_t *bitmap, size_t count, size_t base,
base              284 uspace/lib/c/common/adt/bitmap.c 	if ((prefered > base) && (prefered < base + bitmap->elements)) {
base              285 uspace/lib/c/common/adt/bitmap.c 		size_t prefered_fit = (prefered - base) / BITMAP_ELEMENT;
base              306 uspace/lib/c/common/adt/bitmap.c 			if (!constraint_satisfy(i, base, constraint))
base              399 uspace/lib/c/common/printf/printf_core.c static int print_number(uint64_t num, int width, int precision, int base,
base              427 uspace/lib/c/common/printf/printf_core.c 			*ptr-- = digits[num % base];
base              429 uspace/lib/c/common/printf/printf_core.c 		} while (num /= base);
base              440 uspace/lib/c/common/printf/printf_core.c 		switch (base) {
base              504 uspace/lib/c/common/printf/printf_core.c 		switch (base) {
base             1497 uspace/lib/c/common/printf/printf_core.c 			unsigned int base = 10;
base             1567 uspace/lib/c/common/printf/printf_core.c 				base = 16;
base             1571 uspace/lib/c/common/printf/printf_core.c 				base = 2;
base             1574 uspace/lib/c/common/printf/printf_core.c 				base = 8;
base             1586 uspace/lib/c/common/printf/printf_core.c 				base = 16;
base             1650 uspace/lib/c/common/printf/printf_core.c 			    base, flags, ps)) < 0) {
base               49 uspace/lib/c/common/stdc/bsearch.c void *bsearch(const void *key, const void *base, size_t nmemb, size_t size,
base               58 uspace/lib/c/common/stdc/bsearch.c 		pivot = base + size * pividx;
base               70 uspace/lib/c/common/stdc/bsearch.c 			base += size * (pividx + 1);
base               44 uspace/lib/c/common/stdc/qsort.c 	void *base;
base               79 uspace/lib/c/common/stdc/qsort.c 	a = qs->base + i * qs->size;
base               80 uspace/lib/c/common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              100 uspace/lib/c/common/stdc/qsort.c 	a = qs->base + i * qs->size;
base              101 uspace/lib/c/common/stdc/qsort.c 	b = qs->base + j * qs->size;
base              171 uspace/lib/c/common/stdc/qsort.c void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              179 uspace/lib/c/common/stdc/qsort.c 	qs.base = base;
base              196 uspace/lib/c/common/stdc/qsort.c void qsort_r(void *base, size_t nmemb, size_t size, int (*compar)(const void *,
base              204 uspace/lib/c/common/stdc/qsort.c 	qs.base = base;
base               71 uspace/lib/c/common/strtol.c __attribute__((noinline)) static uintmax_t _max_value(int base)
base               73 uspace/lib/c/common/strtol.c 	return UINTMAX_MAX / base;
base              122 uspace/lib/c/common/strtol.c     const char *restrict nptr, char **restrict endptr, int base,
base              150 uspace/lib/c/common/strtol.c 	if (base == 0)
base              151 uspace/lib/c/common/strtol.c 		base = _prefixbase(&nptr, nonstd);
base              153 uspace/lib/c/common/strtol.c 	if (base == 16 && !nonstd) {
base              163 uspace/lib/c/common/strtol.c 		    _digit_value(nptr[2]) < base)
base              167 uspace/lib/c/common/strtol.c 	if (base < 2 || base > 36) {
base              174 uspace/lib/c/common/strtol.c 	if (_digit_value(*nptr) >= base) {
base              184 uspace/lib/c/common/strtol.c 	uintmax_t max = _max_value(base);
base              187 uspace/lib/c/common/strtol.c 	while (digit = _digit_value(*nptr), digit < base) {
base              189 uspace/lib/c/common/strtol.c 		    __builtin_add_overflow(result * base, digit, &result)) {
base              208 uspace/lib/c/common/strtol.c 		while (_digit_value(*nptr) < base) {
base              218 uspace/lib/c/common/strtol.c static inline intmax_t _strtosigned(const char *nptr, char **endptr, int base,
base              222 uspace/lib/c/common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              236 uspace/lib/c/common/strtol.c static inline uintmax_t _strtounsigned(const char *nptr, char **endptr, int base,
base              240 uspace/lib/c/common/strtol.c 	uintmax_t number = _strtoumax(nptr, endptr, base, &sgn, err, nonstd);
base              269 uspace/lib/c/common/strtol.c long strtol(const char *nptr, char **endptr, int base)
base              275 uspace/lib/c/common/strtol.c 	return _strtosigned(nptr, endptr, base, LONG_MIN, LONG_MAX, &errno, false);
base              291 uspace/lib/c/common/strtol.c unsigned long strtoul(const char *nptr, char **endptr, int base)
base              297 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
base              300 uspace/lib/c/common/strtol.c long long strtoll(const char *nptr, char **endptr, int base)
base              306 uspace/lib/c/common/strtol.c 	return _strtosigned(nptr, endptr, base, LLONG_MIN, LLONG_MAX, &errno, false);
base              309 uspace/lib/c/common/strtol.c unsigned long long strtoull(const char *nptr, char **endptr, int base)
base              315 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
base              318 uspace/lib/c/common/strtol.c intmax_t strtoimax(const char *nptr, char **endptr, int base)
base              324 uspace/lib/c/common/strtol.c 	return _strtosigned(nptr, endptr, base, INTMAX_MIN, INTMAX_MAX, &errno, false);
base              327 uspace/lib/c/common/strtol.c uintmax_t strtoumax(const char *nptr, char **endptr, int base)
base              333 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
base              363 uspace/lib/c/common/strtol.c errno_t str_uint8_t(const char *nptr, const char **endptr, unsigned int base,
base              371 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
base              398 uspace/lib/c/common/strtol.c errno_t str_uint16_t(const char *nptr, const char **endptr, unsigned int base,
base              406 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
base              433 uspace/lib/c/common/strtol.c errno_t str_uint32_t(const char *nptr, const char **endptr, unsigned int base,
base              441 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
base              468 uspace/lib/c/common/strtol.c errno_t str_uint64_t(const char *nptr, const char **endptr, unsigned int base,
base              476 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
base              503 uspace/lib/c/common/strtol.c errno_t str_int64_t(const char *nptr, const char **endptr, unsigned int base,
base              511 uspace/lib/c/common/strtol.c 	intmax_t r = _strtosigned(nptr, &lendptr, base, INT64_MIN, INT64_MAX, &rc, true);
base              538 uspace/lib/c/common/strtol.c errno_t str_size_t(const char *nptr, const char **endptr, unsigned int base,
base              546 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
base               58 uspace/lib/c/generic/as.c void *as_area_create(void *base, size_t size, unsigned int flags,
base               61 uspace/lib/c/generic/as.c 	return (void *) __SYSCALL5(SYS_AS_AREA_CREATE, (sysarg_t) base,
base             1426 uspace/lib/c/generic/async/client.c void *async_as_area_create(void *base, size_t size, unsigned int flags,
base             1435 uspace/lib/c/generic/async/client.c 	return as_area_create(base, size, flags, &pager_info);
base              243 uspace/lib/c/generic/ddi.c 			addr += win->io.base;
base              252 uspace/lib/c/generic/ddi.c 			addr += win->mem.base;
base               82 uspace/lib/c/generic/device/hw_res_parsed.c static uint64_t absolutize(uint64_t addr, bool relative, uint64_t base)
base               87 uspace/lib/c/generic/device/hw_res_parsed.c 		return addr + base;
base               90 uspace/lib/c/generic/device/hw_res_parsed.c static uint64_t relativize(uint64_t addr, bool relative, uint64_t base)
base               95 uspace/lib/c/generic/device/hw_res_parsed.c 		return addr - base;
base              109 uspace/lib/c/generic/device/hw_res_parsed.c 	    res->res.io_range.relative, win->io.base);
base              111 uspace/lib/c/generic/device/hw_res_parsed.c 	    res->res.io_range.relative, win->io.base);
base              152 uspace/lib/c/generic/device/hw_res_parsed.c 	    res->res.mem_range.relative, win->mem.base);
base              154 uspace/lib/c/generic/device/hw_res_parsed.c 	    res->res.mem_range.relative, win->mem.base);
base               77 uspace/lib/c/generic/elf/elf.c const elf_segment_header_t *elf_get_phdr(const void *base, unsigned p_type)
base               79 uspace/lib/c/generic/elf/elf.c 	const elf_header_t *hdr = base;
base               83 uspace/lib/c/generic/elf/elf.c 	    (const elf_segment_header_t *) ((uintptr_t) base + hdr->e_phoff);
base               93 uspace/lib/c/generic/elf/elf.c uintptr_t elf_get_bias(const void *base)
base               95 uspace/lib/c/generic/elf/elf.c 	const elf_header_t *hdr = base;
base              106 uspace/lib/c/generic/elf/elf.c 		return (uintptr_t) base;
base              267 uspace/lib/c/generic/elf/elf_mod.c 	void *base = (void *) module_base + elf->bias;
base              268 uspace/lib/c/generic/elf/elf_mod.c 	elf->info->base = base;
base              386 uspace/lib/c/generic/elf/elf_mod.c 	uintptr_t base;
base              428 uspace/lib/c/generic/elf/elf_mod.c 	base = ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE);
base              429 uspace/lib/c/generic/elf/elf_mod.c 	mem_sz = entry->p_memsz + (entry->p_vaddr - base);
base              439 uspace/lib/c/generic/elf/elf_mod.c 	a = as_area_create((uint8_t *) base + bias, mem_sz,
base              444 uspace/lib/c/generic/elf/elf_mod.c 		    (void *) (base + bias), mem_sz);
base              449 uspace/lib/c/generic/elf/elf_mod.c 	    (void *) (base + bias), mem_sz, flags, (void *) a);
base              469 uspace/lib/c/generic/elf/elf_mod.c 	    (uint8_t *) base + bias, flags);
base              470 uspace/lib/c/generic/elf/elf_mod.c 	rc = as_area_change_flags((uint8_t *) base + bias, flags);
base               45 uspace/lib/c/generic/pio_trace.c 	volatile void *base;
base               56 uspace/lib/c/generic/pio_trace.c static inline region_t *region_create(volatile void *base, size_t size,
base               62 uspace/lib/c/generic/pio_trace.c 		new_reg->base = base;
base               94 uspace/lib/c/generic/pio_trace.c 		if ((r >= reg->base) && (r < reg->base + reg->size)) {
base               96 uspace/lib/c/generic/pio_trace.c 				reg->log(r, val, reg->base,
base              104 uspace/lib/c/generic/pio_trace.c errno_t pio_trace_enable(void *base, size_t size, trace_fnc log, void *data)
base              109 uspace/lib/c/generic/pio_trace.c 	region_t *region = region_create(base, size, log, data);
base              127 uspace/lib/c/generic/pio_trace.c 		if (r >= reg->base && (r < reg->base + reg->size)) {
base              218 uspace/lib/c/generic/rtld/module.c 	m->bias = elf_get_bias(info.base);
base              496 uspace/lib/c/generic/stdio/scanf.c static errno_t __fstrtoimax(FILE *f, int *numchar, int base, size_t width,
base              529 uspace/lib/c/generic/stdio/scanf.c 	if (base == 0) {
base              543 uspace/lib/c/generic/stdio/scanf.c 					base = 16;
base              549 uspace/lib/c/generic/stdio/scanf.c 				base = 8;
base              556 uspace/lib/c/generic/stdio/scanf.c 			base = 10;
base              564 uspace/lib/c/generic/stdio/scanf.c 		if (digit >= base)
base              567 uspace/lib/c/generic/stdio/scanf.c 		v = v * base + digit;
base              588 uspace/lib/c/generic/stdio/scanf.c static errno_t __fstrtoumax(FILE *f, int *numchar, int base, size_t width,
base              609 uspace/lib/c/generic/stdio/scanf.c 	if (base == 0) {
base              623 uspace/lib/c/generic/stdio/scanf.c 					base = 16;
base              629 uspace/lib/c/generic/stdio/scanf.c 				base = 8;
base              636 uspace/lib/c/generic/stdio/scanf.c 			base = 10;
base              644 uspace/lib/c/generic/stdio/scanf.c 		if (digit >= base)
base              647 uspace/lib/c/generic/stdio/scanf.c 		v = v * base + digit;
base              675 uspace/lib/c/generic/stdio/scanf.c 	int base;
base              711 uspace/lib/c/generic/stdio/scanf.c 	base = 10;
base              730 uspace/lib/c/generic/stdio/scanf.c 				base = 16;
base              749 uspace/lib/c/generic/stdio/scanf.c 		if (digit >= base)
base              752 uspace/lib/c/generic/stdio/scanf.c 		v = v * base + digit;
base              770 uspace/lib/c/generic/stdio/scanf.c 			if (digit >= base)
base              773 uspace/lib/c/generic/stdio/scanf.c 			v = v * base + digit;
base              783 uspace/lib/c/generic/stdio/scanf.c 	if ((width > 1 && base == 10 && (c == 'e' || c == 'E')) ||
base              784 uspace/lib/c/generic/stdio/scanf.c 	    (width > 1 && base == 16 && (c == 'p' || c == 'P'))) {
base              114 uspace/lib/c/generic/ubsan.c     unsigned long base, unsigned long result);
base              255 uspace/lib/c/generic/ubsan.c     unsigned long base, unsigned long result)
base               73 uspace/lib/c/include/ddi.h     volatile void *base, size_t size, void *data, bool write);
base               48 uspace/lib/c/include/device/pio_window.h 		uintptr_t base;
base               72 uspace/lib/c/include/elf/elf_mod.h 	void *base;
base              166 uspace/lib/c/test/strtol.c 	int base;
base              178 uspace/lib/c/test/strtol.c 	rc = str_uint32_t(input = "0x10", &endp, base = 0, strict = false, &result);
base              183 uspace/lib/c/test/strtol.c 	rc = str_uint32_t(input = "0x10", &endp, base = 16, strict = false, &result);
base              188 uspace/lib/c/test/strtol.c 	rc = str_uint32_t(input = "  \t0x10", &endp, base = 0, strict = false, &result);
base              193 uspace/lib/c/test/strtol.c 	rc = str_uint32_t(input = "  \t0x10", &endp, base = 16, strict = false, &result);
base              201 uspace/lib/c/test/strtol.c 	int base;
base              212 uspace/lib/c/test/strtol.c 	rc = str_uint64_t(input = "0xffffffffffffffffffffffffffffffff", NULL, base = 0, strict = false, &result);
base              224 uspace/lib/c/test/strtol.c 	rc = str_uint64_t(input = "1" "0000000000" "0000000000" "0000000000" "0000000000", NULL, base = 3, strict = false, &result);
base              238 uspace/lib/c/test/strtol.c 	rc = str_uint64_t(input = "10" "0000000000" "0000000000" "0000000000" "0000000000", NULL, base = 3, strict = false, &result);
base              257 uspace/lib/c/test/strtol.c 	int base;
base              268 uspace/lib/c/test/strtol.c 	output = strtoul(input = "-10", &endp, base = 0);
base              281 uspace/lib/c/test/strtol.c 	int base;
base              286 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 0);
base              293 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = -10);
base              300 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 1);
base              305 uspace/lib/c/test/strtol.c 	for (base = 2; base <= 36; base++) {
base              308 uspace/lib/c/test/strtol.c 		output = strtol(input = "0", &endp, base);
base              315 uspace/lib/c/test/strtol.c 		output = strtol(input = "1", &endp, base);
base              322 uspace/lib/c/test/strtol.c 		output = strtol(input = "10", &endp, base);
base              325 uspace/lib/c/test/strtol.c 		PCUT_ASSERT_INT_EQUALS(base, output);
base              329 uspace/lib/c/test/strtol.c 		output = strtol(input = "100", &endp, base);
base              332 uspace/lib/c/test/strtol.c 		PCUT_ASSERT_INT_EQUALS(base * base, output);
base              336 uspace/lib/c/test/strtol.c 		output = strtol(input = "1000", &endp, base);
base              339 uspace/lib/c/test/strtol.c 		PCUT_ASSERT_INT_EQUALS(base * base * base, output);
base              344 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 8);
base              351 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 10);
base              358 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 16);
base              365 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 36);
base              372 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 37);
base              379 uspace/lib/c/test/strtol.c 	output = strtol(input = "0", &endp, base = 37);
base              387 uspace/lib/c/test/strtol.c 	output = strtol(input = "", &endp, base = 0);
base              394 uspace/lib/c/test/strtol.c 	output = strtol(input = "    ", &endp, base = 0);
base              401 uspace/lib/c/test/strtol.c 	output = strtol(input = "    ", &endp, base = 10);
base              408 uspace/lib/c/test/strtol.c 	output = strtol(input = "    x", &endp, base = 0);
base              415 uspace/lib/c/test/strtol.c 	output = strtol(input = "    x0", &endp, base = 0);
base              422 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0x", &endp, base = 0);
base              429 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0xg", &endp, base = 0);
base              436 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0x1", &endp, base = 0);
base              443 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0x", &endp, base = 16);
base              450 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0xg", &endp, base = 16);
base              457 uspace/lib/c/test/strtol.c 	output = strtol(input = "    g", &endp, base = 16);
base              464 uspace/lib/c/test/strtol.c 	output = strtol(input = "    0x1", &endp, base = 16);
base              471 uspace/lib/c/test/strtol.c 	output = strtol(input = "    +", &endp, base = 0);
base              478 uspace/lib/c/test/strtol.c 	output = strtol(input = "    -", &endp, base = 0);
base              485 uspace/lib/c/test/strtol.c 	output = strtol(input = "    +", &endp, base = 10);
base              492 uspace/lib/c/test/strtol.c 	output = strtol(input = "    -", &endp, base = 10);
base              499 uspace/lib/c/test/strtol.c 	output = strtol(input = "+", &endp, base = 0);
base              506 uspace/lib/c/test/strtol.c 	output = strtol(input = "-", &endp, base = 0);
base              513 uspace/lib/c/test/strtol.c 	output = strtol(input = "+", &endp, base = 10);
base              520 uspace/lib/c/test/strtol.c 	output = strtol(input = "-", &endp, base = 10);
base               67 uspace/lib/cpp/include/__bits/builtins.hpp     constexpr T pow(T base, U exp)
base               70 uspace/lib/cpp/include/__bits/builtins.hpp             __builtin_pow(static_cast<double>(base), static_cast<double>(exp))
base              898 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> pow(const complex<T>& base, const T& exp)
base              902 uspace/lib/cpp/include/__bits/complex.hpp         return base;
base              906 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> pow(const complex<T>& base, const complex<T>& exp)
base              910 uspace/lib/cpp/include/__bits/complex.hpp         return base;
base              914 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> pow(const T& base, const complex<T>& exp)
base              918 uspace/lib/cpp/include/__bits/complex.hpp         return complex<T>{base};
base               43 uspace/lib/cpp/include/__bits/io/iomanip.hpp     aux::manip_wrapper<aux::setbase_t> setbase(int base);
base              103 uspace/lib/cpp/include/__bits/io/iomanip_objs.hpp         int base;
base              199 uspace/lib/cpp/include/__bits/iterator.hpp                 current_ = other.base();
base              288 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() == rhs.base();
base              296 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() > rhs.base();
base              303 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() != rhs.base();
base              310 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() < rhs.base();
base              317 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() <= rhs.base();
base              324 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() >= rhs.base();
base              330 uspace/lib/cpp/include/__bits/iterator.hpp         -> decltype(rhs.base() - lhs.base())
base              332 uspace/lib/cpp/include/__bits/iterator.hpp         return rhs.base() - lhs.base();
base              341 uspace/lib/cpp/include/__bits/iterator.hpp         return reverse_iterator<Iterator>{it.base() - n};
base              654 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() == rhs.base();
base              661 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() != rhs.base();
base              668 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() < rhs.base();
base              695 uspace/lib/cpp/include/__bits/iterator.hpp         -> decltype(rhs.base() - lhs.base())
base              697 uspace/lib/cpp/include/__bits/iterator.hpp         return lhs.base() - rhs.base();
base               56 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               59 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               62 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               65 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               68 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               71 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               74 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               77 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               80 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               83 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               86 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               89 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               92 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base               95 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base               98 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base              101 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base              104 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base              107 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base              110 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base              113 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base              116 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get(iter_type in, iter_type end, ios_base& base,
base              119 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return do_get(in, end, base, err, v);
base              128 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              137 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 if ((base.flags() & ios_base::boolalpha) == 0)
base              140 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     in = get_integral_<int64_t>(in, end, base, err, tmp);
base              162 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     auto loc = base.getloc();
base              222 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              225 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<int64_t>(in, end, base, err, v);
base              228 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              231 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<int64_t>(in, end, base, err, v);
base              234 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              237 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<uint64_t>(in, end, base, err, v);
base              240 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              243 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<uint64_t>(in, end, base, err, v);
base              246 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              249 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<uint64_t>(in, end, base, err, v);
base              252 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              255 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 return get_integral_<uint64_t>(in, end, base, err, v);
base              258 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              265 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              272 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              279 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type do_get(iter_type in, iter_type end, ios_base& base,
base              288 uspace/lib/cpp/include/__bits/locale/num_get.hpp             iter_type get_integral_(iter_type in, iter_type end, ios_base& base,
base              294 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 auto basefield = (base.flags() & ios_base::basefield);
base              300 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 auto size = fill_buffer_integral_(in, end, base);
base              308 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         res = ::strtoll(base.buffer_, &endptr, num_base);
base              310 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         res = ::strtoull(base.buffer_, &endptr, num_base);
base              312 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     if (errno != EOK || endptr == base.buffer_)
base              339 uspace/lib/cpp/include/__bits/locale/num_get.hpp             size_t fill_buffer_integral_(iter_type& in, iter_type end, ios_base& base) const
base              344 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 auto loc = base.getloc();
base              346 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 auto hex = ((base.flags() & ios_base::hex) != 0);
base              350 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     base.buffer_[i++] = *in++;
base              360 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         base.buffer_[i++] = c;
base              365 uspace/lib/cpp/include/__bits/locale/num_get.hpp                 base.buffer_[i] = char_type{};
base               53 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, bool v) const
base               55 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               58 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, long v) const
base               60 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               63 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, long long v) const
base               65 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               68 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, unsigned long v) const
base               70 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               73 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, unsigned long long v) const
base               75 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               78 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, double v) const
base               80 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               83 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, long double v) const
base               85 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               88 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put(iter_type it, ios_base& base, char_type fill, const void* v) const
base               90 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return do_put(it, base, fill, v);
base               97 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, bool v) const
base               99 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto loc = base.getloc();
base              101 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 if ((base.flags() & ios_base::boolalpha) == 0)
base              102 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     return do_put(it, base, fill, (long)v);
base              114 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, long v) const
base              116 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto basefield = (base.flags() & ios_base::basefield);
base              117 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              121 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lo", v);
base              123 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lx", v);
base              125 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lX", v);
base              127 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%ld", v);
base              129 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              132 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, long long v) const
base              134 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto basefield = (base.flags() & ios_base::basefield);
base              135 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              139 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llo", v);
base              141 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llx", v);
base              143 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llX", v);
base              145 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lld", v);
base              147 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              150 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, unsigned long v) const
base              152 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto basefield = (base.flags() & ios_base::basefield);
base              153 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              157 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lo", v);
base              159 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lx", v);
base              161 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lX", v);
base              163 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%lu", v);
base              165 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              168 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, unsigned long long v) const
base              170 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto basefield = (base.flags() & ios_base::basefield);
base              171 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              176 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llo", v);
base              178 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llx", v);
base              180 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llX", v);
base              182 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%llu", v);
base              184 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              187 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, double v) const
base              189 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto floatfield = (base.flags() & ios_base::floatfield);
base              190 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              196 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%f", v);
base              198 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%e", v);
base              200 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%E", v);
base              202 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%a", v);
base              204 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%A", v);
base              206 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%g", v);
base              208 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%G", v);
base              210 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              213 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, long double v) const
base              218 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto floatfield = (base.flags() & ios_base::floatfield);
base              219 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto uppercase = (base.flags() & ios_base::uppercase);
base              225 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%Lf", v);
base              227 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%Le", v);
base              229 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%LE", v);
base              231 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%La", v);
base              233 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%LA", v);
base              235 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%Lg", v);
base              237 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     ret = snprintf(base.buffer_, ios_base::buffer_size_, "%LG", v);
base              239 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              242 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type do_put(iter_type it, ios_base& base, char_type fill, const void* v) const
base              244 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 int ret = snprintf(base.buffer_, ios_base::buffer_size_, "%p", v);
base              246 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 return put_adjusted_buffer_(it, base, fill, ret);
base              250 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put_adjusted_buffer_(iter_type it, ios_base& base, char_type fill, size_t size) const
base              252 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 auto adjustfield = (base.flags() & ios_base::adjustfield);
base              255 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 size_t width = static_cast<size_t>(base.width());
base              257 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 if (base.width() > 0 && size < width)
base              264 uspace/lib/cpp/include/__bits/locale/num_put.hpp                         it = put_buffer_(it, base, fill, 0, size);
base              272 uspace/lib/cpp/include/__bits/locale/num_put.hpp                         it = put_buffer_(it, base, fill, 0, size);
base              282 uspace/lib/cpp/include/__bits/locale/num_put.hpp                         it = put_buffer_(it, base, fill, 0, size);
base              286 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     it = put_buffer_(it, base, fill, 0, size);
base              287 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 base.width(0);
base              292 uspace/lib/cpp/include/__bits/locale/num_put.hpp             iter_type put_buffer_(iter_type it, ios_base& base, char_type fill, size_t start, size_t size) const
base              294 uspace/lib/cpp/include/__bits/locale/num_put.hpp                 const auto& loc = base.getloc();
base              300 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     if (base.buffer_[i] == '.')
base              303 uspace/lib/cpp/include/__bits/locale/num_put.hpp                         *it++ = ct.widen(base.buffer_[i]);
base             1882 uspace/lib/cpp/include/__bits/string/string.hpp     int stoi(const string& str, size_t* idx = nullptr, int base = 10);
base             1883 uspace/lib/cpp/include/__bits/string/string.hpp     long stol(const string& str, size_t* idx = nullptr, int base = 10);
base             1884 uspace/lib/cpp/include/__bits/string/string.hpp     unsigned long stoul(const string& str, size_t* idx = nullptr, int base = 10);
base             1885 uspace/lib/cpp/include/__bits/string/string.hpp     long long stoll(const string& str, size_t* idx = nullptr, int base = 10);
base             1886 uspace/lib/cpp/include/__bits/string/string.hpp     unsigned long long stoull(const string& str, size_t* idx = nullptr, int base = 10);
base             1902 uspace/lib/cpp/include/__bits/string/string.hpp     int stoi(const wstring& str, size_t* idx = nullptr, int base = 10);
base             1903 uspace/lib/cpp/include/__bits/string/string.hpp     long stol(const wstring& str, size_t* idx = nullptr, int base = 10);
base             1904 uspace/lib/cpp/include/__bits/string/string.hpp     unsigned long stoul(const wstring& str, size_t* idx = nullptr, int base = 10);
base             1905 uspace/lib/cpp/include/__bits/string/string.hpp     long long stoll(const wstring& str, size_t* idx = nullptr, int base = 10);
base             1906 uspace/lib/cpp/include/__bits/string/string.hpp     unsigned long long stoull(const wstring& str, size_t* idx = nullptr, int base = 10);
base               59 uspace/lib/cpp/src/iomanip.cpp             : base{b}
base               65 uspace/lib/cpp/src/iomanip.cpp                 base == 8  ? ios_base::oct :
base               66 uspace/lib/cpp/src/iomanip.cpp                 base == 10 ? ios_base::dec :
base               67 uspace/lib/cpp/src/iomanip.cpp                 base == 16 ? ios_base::hex :
base              106 uspace/lib/cpp/src/iomanip.cpp     aux::manip_wrapper<aux::setbase_t> setbase(int base)
base              108 uspace/lib/cpp/src/iomanip.cpp         return aux::manip_wrapper<aux::setbase_t>{base};
base               34 uspace/lib/cpp/src/string.cpp     int stoi(const string& str, size_t* idx, int base)
base               41 uspace/lib/cpp/src/string.cpp     long stol(const string& str, size_t* idx, int base)
base               44 uspace/lib/cpp/src/string.cpp         long result = ::strtol(str.c_str(), &end, base);
base               57 uspace/lib/cpp/src/string.cpp     unsigned long stoul(const string& str, size_t* idx, int base)
base               60 uspace/lib/cpp/src/string.cpp         unsigned long result = ::strtoul(str.c_str(), &end, base);
base               73 uspace/lib/cpp/src/string.cpp     long long stoll(const string& str, size_t* idx, int base)
base               80 uspace/lib/cpp/src/string.cpp     unsigned long long stoull(const string& str, size_t* idx, int base)
base              207 uspace/lib/cpp/src/string.cpp     int stoi(const wstring& str, size_t* idx, int base)
base              214 uspace/lib/cpp/src/string.cpp     long stol(const wstring& str, size_t* idx, int base)
base              221 uspace/lib/cpp/src/string.cpp     unsigned long stoul(const wstring& str, size_t* idx, int base)
base              228 uspace/lib/cpp/src/string.cpp     long long stoll(const wstring& str, size_t* idx, int base)
base              235 uspace/lib/cpp/src/string.cpp     unsigned long long stoull(const wstring& str, size_t* idx, int base)
base             1010 uspace/lib/ext4/src/filesystem.c 		void *base = bg;
base             1013 uspace/lib/ext4/src/filesystem.c 		uint32_t offset = (uint32_t) (checksum - base);
base               33 uspace/lib/pcut/tests/tested.c long intpow(int base, int exp) {
base               34 uspace/lib/pcut/tests/tested.c 	UNUSED(base); UNUSED(exp);
base               32 uspace/lib/pcut/tests/tested.h long intpow(int base, int exp);
base               73 uspace/lib/posix/include/libc/ddi.h     volatile void *base, size_t size, void *data, bool write);
base               48 uspace/lib/posix/include/libc/device/pio_window.h 		uintptr_t base;
base               72 uspace/lib/posix/include/libc/elf/elf_mod.h 	void *base;
base              101 uspace/lib/posix/include/posix/locale.h     locale_t base);
base              151 uspace/lib/posix/src/locale.c     locale_t base)
base              164 uspace/lib/posix/src/locale.c 	if (base != NULL) {
base              165 uspace/lib/posix/src/locale.c 		freelocale(base);
base              125 uspace/lib/usbdev/src/pipes.c static void setup_dma_buffer(transfer_t *t, void *base, void *ptr, size_t size)
base              127 uspace/lib/usbdev/src/pipes.c 	t->req.buffer.virt = base;
base              129 uspace/lib/usbdev/src/pipes.c 	t->req.offset = ptr - base;
base              310 uspace/lib/usbdev/src/pipes.c errno_t usb_pipe_read_dma(usb_pipe_t *pipe, void *base, void *ptr, size_t size,
base              320 uspace/lib/usbdev/src/pipes.c 	setup_dma_buffer(&transfer, base, ptr, size);
base              340 uspace/lib/usbdev/src/pipes.c errno_t usb_pipe_write_dma(usb_pipe_t *pipe, void *base, void *ptr, size_t size)
base              348 uspace/lib/usbdev/src/pipes.c 	setup_dma_buffer(&transfer, base, ptr, size);
base               51 uspace/lib/usbvirt/src/virthub_base.c 	virthub_base_t *base = dev->device_data;
base               52 uspace/lib/usbvirt/src/virthub_base.c 	assert(base);
base               53 uspace/lib/usbvirt/src/virthub_base.c 	return base->data;
base               64 uspace/srv/audio/hound/audio_device.c 	return dev->buffer.base != NULL;
base               92 uspace/srv/audio/hound/audio_device.c 	dev->buffer.base = NULL;
base              175 uspace/srv/audio/hound/audio_device.c 		pcm_format_silence(dev->buffer.base, dev->buffer.size,
base              354 uspace/srv/audio/hound/audio_device.c 	if (dev->buffer.base) {
base              362 uspace/srv/audio/hound/audio_device.c 	const errno_t ret = audio_pcm_get_buffer(dev->sess, &dev->buffer.base,
base              367 uspace/srv/audio/hound/audio_device.c 		dev->buffer.position = dev->buffer.base;
base              381 uspace/srv/audio/hound/audio_device.c 	assert(dev->buffer.base);
base              385 uspace/srv/audio/hound/audio_device.c 		as_area_destroy(dev->buffer.base);
base              386 uspace/srv/audio/hound/audio_device.c 		dev->buffer.base = NULL;
base              403 uspace/srv/audio/hound/audio_device.c 	assert(dev->buffer.position >= dev->buffer.base);
base              404 uspace/srv/audio/hound/audio_device.c 	assert(dev->buffer.position < (dev->buffer.base + dev->buffer.size));
base              406 uspace/srv/audio/hound/audio_device.c 	if (dev->buffer.position == (dev->buffer.base + dev->buffer.size))
base              407 uspace/srv/audio/hound/audio_device.c 		dev->buffer.position = dev->buffer.base;
base               61 uspace/srv/audio/hound/audio_device.h 		void *base;
base               82 uspace/srv/audio/hound/audio_device.h errno_t audio_device_recorded_data(audio_device_t *dev, void **base, size_t *size);
base               83 uspace/srv/audio/hound/audio_device.h errno_t audio_device_available_buffer(audio_device_t *dev, void **base, size_t *size);
base              305 uspace/srv/loader/main.c 		pcb.tcb = tls_make(prog_info.finfo.base);
base              308 uspace/srv/loader/main.c 	pcb.tcb = tls_make(prog_info.finfo.base);
base              140 uspace/srv/vfs/vfs_lookup.c errno_t vfs_link_internal(vfs_node_t *base, char *path, vfs_triplet_t *child)
base              142 uspace/srv/vfs/vfs_lookup.c 	assert(base != NULL);
base              144 uspace/srv/vfs/vfs_lookup.c 	assert(base->fs_handle);
base              172 uspace/srv/vfs/vfs_lookup.c 		rc = vfs_lookup_internal(base, path, L_DIRECTORY, &res);
base              179 uspace/srv/vfs/vfs_lookup.c 		if (base->mount != NULL) {
base              185 uspace/srv/vfs/vfs_lookup.c 		triplet = (vfs_triplet_t *) base;
base              209 uspace/srv/vfs/vfs_lookup.c static errno_t out_lookup(vfs_triplet_t *base, size_t *pfirst, size_t *plen,
base              212 uspace/srv/vfs/vfs_lookup.c 	assert(base);
base              217 uspace/srv/vfs/vfs_lookup.c 	async_exch_t *exch = vfs_exchange_grab(base->fs_handle);
base              219 uspace/srv/vfs/vfs_lookup.c 	    (sysarg_t) *plen, (sysarg_t) base->service_id,
base              220 uspace/srv/vfs/vfs_lookup.c 	    (sysarg_t) base->index, (sysarg_t) lflag, &answer);
base              232 uspace/srv/vfs/vfs_lookup.c 	result->triplet.service_id = base->service_id;
base              240 uspace/srv/vfs/vfs_lookup.c static errno_t _vfs_lookup_internal(vfs_node_t *base, char *path, int lflag,
base              258 uspace/srv/vfs/vfs_lookup.c 		while (base->mount) {
base              264 uspace/srv/vfs/vfs_lookup.c 			base = base->mount;
base              267 uspace/srv/vfs/vfs_lookup.c 		rc = out_lookup((vfs_triplet_t *) base, &next, &nlen, lflag,
base              273 uspace/srv/vfs/vfs_lookup.c 			base = vfs_node_peek(&res);
base              274 uspace/srv/vfs/vfs_lookup.c 			if (!base) {
base              278 uspace/srv/vfs/vfs_lookup.c 			if (!base->mount) {
base              279 uspace/srv/vfs/vfs_lookup.c 				vfs_node_put(base);
base              283 uspace/srv/vfs/vfs_lookup.c 			vfs_node_put(base);
base              297 uspace/srv/vfs/vfs_lookup.c 			base = vfs_node_peek(&res);
base              298 uspace/srv/vfs/vfs_lookup.c 			if (base && base->mount) {
base              299 uspace/srv/vfs/vfs_lookup.c 				while (base->mount) {
base              300 uspace/srv/vfs/vfs_lookup.c 					vfs_node_addref(base->mount);
base              301 uspace/srv/vfs/vfs_lookup.c 					vfs_node_t *nbase = base->mount;
base              302 uspace/srv/vfs/vfs_lookup.c 					vfs_node_put(base);
base              303 uspace/srv/vfs/vfs_lookup.c 					base = nbase;
base              306 uspace/srv/vfs/vfs_lookup.c 				result->triplet = *((vfs_triplet_t *) base);
base              307 uspace/srv/vfs/vfs_lookup.c 				result->type = base->type;
base              308 uspace/srv/vfs/vfs_lookup.c 				result->size = base->size;
base              309 uspace/srv/vfs/vfs_lookup.c 				vfs_node_put(base);
base              312 uspace/srv/vfs/vfs_lookup.c 			if (base)
base              313 uspace/srv/vfs/vfs_lookup.c 				vfs_node_put(base);
base              336 uspace/srv/vfs/vfs_lookup.c errno_t vfs_lookup_internal(vfs_node_t *base, char *path, int lflag,
base              339 uspace/srv/vfs/vfs_lookup.c 	assert(base != NULL);
base              367 uspace/srv/vfs/vfs_lookup.c 		vfs_node_t *parent = base;
base              375 uspace/srv/vfs/vfs_lookup.c 			rc = _vfs_lookup_internal(base, path, tflag, &tres,
base              391 uspace/srv/vfs/vfs_lookup.c 		rc = _vfs_lookup_internal(base, path, lflag, result, len);
base              519 uspace/srv/vfs/vfs_ops.c 	vfs_node_t *base = base_file->node;
base              520 uspace/srv/vfs/vfs_ops.c 	vfs_node_addref(base);
base              534 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              545 uspace/srv/vfs/vfs_ops.c 		rc = vfs_lookup_internal(base, old, L_DIRECTORY, &base_lr);
base              547 uspace/srv/vfs/vfs_ops.c 			vfs_node_put(base);
base              552 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              553 uspace/srv/vfs/vfs_ops.c 		base = vfs_node_get(&base_lr);
base              554 uspace/srv/vfs/vfs_ops.c 		if (!base) {
base              563 uspace/srv/vfs/vfs_ops.c 	rc = vfs_lookup_internal(base, old, L_DISABLE_MOUNTS, &old_lr);
base              565 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              570 uspace/srv/vfs/vfs_ops.c 	rc = vfs_lookup_internal(base, new, L_UNLINK | L_DISABLE_MOUNTS,
base              575 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              580 uspace/srv/vfs/vfs_ops.c 	rc = vfs_link_internal(base, new, &old_lr.triplet);
base              582 uspace/srv/vfs/vfs_ops.c 		vfs_link_internal(base, old, &old_lr.triplet);
base              584 uspace/srv/vfs/vfs_ops.c 			vfs_link_internal(base, new, &new_lr_orig.triplet);
base              585 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              590 uspace/srv/vfs/vfs_ops.c 	rc = vfs_lookup_internal(base, old, L_UNLINK | L_DISABLE_MOUNTS,
base              594 uspace/srv/vfs/vfs_ops.c 			vfs_link_internal(base, new, &new_lr_orig.triplet);
base              595 uspace/srv/vfs/vfs_ops.c 		vfs_node_put(base);
base              609 uspace/srv/vfs/vfs_ops.c 	vfs_node_put(base);
HelenOS homepage, sources at GitHub