Home
last modified time | relevance | path

Searched refs:new_base (Results 1 – 7 of 7) sorted by relevance

/freebsd/stand/efi/loader/
H A Dcopy.c360 EFI_PHYSICAL_ADDRESS addr, new_base, new_staging; in efi_check_space() local
441 new_base = get_staging_max(); in efi_check_space()
444 nr_pages, &new_base); in efi_check_space()
447 new_staging = roundup2(new_base, M(2)); in efi_check_space()
449 new_staging = new_base; in efi_check_space()
461 staging_end = new_base + nr_pages * EFI_PAGE_SIZE; in efi_check_space()
462 staging_base = new_base; in efi_check_space()
/freebsd/contrib/byacc/
H A Dmstring.c68 char *new_base; in msprintf() local
74 if ((new_base = realloc(s->base, nl))) in msprintf()
76 s->base = new_base; in msprintf()
/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2838_pci.c571 pci_addr_t base, size, new_base, new_limit; in bcm_pcib_relocate_bridge_window() local
582 new_base = sc->base.base.ranges[0].pci_base; in bcm_pcib_relocate_bridge_window()
583 val = (uint16_t) (new_base >> 16); in bcm_pcib_relocate_bridge_window()
586 new_limit = new_base + size; in bcm_pcib_relocate_bridge_window()
/freebsd/sys/netlink/
H A Dnetlink_snl.h1086 char *new_base; in snl_realloc_msg_buffer() local
1094 new_base = snl_allocz(nw->ss, new_size); in snl_realloc_msg_buffer()
1095 if (new_base == NULL) { in snl_realloc_msg_buffer()
1100 memcpy(new_base, nw->base, nw->offset); in snl_realloc_msg_buffer()
1104 nw->hdr = (struct nlmsghdr *)(void *)(new_base + hdr_off); in snl_realloc_msg_buffer()
1106 nw->base = new_base; in snl_realloc_msg_buffer()
/freebsd/contrib/unbound/libunbound/
H A Dlibunbound.c1458 struct ub_event_base* new_base; in ub_ctx_set_event() local
1472 new_base = ub_libevent_event_base(base); in ub_ctx_set_event()
1473 if (new_base) in ub_ctx_set_event()
1474 ctx->event_base = new_base; in ub_ctx_set_event()
1478 return new_base ? UB_NOERROR : UB_INITFAIL; in ub_ctx_set_event()
/freebsd/contrib/expat/tests/
H A Dalloc_tests.c566 const XML_Char *new_base = XCS("/local/file/name.xml"); in START_TEST() local
572 if (XML_SetBase(g_parser, new_base) == XML_STATUS_OK) in START_TEST()
H A Dbasic_tests.c2466 const XML_Char *new_base = XCS("/local/file/name.xml"); in START_TEST() local
2469 if (XML_SetBase(g_parser, new_base) != XML_STATUS_OK) in START_TEST()
2471 if (xcstrcmp(XML_GetBase(g_parser), new_base) != 0) in START_TEST()