Home
last modified time | relevance | path

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

12

/freebsd/contrib/unbound/services/
H A Doutside_network.c757 pend->reuse.pending = pend;
986 pend->reuse.pending = pend;
1050 pend->c->tcp_write_pkt == pend->query->pkt &&
1345 &pend->reuse.addr, pend->reuse.addrlen);
1363 &pend->reuse.addr, pend->reuse.addrlen);
2037 pend->node.key = pend;
2200 if(addr_is_ip6(&pend->addr, pend->addrlen)) {
2209 log_assert(pend->pc && pend->pc->cp);
2259 pend->node.key = pend;
2261 pend);
[all …]
/freebsd/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/tools/tools/pirtool/
H A Dpirtool.c141 unsigned char *p, *pend; in find_pir_table() local
151 pend = base + PIR_SIZE; in find_pir_table()
152 for (p = base; p < pend; p += 16) { in find_pir_table()
168 pend = p + pir->size; in find_pir_table()
170 while (p < pend) in find_pir_table()
205 pir_entry_t *p, *pend; in dump_pir_table() local
247 p = pend = &pir->entry[0]; in dump_pir_table()
248 pend += num_slots; in dump_pir_table()
250 for (i = 0; p < pend; i++, p++) { in dump_pir_table()
/freebsd/lib/libusb/
H A Dlibusb10_desc.c101 struct libusb20_endpoint *pend; in libusb_get_config_descriptor() local
135 pend = pinf->endpoints; in libusb_get_config_descriptor()
137 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
138 pend++; in libusb_get_config_descriptor()
148 pend = pinf->endpoints; in libusb_get_config_descriptor()
150 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
151 pend++; in libusb_get_config_descriptor()
238 pend = &pinf->endpoints[k]; in libusb_get_config_descriptor()
240 endd->bLength = pend->desc.bLength; in libusb_get_config_descriptor()
248 if (pend->extra.len != 0) { in libusb_get_config_descriptor()
[all …]
/freebsd/bin/pax/
H A Dpat_rep.c214 pt->pend = NULL; in pat_add()
318 if (pt->pend != NULL) in pat_sel()
319 *pt->pend = '\0'; in pat_sel()
323 if (pt->pend != NULL) in pat_sel()
324 *pt->pend = '/'; in pat_sel()
325 pt->pend = NULL; in pat_sel()
332 if (pt->pend != NULL) { in pat_sel()
333 *pt->pend = '/'; in pat_sel()
334 pt->pend = NULL; in pat_sel()
469 *pend = NULL; in fn_match()
[all …]
H A Dpax.h169 char *pend; /* end of a prefix match */ member
/freebsd/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/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/lib/libdpv/
H A Ddprompt.c59 static char *pend = NULL; variable
298 if (pend == NULL && (pend = msg_pending) == NULL) { in dprompt_init()
299 if ((pend = getenv(ENV_MSG_PENDING)) != NULL) in dprompt_init()
300 pend_size = strlen(pend); in dprompt_init()
303 if ((pend = malloc(pend_size + 1)) == NULL) in dprompt_init()
306 snprintf(pend, pend_size + 1, DPV_PENDING_DEFAULT); in dprompt_init()
311 *(pend + pbar_size) = '\0'; in dprompt_init()
568 pend_lsize, "", pend, pend_rsize, ""); in dprompt_add_files()
761 free(pend); in dprompt_free()
762 pend = NULL; in dprompt_free()
/freebsd/contrib/mandoc/
H A Dmandoc_xr.c68 const char *pend; in mandoc_xr_add() local
90 pend = xr->hashkey + tsz; in mandoc_xr_add()
91 hv = ohash_interval(xr->hashkey, &pend); in mandoc_xr_add()
H A Dhtml.c463 print_encode(struct html *h, const char *p, const char *pend, int norecurse) in print_encode() argument
473 if (pend == NULL) in print_encode()
474 pend = strchr(p, '\0'); in print_encode()
479 while (p < pend) { in print_encode()
486 for (sz = strcspn(p, rejs); sz-- && p < pend; p++) in print_encode()
490 (p >= pend || *p == ' ' || *p == ASCII_NBRSP)) { in print_encode()
493 while (p < pend && (*p == ' ' || *p == ASCII_NBRSP)) in print_encode()
498 if (p >= pend) in print_encode()
/freebsd/sys/compat/linux/
H A Dlinux_mmap.c257 vm_pindex_t pstart, pend; in linux_madvise_dontneed() local
293 pend = OFF_TO_IDX(entry->offset) + in linux_madvise_dontneed()
296 pend -= atop(entry->end - end); in linux_madvise_dontneed()
316 vm_object_page_remove(object, pstart, pend, 0); in linux_madvise_dontneed()
333 vm_object_madvise(object, pstart, pend, MADV_DONTNEED); in linux_madvise_dontneed()
/freebsd/stand/libsa/
H A Dzalloc.c287 void *pend = (char *)mp->mp_Base + mp->mp_Size; in zextendPool() local
295 if (base > pend) { in zextendPool()
296 mp->mp_Size += (char *)base - (char *)pend; in zextendPool()
297 mp->mp_Used += (char *)base - (char *)pend; in zextendPool()
/freebsd/contrib/less/
H A Dlessecho.c68 static long lstrtol(char *s, char **pend, int radix) in lstrtol() argument
124 if (pend != NULL) in lstrtol()
129 *pend = s; in lstrtol()
/freebsd/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()
1516 if (p->pend[i] >= pos) { in doinsert()
[all …]
/freebsd/lib/libc/regex/
H A Dregcomp.c95 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
267 p->pend[i] = 0; in regcomp_internal()
421 p->pend[subno] = HERE(); in p_ere_exp()
422 assert(p->pend[subno] != 0); in p_ere_exp()
504 if (p->pend[i] != 0) { in p_ere_exp()
888 p->pend[subno] = HERE(); in p_simp_re()
889 assert(p->pend[subno] != 0); in p_simp_re()
908 if (p->pend[i] != 0) { in p_simp_re()
914 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1768 if (p->pend[i] >= pos) {
[all …]
/freebsd/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/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_taskq.c360 uint32_t pend; in taskq_cancel_id() local
368 rc = taskqueue_cancel(tq->tq_queue, &ent->tqent_task, &pend); in taskq_cancel_id()
373 &ent->tqent_timeout_task, &pend); in taskq_cancel_id()
379 if (pend) { in taskq_cancel_id()
/freebsd/sys/arm/allwinner/
H A Da31_dmac.c321 uint64_t pend, mask; in a31dmac_intr() local
335 pend = pend0 | ((uint64_t)pend1 << 32); in a31dmac_intr()
337 while ((bit = ffsll(pend & DMA_PKG_IRQ_MASK)) != 0) { in a31dmac_intr()
339 pend &= ~mask; in a31dmac_intr()
/freebsd/crypto/openssl/crypto/evp/
H A Dbio_enc.c302 int pend; in enc_ctrl() local
338 pend = ctx->buf_len - ctx->buf_off; in enc_ctrl()
345 if (i < 0 || (ctx->buf_len - ctx->buf_off) == pend) in enc_ctrl()
/freebsd/contrib/llvm-project/libunwind/src/
H A DAddressSpace.hpp227 const uint8_t *pend = (uint8_t *)end; in getULEB128() local
233 if (p == pend) in getULEB128()
252 const uint8_t *pend = (uint8_t *)end; in getSLEB128() local
257 if (p == pend) in getSLEB128()
/freebsd/sys/fs/cd9660/
H A Dcd9660_rrip.c460 ISO_SUSP_HEADER *pend; in cd9660_rrip_loop() local
483 pend = (ISO_SUSP_HEADER *)((char *)isodir + isonum_711(isodir->length)); in cd9660_rrip_loop()
491 while (pend >= phead + 1) { in cd9660_rrip_loop()
533 pend = (ISO_SUSP_HEADER *) ((char *)phead + ana->iso_ce_len); in cd9660_rrip_loop()
/freebsd/sys/dev/iommu/
H A Dbusdma_iommu.c695 vm_paddr_t pstart, pend, paddr; in iommu_bus_dmamap_load_phys() local
701 pend = round_page(buf + buflen); in iommu_bus_dmamap_load_phys()
703 ma_cnt = OFF_TO_IDX(pend - pstart); in iommu_bus_dmamap_load_phys()
746 vm_paddr_t pstart, pend, paddr; in iommu_bus_dmamap_load_buffer() local
752 pend = round_page((vm_offset_t)buf + buflen); in iommu_bus_dmamap_load_buffer()
754 ma_cnt = OFF_TO_IDX(pend - pstart); in iommu_bus_dmamap_load_buffer()
/freebsd/contrib/bsnmp/snmpd/
H A Dmain.c1964 static char *pend = NULL; in snmp_printf_func() local
1973 if (pend != NULL) { in snmp_printf_func()
1974 if ((new = realloc(pend, strlen(pend) + strlen(ret) + 1)) in snmp_printf_func()
1979 pend = new; in snmp_printf_func()
1980 strcat(pend, ret); in snmp_printf_func()
1983 pend = ret; in snmp_printf_func()
1985 while ((ret = strchr(pend, '\n')) != NULL) { in snmp_printf_func()
1987 syslog(LOG_DEBUG, "%s", pend); in snmp_printf_func()
1989 free(pend); in snmp_printf_func()
1990 pend = NULL; in snmp_printf_func()
[all …]
/freebsd/contrib/wpa/src/eap_peer/
H A Dikev2.c203 const u8 *pend, *ppos; in ikev2_parse_proposal() local
251 pend = pos + proposal_len; in ikev2_parse_proposal()
252 if (p->spi_size > pend - ppos) { in ikev2_parse_proposal()
280 int tlen = ikev2_parse_transform(prop, ppos, pend); in ikev2_parse_proposal()
286 if (ppos != pend) { in ikev2_parse_proposal()

12