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.c353 EFI_PHYSICAL_ADDRESS addr, new_base, new_staging; in efi_check_space() local
431 new_base = get_staging_max(); in efi_check_space()
434 nr_pages, &new_base); in efi_check_space()
437 new_staging = roundup2(new_base, M(2)); in efi_check_space()
439 new_staging = new_base; in efi_check_space()
451 staging_end = new_base + nr_pages * EFI_PAGE_SIZE; in efi_check_space()
452 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/contrib/unbound/libunbound/
H A Dlibunbound.c1449 struct ub_event_base* new_base; in ub_ctx_set_event() local
1463 new_base = ub_libevent_event_base(base); in ub_ctx_set_event()
1464 if (new_base) in ub_ctx_set_event()
1465 ctx->event_base = new_base; in ub_ctx_set_event()
1469 return new_base ? UB_NOERROR : UB_INITFAIL; in ub_ctx_set_event()
/freebsd/sys/netlink/
H A Dnetlink_snl.h1079 void *new_base = nw->ss->lb->base; in snl_realloc_msg_buffer() local
1080 if (new_base != nw->base) { in snl_realloc_msg_buffer()
1081 memcpy(new_base, nw->base, nw->offset); in snl_realloc_msg_buffer()
1086 (void *)((char *)new_base + hdr_off); in snl_realloc_msg_buffer()
1088 nw->base = (char *)new_base; in snl_realloc_msg_buffer()
/freebsd/contrib/expat/tests/
H A Dalloc_tests.c533 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 Dbasic_tests.c2282 const XML_Char *new_base = XCS("/local/file/name.xml"); in START_TEST() local
2285 if (XML_SetBase(g_parser, new_base) != XML_STATUS_OK) in START_TEST()
2287 if (xcstrcmp(XML_GetBase(g_parser), new_base) != 0) in START_TEST()