Searched refs:new_base (Results 1 – 7 of 7) sorted by relevance
/freebsd/stand/efi/loader/ |
H A D | copy.c | 360 EFI_PHYSICAL_ADDRESS addr, new_base, new_staging; in efi_check_space() local 439 new_base = get_staging_max(); in efi_check_space() 442 nr_pages, &new_base); in efi_check_space() 445 new_staging = roundup2(new_base, M(2)); in efi_check_space() 447 new_staging = new_base; in efi_check_space() 459 staging_end = new_base + nr_pages * EFI_PAGE_SIZE; in efi_check_space() 460 staging_base = new_base; in efi_check_space()
|
/freebsd/contrib/byacc/ |
H A D | mstring.c | 68 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 D | bcm2838_pci.c | 571 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/contrib/unbound/libunbound/ |
H A D | libunbound.c | 1458 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/sys/netlink/ |
H A D | netlink_snl.h | 1088 void *new_base = nw->ss->lb->base; in snl_realloc_msg_buffer() local 1089 if (new_base != nw->base) { in snl_realloc_msg_buffer() 1090 memcpy(new_base, nw->base, nw->offset); in snl_realloc_msg_buffer() 1095 (void *)((char *)new_base + hdr_off); in snl_realloc_msg_buffer() 1097 nw->base = (char *)new_base; in snl_realloc_msg_buffer()
|
/freebsd/contrib/expat/tests/ |
H A D | alloc_tests.c | 533 const XML_Char *new_base = XCS("/local/file/name.xml"); in START_TEST() local 539 if (XML_SetBase(g_parser, new_base) == XML_STATUS_OK) in START_TEST()
|
H A D | basic_tests.c | 2325 const XML_Char *new_base = XCS("/local/file/name.xml"); in START_TEST() local 2328 if (XML_SetBase(g_parser, new_base) != XML_STATUS_OK) in START_TEST() 2330 if (xcstrcmp(XML_GetBase(g_parser), new_base) != 0) in START_TEST()
|