Home
last modified time | relevance | path

Searched refs:pend (Results 1 – 25 of 39) sorted by relevance

12

/freebsd-13.1/contrib/unbound/services/
H A Doutside_network.c724 pend->reuse.pending = pend;
915 pend->reuse.pending = pend;
979 pend->c->tcp_write_pkt == pend->query->pkt &&
1274 &pend->reuse.addr, pend->reuse.addrlen);
1292 &pend->reuse.addr, pend->reuse.addrlen);
1965 pend->node.key = pend;
2125 if(addr_is_ip6(&pend->addr, pend->addrlen)) {
2134 log_assert(pend->pc && pend->pc->cp);
2183 pend->node.key = pend;
2185 pend);
[all …]
/freebsd-13.1/contrib/ntp/libntp/
H A Dxsbprintf.c34 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-13.1/tools/tools/pirtool/
H A Dpirtool.c143 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-13.1/lib/libusb/
H A Dlibusb10_desc.c102 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-13.1/bin/pax/
H A Dpat_rep.c244 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 …]
H A Dpax.h172 char *pend; /* end of a prefix match */ member
/freebsd-13.1/contrib/unbound/testcode/
H A Dunittcpreuse.c80 struct pending_tcp pend; in tcpid_test() local
83 memset(&pend, 0, sizeof(pend)); in tcpid_test()
84 pend.reuse.pending = &pend; in tcpid_test()
87 rbtree_init(&pend.reuse.tree_by_id, reuse_id_cmp); in tcpid_test()
88 tcpid_fillup(&pend.reuse, &outnet); in tcpid_test()
/freebsd-13.1/sys/dev/uart/
H A Duart_tty.c323 int c, err = 0, pend, sig, xc; in uart_tty_intr() local
328 pend = atomic_readandclear_32(&sc->sc_ttypend); in uart_tty_intr()
329 if (!(pend & SER_INT_MASK)) in uart_tty_intr()
335 if (pend & SER_INT_RXREADY) { in uart_tty_intr()
355 if (pend & SER_INT_BREAK) in uart_tty_intr()
358 if (pend & SER_INT_SIGCHG) { in uart_tty_intr()
359 sig = pend & SER_INT_SIGMASK; in uart_tty_intr()
366 if (pend & SER_INT_TXIDLE) in uart_tty_intr()
/freebsd-13.1/lib/libdpv/
H A Ddprompt.c62 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-13.1/contrib/ncurses/ncurses/tinfo/
H A Dcomp_parse.c108 char *pstart, *qstart, *pend, *qend; in check_collisions() local
122 for (pstart = n1; (pend = strchr(pstart, '|')); pstart = pend + 1) { in check_collisions()
124 if ((pend - pstart == qend - qstart) in check_collisions()
125 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) { in check_collisions()
128 (int) (pend - pstart), pstart); in check_collisions()
165 char *pstart, *qstart, *pend, *qend; in remove_collision() local
175 for (pstart = n1; (pend = name_ending(pstart)); pstart = next_name(pend)) { in remove_collision()
177 if ((pend - pstart == qend - qstart) in remove_collision()
178 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) { in remove_collision()
/freebsd-13.1/contrib/less/
H A Dlessecho.c72 lstrtol(s, radix, pend) in lstrtol() argument
75 char **pend;
131 if (pend != NULL)
136 *pend = s;
H A Dpattern.c276 match(pattern, pattern_len, buf, buf_len, pfound, pend) in match() argument
281 char **pfound, **pend;
304 if (pend != NULL)
305 *pend = lp;
/freebsd-13.1/contrib/mandoc/
H A Dmandoc_xr.c66 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 Dhtml.c419 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-13.1/sys/compat/linux/
H A Dlinux_mmap.c258 vm_pindex_t pstart, pend; in linux_madvise_dontneed() local
294 pend = OFF_TO_IDX(entry->offset) + in linux_madvise_dontneed()
297 pend -= atop(entry->end - end); in linux_madvise_dontneed()
317 vm_object_page_remove(object, pstart, pend, 0); in linux_madvise_dontneed()
334 vm_object_madvise(object, pstart, pend, MADV_DONTNEED); in linux_madvise_dontneed()
/freebsd-13.1/stand/libsa/
H A Dzalloc.c290 void *pend = (char *)mp->mp_Base + mp->mp_Size; in zextendPool() local
298 if (base > pend) { in zextendPool()
299 mp->mp_Size += (char *)base - (char *)pend; in zextendPool()
300 mp->mp_Used += (char *)base - (char *)pend; in zextendPool()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c203 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
338 p->pend[i] = 0; in llvm_regcomp()
461 p->pend[subno] = HERE(); in p_ere_exp()
462 assert(p->pend[subno] != 0); in p_ere_exp()
517 if (p->pend[backrefnum] == 0) { in p_ere_exp()
702 p->pend[subno] = HERE(); in p_simp_re()
703 assert(p->pend[subno] != 0); in p_simp_re()
723 if (p->pend[i] != 0) { in p_simp_re()
729 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1518 if (p->pend[i] >= pos) { in doinsert()
[all …]
/freebsd-13.1/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_taskq.c279 uint32_t pend; in taskq_cancel_id() local
292 &ent->tqent_timeout_task, &pend); in taskq_cancel_id()
294 rc = taskqueue_cancel(tq->tq_queue, &ent->tqent_task, &pend); in taskq_cancel_id()
297 } else if (pend) { in taskq_cancel_id()
/freebsd-13.1/sys/contrib/octeon-sdk/
H A Dcvmx-pow-defs.h429 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-13.1/lib/libc/regex/
H A Dregcomp.c103 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
275 p->pend[i] = 0; in regcomp_internal()
429 p->pend[subno] = HERE(); in p_ere_exp()
430 assert(p->pend[subno] != 0); in p_ere_exp()
512 if (p->pend[i] != 0) { in p_ere_exp()
896 p->pend[subno] = HERE(); in p_simp_re()
897 assert(p->pend[subno] != 0); in p_simp_re()
916 if (p->pend[i] != 0) { in p_simp_re()
922 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1761 if (p->pend[i] >= pos) {
[all …]
/freebsd-13.1/contrib/nvi/regex/
H A Dregcomp.c72 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-13.1/sys/arm/allwinner/
H A Da31_dmac.c324 uint64_t pend, mask; in a31dmac_intr() local
338 pend = pend0 | ((uint64_t)pend1 << 32); in a31dmac_intr()
340 while ((bit = ffsll(pend & DMA_PKG_IRQ_MASK)) != 0) { in a31dmac_intr()
342 pend &= ~mask; in a31dmac_intr()
/freebsd-13.1/contrib/llvm-project/libunwind/src/
H A DAddressSpace.hpp216 const uint8_t *pend = (uint8_t *)end; in getULEB128() local
222 if (p == pend) in getULEB128()
241 const uint8_t *pend = (uint8_t *)end; in getSLEB128() local
246 if (p == pend) in getSLEB128()
/freebsd-13.1/sys/fs/cd9660/
H A Dcd9660_rrip.c494 ISO_SUSP_HEADER *pend; local
517 pend = (ISO_SUSP_HEADER *)((char *)isodir + isonum_711(isodir->length));
525 while (pend >= phead + 1) {
561 pend = (ISO_SUSP_HEADER *) ((char *)phead + ana->iso_ce_len);
/freebsd-13.1/sys/dev/iommu/
H A Dbusdma_iommu.c736 vm_paddr_t pstart, pend, paddr; in iommu_bus_dmamap_load_phys() local
742 pend = round_page(buf + buflen); in iommu_bus_dmamap_load_phys()
744 ma_cnt = OFF_TO_IDX(pend - pstart); in iommu_bus_dmamap_load_phys()
787 vm_paddr_t pstart, pend, paddr; in iommu_bus_dmamap_load_buffer() local
793 pend = round_page((vm_offset_t)buf + buflen); in iommu_bus_dmamap_load_buffer()
795 ma_cnt = OFF_TO_IDX(pend - pstart); in iommu_bus_dmamap_load_buffer()

12