| /freebsd-12.1/contrib/unbound/services/ |
| H A D | outside_network.c | 373 comm_point_tcp_win_bio_cb(pend->c, pend->c->ssl); 491 &pend->query->addr, pend->query->addrlen); 1102 pend->node.key = pend; 1201 if(addr_is_ip6(&pend->addr, pend->addrlen)) { 1210 log_assert(pend->pc && pend->pc->cp); 1214 (struct sockaddr*)&pend->addr, pend->addrlen)) { 1232 pend->sq->zone, pend->sq->zonelen, packet); 1249 pend->node.key = pend; 1251 pend); 1253 free(pend); [all …]
|
| /freebsd-12.1/contrib/gcclibs/libgomp/ |
| H A D | iter.c | 41 gomp_iter_static_next (long *pstart, long *pend) in gomp_iter_static_next() argument 55 *pend = ws->end; in gomp_iter_static_next() 98 *pend = e; in gomp_iter_static_next() 131 *pend = e; in gomp_iter_static_next() 173 *pend = end; in gomp_iter_dynamic_next_locked() 183 gomp_iter_dynamic_next (long *pstart, long *pend) in gomp_iter_dynamic_next() argument 222 *pend = nend; in gomp_iter_dynamic_next() 233 gomp_iter_guided_next_locked (long *pstart, long *pend) in gomp_iter_guided_next_locked() argument 258 *pend = end; in gomp_iter_guided_next_locked() 267 gomp_iter_guided_next (long *pstart, long *pend) in gomp_iter_guided_next() argument [all …]
|
| /freebsd-12.1/tools/tools/pirtool/ |
| H A D | pirtool.c | 143 unsigned char *p, *pend; in find_pir_table() local 153 pend = base + PIR_SIZE; in find_pir_table() 154 for (p = base; p < pend; p += 16) { in find_pir_table() 170 pend = p + pir->size; in find_pir_table() 172 while (p < pend) in find_pir_table() 207 pir_entry_t *p, *pend; in dump_pir_table() local 249 p = pend = &pir->entry[0]; in dump_pir_table() 250 pend += num_slots; in dump_pir_table() 252 for (i = 0; p < pend; i++, p++) { in dump_pir_table()
|
| /freebsd-12.1/contrib/ntp/libntp/ |
| H A D | xsbprintf.c | 34 char * const pend, /* buffer end (I) */ in xvsbprintf() argument 41 if (pbuf && (pend - pbuf > 0)) { in xvsbprintf() 42 size_t blen = (size_t)(pend - pbuf); in xvsbprintf() 61 char * const pend, /* buffer end (I) */ in xsbprintf() argument 70 rc = xvsbprintf(ppbuf, pend, pfmt, va); in xsbprintf()
|
| /freebsd-12.1/lib/libusb/ |
| H A D | libusb10_desc.c | 102 struct libusb20_endpoint *pend; in libusb_get_config_descriptor() local 136 pend = pinf->endpoints; in libusb_get_config_descriptor() 138 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor() 139 pend++; in libusb_get_config_descriptor() 149 pend = pinf->endpoints; in libusb_get_config_descriptor() 151 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor() 152 pend++; in libusb_get_config_descriptor() 239 pend = &pinf->endpoints[k]; in libusb_get_config_descriptor() 241 endd->bLength = pend->desc.bLength; in libusb_get_config_descriptor() 249 if (pend->extra.len != 0) { in libusb_get_config_descriptor() [all …]
|
| /freebsd-12.1/bin/pax/ |
| H A D | pat_rep.c | 244 pt->pend = NULL; 348 if (pt->pend != NULL) 349 *pt->pend = '\0'; 353 if (pt->pend != NULL) 354 *pt->pend = '/'; 355 pt->pend = NULL; 362 if (pt->pend != NULL) { 363 *pt->pend = '/'; 364 pt->pend = NULL; 499 *pend = NULL; [all …]
|
| /freebsd-12.1/contrib/ncurses/ncurses/tinfo/ |
| H A D | comp_parse.c | 109 char *pstart, *qstart, *pend, *qend; in check_collisions() local 123 for (pstart = n1; (pend = strchr(pstart, '|')); pstart = pend + 1) { in check_collisions() 125 if ((pend - pstart == qend - qstart) in check_collisions() 126 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) { in check_collisions() 129 (int) (pend - pstart), pstart); in check_collisions() 166 char *pstart, *qstart, *pend, *qend; in remove_collision() local 176 for (pstart = n1; (pend = name_ending(pstart)); pstart = next_name(pend)) { in remove_collision() 178 if ((pend - pstart == qend - qstart) in remove_collision() 179 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) { in remove_collision()
|
| /freebsd-12.1/lib/libdpv/ |
| H A D | dprompt.c | 62 static char *pend = NULL; variable 301 if (pend == NULL && (pend = msg_pending) == NULL) { in dprompt_init() 302 if ((pend = getenv(ENV_MSG_PENDING)) != NULL) in dprompt_init() 303 pend_size = strlen(pend); in dprompt_init() 306 if ((pend = malloc(pend_size + 1)) == NULL) in dprompt_init() 309 snprintf(pend, pend_size + 1, DPV_PENDING_DEFAULT); in dprompt_init() 314 *(pend + pbar_size) = '\0'; in dprompt_init() 571 pend_lsize, "", pend, pend_rsize, ""); in dprompt_add_files() 764 free(pend); in dprompt_free() 765 pend = NULL; in dprompt_free()
|
| /freebsd-12.1/sys/dev/uart/ |
| H A D | uart_tty.c | 320 int c, err = 0, pend, sig, xc; in uart_tty_intr() local 325 pend = atomic_readandclear_32(&sc->sc_ttypend); in uart_tty_intr() 326 if (!(pend & SER_INT_MASK)) in uart_tty_intr() 332 if (pend & SER_INT_RXREADY) { in uart_tty_intr() 352 if (pend & SER_INT_BREAK) in uart_tty_intr() 355 if (pend & SER_INT_SIGCHG) { in uart_tty_intr() 356 sig = pend & SER_INT_SIGMASK; in uart_tty_intr() 363 if (pend & SER_INT_TXIDLE) in uart_tty_intr()
|
| H A D | uart_kbd_sun.c | 302 int pend; in sunkbd_uart_intr() local 307 pend = atomic_readandclear_32(&sc->sc_uart->sc_ttypend); in sunkbd_uart_intr() 308 if (!(pend & SER_INT_MASK)) in sunkbd_uart_intr() 311 if (pend & SER_INT_RXREADY) { in sunkbd_uart_intr()
|
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | regex.c | 812 UCHAR_T *pend = end; in PREFIX() local 821 while (p < pend) in PREFIX() 2315 const CHAR_T *pend; in PREFIX() local 2362 pend = p + size; in PREFIX() 2453 while (p != pend) in PREFIX() 4370 if (p == pend) in wcs_compile_range() 4457 if (p == pend) in byte_compile_range() 4845 p = pend; in PREFIX() 5903 if (p == pend) in wcs_re_match_2_internal() 6989 if (p2 + 2 < pend in wcs_re_match_2_internal() [all …]
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | regex.c | 812 UCHAR_T *pend = end; in PREFIX() local 821 while (p < pend) in PREFIX() 2315 const CHAR_T *pend; in PREFIX() local 2362 pend = p + size; in PREFIX() 2453 while (p != pend) in PREFIX() 4370 if (p == pend) in wcs_compile_range() 4457 if (p == pend) in byte_compile_range() 4845 p = pend; in PREFIX() 5903 if (p == pend) in wcs_re_match_2_internal() 6989 if (p2 + 2 < pend in wcs_re_match_2_internal() [all …]
|
| /freebsd-12.1/contrib/less/ |
| H A D | lessecho.c | 72 lstrtol(s, radix, pend) in lstrtol() argument 75 char **pend; 131 if (pend != NULL) 136 *pend = s;
|
| H A D | pattern.c | 245 match(pattern, pattern_len, buf, buf_len, pfound, pend) in match() argument 250 char **pfound, **pend; 273 if (pend != NULL) 274 *pend = lp;
|
| /freebsd-12.1/contrib/mandoc/ |
| H A D | mandoc_xr.c | 66 const char *pend; in mandoc_xr_add() local 88 pend = xr->hashkey + tsz; in mandoc_xr_add() 89 hv = ohash_interval(xr->hashkey, &pend); in mandoc_xr_add()
|
| H A D | html.c | 419 print_encode(struct html *h, const char *p, const char *pend, int norecurse) in print_encode() argument 429 if (pend == NULL) in print_encode() 430 pend = strchr(p, '\0'); in print_encode() 435 while (p < pend) { in print_encode() 442 for (sz = strcspn(p, rejs); sz-- && p < pend; p++) in print_encode() 446 (p >= pend || *p == ' ' || *p == ASCII_NBRSP)) { in print_encode() 449 while (p < pend && (*p == ' ' || *p == ASCII_NBRSP)) in print_encode() 454 if (p >= pend) in print_encode()
|
| /freebsd-12.1/stand/libsa/ |
| H A D | zalloc.c | 289 void *pend = (char *)mp->mp_Base + mp->mp_Size; in zextendPool() local 297 if (base > pend) { in zextendPool() 298 mp->mp_Size += (char *)base - (char *)pend; in zextendPool() 299 mp->mp_Used += (char *)base - (char *)pend; in zextendPool()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | regcomp.c | 202 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member 337 p->pend[i] = 0; in llvm_regcomp() 460 p->pend[subno] = HERE(); in p_ere_exp() 461 assert(p->pend[subno] != 0); in p_ere_exp() 516 if (p->pend[backrefnum] == 0) { in p_ere_exp() 701 p->pend[subno] = HERE(); in p_simp_re() 702 assert(p->pend[subno] != 0); in p_simp_re() 722 if (p->pend[i] != 0) { in p_simp_re() 728 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re() 1517 if (p->pend[i] >= pos) { in doinsert() [all …]
|
| /freebsd-12.1/sys/contrib/octeon-sdk/ |
| H A D | cvmx-pow-defs.h | 429 uint64_t pend : 1; /**< Pending switch memory BIST status */ member 433 uint64_t pend : 1; 458 uint64_t pend : 1; /**< Pending switch memory BIST status */ member 462 uint64_t pend : 1; 520 uint64_t pend : 1; /**< Pending switch memory BIST status */ member 524 uint64_t pend : 1; 582 uint64_t pend : 1; /**< Pending switch memory BIST status */ member 586 uint64_t pend : 1; 607 uint64_t pend : 1; /**< Pending switch memory BIST status */ member 611 uint64_t pend : 1; [all …]
|
| /freebsd-12.1/contrib/nvi/regex/ |
| H A D | regcomp.c | 72 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member 231 p->pend[i] = 0; in regcomp() 361 p->pend[subno] = HERE(); in p_ere_exp() 362 assert(p->pend[subno] != 0); in p_ere_exp() 575 p->pend[subno] = HERE(); in p_simp_re() 576 assert(p->pend[subno] != 0); in p_simp_re() 596 if (p->pend[i] != 0) { in p_simp_re() 601 assert(p->strip[p->pend[i]] == ORPAREN); in p_simp_re() 602 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re() 1418 if (p->pend[i] >= pos) { in doinsert() [all …]
|
| /freebsd-12.1/lib/libc/regex/ |
| H A D | regcomp.c | 102 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member 284 p->pend[i] = 0; in regcomp() 386 p->pend[subno] = HERE(); in p_ere_exp() 387 assert(p->pend[subno] != 0); in p_ere_exp() 761 p->pend[subno] = HERE(); in p_simp_re() 762 assert(p->pend[subno] != 0); in p_simp_re() 781 if (p->pend[i] != 0) { in p_simp_re() 786 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re() 787 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re() 1518 if (p->pend[i] >= pos) { [all …]
|
| /freebsd-12.1/sys/arm/allwinner/ |
| H A D | a31_dmac.c | 322 uint64_t pend, mask; in a31dmac_intr() local 336 pend = pend0 | ((uint64_t)pend1 << 32); in a31dmac_intr() 338 while ((bit = ffsll(pend & DMA_PKG_IRQ_MASK)) != 0) { in a31dmac_intr() 340 pend &= ~mask; in a31dmac_intr()
|
| /freebsd-12.1/sys/x86/iommu/ |
| H A D | busdma_dmar.c | 666 vm_paddr_t pstart, pend; in dmar_bus_dmamap_load_phys() local 672 pend = round_page(buf + buflen); in dmar_bus_dmamap_load_phys() 674 ma_cnt = OFF_TO_IDX(pend - pstart); in dmar_bus_dmamap_load_phys() 695 vm_paddr_t pstart, pend, paddr; in dmar_bus_dmamap_load_buffer() local 701 pend = round_page((vm_offset_t)buf + buflen); in dmar_bus_dmamap_load_buffer() 703 ma_cnt = OFF_TO_IDX(pend - pstart); in dmar_bus_dmamap_load_buffer()
|
| /freebsd-12.1/sys/fs/cd9660/ |
| H A D | cd9660_rrip.c | 498 ISO_SUSP_HEADER *pend; local 521 pend = (ISO_SUSP_HEADER *)((char *)isodir + isonum_711(isodir->length)); 529 while (pend >= phead + 1) { 565 pend = (ISO_SUSP_HEADER *) ((char *)phead + ana->iso_ce_len);
|
| /freebsd-12.1/sys/arm/samsung/exynos/ |
| H A D | exynos5_pad.c | 107 uint32_t pend; member 370 if (sc->gpio_map[i].pend == 0) { in ext_intr() 375 reg = READ4(sc, sc->gpio_map[i].port, sc->gpio_map[i].pend); in ext_intr() 392 WRITE4(sc, sc->gpio_map[i].port, sc->gpio_map[i].pend, reg); in ext_intr()
|