Home
last modified time | relevance | path

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

123

/NextBSD/contrib/unbound/services/
HDoutside_network.c81 static int randomize_and_send_udp(struct pending* pend, sldns_buffer* packet,
203 struct pending_tcp* pend = w->outnet->tcp_free; local
205 log_assert(pend);
250 pend->c->ssl = outgoing_ssl_fd(w->outnet->sslctx, s);
251 if(!pend->c->ssl) {
252 pend->c->fd = s;
253 comm_point_close(pend->c);
257 comm_point_tcp_win_bio_cb(pend->c, pend->c->ssl);
259 pend->c->ssl_shake_state = comm_ssl_shake_write;
262 w->next_waiting = (void*)pend;
[all …]
/NextBSD/lib/libusb/
HDlibusb10_desc.c100 struct libusb20_endpoint *pend; in libusb_get_config_descriptor() local
134 pend = pinf->endpoints; in libusb_get_config_descriptor()
136 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
137 pend++; in libusb_get_config_descriptor()
147 pend = pinf->endpoints; in libusb_get_config_descriptor()
149 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
150 pend++; in libusb_get_config_descriptor()
237 pend = &pinf->endpoints[k]; in libusb_get_config_descriptor()
239 endd->bLength = pend->desc.bLength; in libusb_get_config_descriptor()
240 endd->bDescriptorType = pend->desc.bDescriptorType; in libusb_get_config_descriptor()
[all …]
/NextBSD/contrib/gcclibs/libgomp/
HDiter.c41 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()
147 gomp_iter_dynamic_next_locked (long *pstart, long *pend) in gomp_iter_dynamic_next_locked() argument
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()
[all …]
/NextBSD/tools/tools/pirtool/
HDpirtool.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()
/NextBSD/bin/pax/
HDpat_rep.c242 pt->pend = NULL;
332 if (!dflag && ((pt->pend != NULL) || (arcn->type == PAX_DIR))) {
346 if (pt->pend != NULL)
347 *pt->pend = '\0';
351 if (pt->pend != NULL)
352 *pt->pend = '/';
353 pt->pend = NULL;
360 if (pt->pend != NULL) {
361 *pt->pend = '/';
362 pt->pend = NULL;
[all …]
/NextBSD/contrib/ncurses/ncurses/tinfo/
HDcomp_parse.c109 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()
/NextBSD/sys/dev/uart/
HDuart_tty.c297 int c, err = 0, pend, sig, xc; in uart_tty_intr() local
302 pend = atomic_readandclear_32(&sc->sc_ttypend); in uart_tty_intr()
303 if (!(pend & SER_INT_MASK)) in uart_tty_intr()
309 if (pend & SER_INT_RXREADY) { in uart_tty_intr()
329 if (pend & SER_INT_BREAK) in uart_tty_intr()
332 if (pend & SER_INT_SIGCHG) { in uart_tty_intr()
333 sig = pend & SER_INT_SIGMASK; in uart_tty_intr()
340 if (pend & SER_INT_TXIDLE) in uart_tty_intr()
HDuart_kbd_sun.c301 int pend; in sunkbd_uart_intr() local
306 pend = atomic_readandclear_32(&sc->sc_uart->sc_ttypend); in sunkbd_uart_intr()
307 if (!(pend & SER_INT_MASK)) in sunkbd_uart_intr()
310 if (pend & SER_INT_RXREADY) { in sunkbd_uart_intr()
/NextBSD/lib/libdpv/
HDdprompt.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()
/NextBSD/contrib/gcclibs/libiberty/
HDregex.c812 UCHAR_T *pend = end; in PREFIX() local
821 while (p < pend) in PREFIX()
924 assert (p + *p < pend); in PREFIX()
1656 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend); \
1741 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
1854 const CHAR_T *pend,
1859 const CHAR_T *pend,
1868 const char *pend,
1884 do {if (p == pend) return REG_EEND; \
1890 do {if (p == pend) return REG_EEND; \
[all …]
/NextBSD/contrib/binutils/libiberty/
HDregex.c812 UCHAR_T *pend = end; in PREFIX() local
821 while (p < pend) in PREFIX()
924 assert (p + *p < pend); in PREFIX()
1656 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend); \
1741 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
1854 const CHAR_T *pend,
1859 const CHAR_T *pend,
1868 const char *pend,
1884 do {if (p == pend) return REG_EEND; \
1890 do {if (p == pend) return REG_EEND; \
[all …]
/NextBSD/contrib/less/
HDlessecho.c72 lstrtol(s, radix, pend) in lstrtol() argument
75 char **pend;
131 if (pend != NULL)
136 *pend = s;
HDpattern.c247 match(pattern, pattern_len, buf, buf_len, pfound, pend) in match() argument
252 char **pfound, **pend;
275 if (pend != NULL)
276 *pend = lp;
HDfilename.c477 char* pend; local
491 pend = &data[n];
492 for (p = data; p < pend; )
494 LWCHAR c = step_char(&p, +1, pend);
498 c = step_char(&p, +1, pend);
499 } while (p < pend && is_ansi_middle(c));
/NextBSD/lib/libstand/
HDzalloc.c265 void *pend = (char *)mp->mp_Base + mp->mp_Size; in zextendPool() local
273 if (base > pend) { in zextendPool()
274 mp->mp_Size += (char *)base - (char *)pend; in zextendPool()
275 mp->mp_Used += (char *)base - (char *)pend; in zextendPool()
/NextBSD/contrib/llvm/lib/Support/
HDregcomp.c75 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
210 p->pend[i] = 0; in llvm_regcomp()
333 p->pend[subno] = HERE(); in p_ere_exp()
334 assert(p->pend[subno] != 0); in p_ere_exp()
389 if (p->pend[backrefnum] == 0) { in p_ere_exp()
401 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN); in p_ere_exp()
402 (void) dupl(p, p->pbegin[backrefnum]+1, p->pend[backrefnum]); in p_ere_exp()
574 p->pend[subno] = HERE(); in p_simp_re()
575 assert(p->pend[subno] != 0); in p_simp_re()
595 if (p->pend[i] != 0) { in p_simp_re()
[all …]
/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-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 …]
/NextBSD/contrib/nvi/regex/
HDregcomp.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 …]
/NextBSD/lib/libc/regex/
HDregcomp.c80 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
249 p->pend[i] = 0; in regcomp()
383 p->pend[subno] = HERE(); in p_ere_exp()
384 assert(p->pend[subno] != 0); in p_ere_exp()
618 p->pend[subno] = HERE(); in p_simp_re()
619 assert(p->pend[subno] != 0); in p_simp_re()
639 if (p->pend[i] != 0) { in p_simp_re()
644 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re()
645 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1349 if (p->pend[i] >= pos) { in doinsert()
[all …]
/NextBSD/crypto/openssl/crypto/asn1/
HDa_int.c190 const unsigned char *p, *pend; in c2i_ASN1_INTEGER() local
202 pend = p + len; in c2i_ASN1_INTEGER()
266 *pp = pend; in c2i_ASN1_INTEGER()
/NextBSD/sys/x86/iommu/
HDbusdma_dmar.c633 vm_paddr_t pstart, pend; in dmar_bus_dmamap_load_phys() local
639 pend = round_page(buf + buflen); in dmar_bus_dmamap_load_phys()
641 ma_cnt = OFF_TO_IDX(pend - pstart); in dmar_bus_dmamap_load_phys()
662 vm_paddr_t pstart, pend, paddr; in dmar_bus_dmamap_load_buffer() local
668 pend = round_page((vm_offset_t)buf + buflen); in dmar_bus_dmamap_load_buffer()
670 ma_cnt = OFF_TO_IDX(pend - pstart); in dmar_bus_dmamap_load_buffer()
/NextBSD/contrib/llvm/projects/libunwind/src/
HDAddressSpace.hpp174 const uint8_t *pend = (uint8_t *)end; in getULEB128() local
180 if (p == pend) in getULEB128()
199 const uint8_t *pend = (uint8_t *)end; in getSLEB128() local
204 if (p == pend) in getSLEB128()
/NextBSD/contrib/gdb/gdb/
HDada-typeprint.c200 char *pend; in print_range_bound() local
202 pend = strstr (bound, "__"); in print_range_bound()
203 if (pend == NULL) in print_range_bound()
207 bound_len = pend - bound; in print_range_bound()
/NextBSD/sys/arm/samsung/exynos/
HDexynos5_pad.c107 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()
/NextBSD/sys/fs/cd9660/
HDcd9660_rrip.c496 ISO_SUSP_HEADER *pend; local
519 pend = (ISO_SUSP_HEADER *)((char *)isodir + isonum_711(isodir->length));
527 while (pend >= phead + 1) {
563 pend = (ISO_SUSP_HEADER *) ((char *)phead + ana->iso_ce_len);

123