| /dragonfly/contrib/nvi2/common/ |
| HD | seq.c | 34 seq_set(SCR *sp, CHAR_T *name, size_t nlen, CHAR_T *input, size_t ilen, in seq_set() argument 49 seq_find(sp, &lastqp, NULL, input, ilen, stype, NULL)) != NULL) { in seq_set() 82 if ((qp->input = v_wstrdup(sp, input, ilen)) == NULL) { in seq_set() 86 qp->ilen = ilen; in seq_set() 128 seq_delete(SCR *sp, CHAR_T *input, size_t ilen, seq_t stype) in seq_delete() argument 134 if (qp->stype == stype && qp->ilen == ilen) { in seq_delete() 135 diff = MEMCMP(qp->input, input, ilen); in seq_delete() 178 seq_find(SCR *sp, SEQ **lastqp, EVENT *e_input, CHAR_T *c_input, size_t ilen, in seq_find() argument 208 diff = MEMCMP(qp->input, c_input, MIN(qp->ilen, ilen)); in seq_find() 216 e_memcmp(qp->input, e_input, MIN(qp->ilen, ilen)); in seq_find() [all …]
|
| HD | key.c | 678 init_nomap = !e_memcmp(qp->output, &gp->i_event[gp->i_next], qp->ilen); in v_event_get() 681 QREM(qp->ilen); in v_event_get() 711 if (v_event_push(sp, NULL, qp->output + qp->ilen, in v_event_get() 712 qp->olen - qp->ilen, CH_MAPPED)) in v_event_get() 715 qp->output, qp->ilen, CH_NOMAP | CH_MAPPED)) in v_event_get()
|
| HD | seq.h | 33 size_t ilen; /* Input keys length. */ member
|
| /dragonfly/sys/vfs/msdosfs/ |
| HD | msdosfs_conv.c | 807 dos2unixchr(u_char *outbuf, const u_char **instr, size_t *ilen, int lower, in dos2unixchr() argument 821 (const char **)instr, ilen, in dos2unixchr() 826 ilen, &outp, &olen); in dos2unixchr() 833 (*ilen)--; in dos2unixchr() 842 (*ilen)--; in dos2unixchr() 854 unix2doschr(const u_char **instr, size_t *ilen, struct msdosfsmount *pmp) in unix2doschr() argument 866 len = *ilen; in unix2doschr() 869 ilen, &up, &ucslen); in unix2doschr() 870 unixlen = len - *ilen; in unix2doschr() 876 (*ilen)--; in unix2doschr() [all …]
|
| /dragonfly/usr.sbin/ppp/ |
| HD | deflate.c | 75 int olen, ilen, len, res, flush; in DeflateOutput() local 78 ilen = m_length(mp); in DeflateOutput() 79 log_Printf(LogDEBUG, "DeflateOutput: Proto %02x (%d bytes)\n", *proto, ilen); in DeflateOutput() 152 if (olen >= ilen) { in DeflateOutput() 156 ilen, olen, *proto); in DeflateOutput() 157 ccp->uncompout += ilen; in DeflateOutput() 158 ccp->compout += ilen; /* We measure this stuff too */ in DeflateOutput() 178 ccp->uncompout += ilen; in DeflateOutput() 182 ilen, olen, *proto); in DeflateOutput() 205 int ilen, olen; in DeflateInput() local [all …]
|
| HD | mppe.c | 165 int dictinit, ilen, len; in MPPEOutput() local 168 ilen = m_length(mp); in MPPEOutput() 171 log_Printf(LogDEBUG, "MPPE: Output: Proto %02x (%d bytes)\n", *proto, ilen); in MPPEOutput() 174 ccp->compout += ilen; in MPPEOutput() 175 ccp->uncompout += ilen; in MPPEOutput() 218 RC4(&mop->rc4key, ilen, rp, rp); in MPPEOutput() 226 ccp->uncompout += ilen; in MPPEOutput() 247 int dictinit, flushed, ilen, len, n; in MPPEInput() local 249 ilen = m_length(mp); in MPPEInput() 251 ccp->compin += ilen; in MPPEInput() [all …]
|
| /dragonfly/lib/libc/db/btree/ |
| HD | bt_split.c | 76 size_t ilen, uint32_t argskip) in __bt_split() argument 97 bt_root(t, sp, &l, &r, &skip, ilen) : in __bt_split() 98 bt_page(t, sp, &l, &r, &skip, ilen); in __bt_split() 106 h->linp[skip] = h->upper -= ilen; in __bt_split() 332 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_page() argument 402 tp = bt_psplit(t, h, l, r, skip, ilen); in bt_page() 430 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_root() argument 453 tp = bt_psplit(t, h, l, r, skip, ilen); in bt_root() 586 bt_psplit(BTREE *t, PAGE *h, PAGE *l, PAGE *r, indx_t *pskip, size_t ilen) in bt_psplit() argument 611 nbytes = ilen; in bt_psplit()
|
| /dragonfly/lib/libkiconv/ |
| HD | xlat16_iconv.c | 313 my_iconv_char(iconv_t cd, u_char **ibuf, size_t * ilen, u_char **obuf, in my_iconv_char() argument 323 ir = *ilen; in my_iconv_char() 326 ret = my_iconv(cd, (char **)&sp, ilen, (char **)&dp, olen); in my_iconv_char() 331 if (*ilen == ir - 1 && (*ibuf)[1] == '\0' && (c1 || c2)) in my_iconv_char() 358 *ilen = 1; in my_iconv_char()
|
| /dragonfly/crypto/libressl/include/openssl/ |
| HD | comp.h | 15 unsigned char *in, int ilen); 17 unsigned char *in, int ilen);
|
| /dragonfly/sys/dev/misc/snp/ |
| HD | snp.c | 156 int error, ilen; in snplwrite() local 164 ilen = (int)szmin(512, uio->uio_resid); in snplwrite() 165 ibuf = kmalloc(ilen, M_SNP, M_WAITOK); in snplwrite() 166 error = uiomove(ibuf, (size_t)ilen, uio); in snplwrite() 169 snp_in(snp, ibuf, ilen); in snplwrite() 172 iov.iov_len = ilen; in snplwrite() 176 uio2.uio_resid = ilen; in snplwrite()
|
| /dragonfly/sys/bus/u4b/net/ |
| HD | if_axereg.h | 269 uint16_t ilen; member 294 uint16_t ilen; member
|
| HD | if_axe.c | 1049 if ((hdr.len ^ hdr.ilen) != sc->sc_lenmask) { in axe_rx_frame() 1074 csum_hdr.ilen = le16toh(csum_hdr.ilen); in axe_rx_frame() 1077 AXE_CSUM_RXBYTES(csum_hdr.ilen)) != in axe_rx_frame() 1198 hdr.ilen = ~hdr.len; in axe_bulk_write_callback() 1221 hdr.ilen = 0xffff; in axe_bulk_write_callback()
|
| /dragonfly/contrib/tcpdump/ |
| HD | print-esp.c | 515 int ilen, rlen; in esp_print_decode_ikeline() local 533 ilen = strlen(icookie); in esp_print_decode_ikeline() 539 || ilen!=18 in esp_print_decode_ikeline() 545 init, icookie, ilen, rcookie, rlen); in esp_print_decode_ikeline()
|
| /dragonfly/lib/libc/gen/ |
| HD | getcap.c | 392 u_int ilen; in getent() local 427 iret = getent(&icap, &ilen, db_p, fd, tc, depth+1, in getent() 430 newilen = ilen; in getent()
|
| /dragonfly/contrib/ncurses/ncurses/tinfo/ |
| HD | read_termcap.c | 465 unsigned ilen; in _nc_getent() local 500 iret = _nc_getent(&icap, &ilen, &oline, current, db_array, fd, in _nc_getent() 503 newilen = (int) ilen; in _nc_getent()
|
| /dragonfly/contrib/gcc-4.7/gcc/c-family/ |
| HD | c-pragma.c | 600 size_t ilen = IDENTIFIER_LENGTH (DECL_NAME (decl)); in maybe_apply_renaming_pragma() local 602 char *newname = (char *) alloca (plen + ilen + 1); in maybe_apply_renaming_pragma() 605 memcpy (newname + plen, id, ilen + 1); in maybe_apply_renaming_pragma() 607 return build_string (plen + ilen, newname); in maybe_apply_renaming_pragma()
|
| /dragonfly/contrib/gcc-8.0/gcc/c-family/ |
| HD | c-pragma.c | 647 size_t ilen = IDENTIFIER_LENGTH (DECL_NAME (decl)); in maybe_apply_renaming_pragma() local 649 char *newname = (char *) alloca (plen + ilen + 1); in maybe_apply_renaming_pragma() 652 memcpy (newname + plen, id, ilen + 1); in maybe_apply_renaming_pragma() 654 return build_string (plen + ilen, newname); in maybe_apply_renaming_pragma()
|
| /dragonfly/sys/vfs/ntfs/ |
| HD | ntfs_subr.c | 2047 size_t ilen, olen; in ntfs_u28() local 2050 ilen = olen = 2; in ntfs_u28() 2057 (const char **)(void *)&p, &ilen, &outp, &olen); in ntfs_u28() 2079 size_t ilen, olen; in ntfs_82u() local 2082 ilen = (size_t)*len; in ntfs_82u() 2091 (const char **)(void *)&p, &ilen, &outp, &olen); in ntfs_82u() 2092 *len -= (int)ilen; in ntfs_82u()
|
| /dragonfly/usr.bin/systat/ |
| HD | vmstat.c | 197 size_t ilen; in findintralias() local 203 ilen = strlen(intrname[i]); in findintralias() 204 if (nlen == ilen && in findintralias()
|
| /dragonfly/contrib/nvi2/cl/ |
| HD | cl_term.c | 174 qp->input, qp->ilen, qp->output, qp->olen); in cl_term_init()
|
| /dragonfly/crypto/openssh/ |
| HD | packet.c | 2544 size_t ilen, olen; in ssh_packet_set_state() local 2576 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 || in ssh_packet_set_state() 2578 (r = sshbuf_put(state->input, input, ilen)) != 0 || in ssh_packet_set_state()
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | gimple-fold.c | 759 unsigned ilen = tree_to_uhwi (len); in gimple_fold_builtin_memory_op() local 760 if (pow2p_hwi (ilen)) in gimple_fold_builtin_memory_op() 770 tree type = lang_hooks.types.type_for_size (ilen * 8, 1); in gimple_fold_builtin_memory_op() 773 && GET_MODE_SIZE (mode) * BITS_PER_UNIT == ilen * 8 in gimple_fold_builtin_memory_op()
|
| /dragonfly/contrib/binutils-2.27/bfd/ |
| HD | elflink.c | 12623 unsigned int ilen; in _bfd_elf_gc_mark_extra_sections() local 12626 ilen = strlen (isec->name); in _bfd_elf_gc_mark_extra_sections() 12642 if (dlen > ilen in _bfd_elf_gc_mark_extra_sections() 12643 && strncmp (dsec->name + (dlen - ilen), in _bfd_elf_gc_mark_extra_sections() 12644 isec->name, ilen) == 0) in _bfd_elf_gc_mark_extra_sections()
|
| /dragonfly/contrib/binutils-2.34/bfd/ |
| HD | elflink.c | 13383 unsigned int ilen; in _bfd_elf_gc_mark_extra_sections() local 13386 ilen = strlen (isec->name); in _bfd_elf_gc_mark_extra_sections() 13402 if (dlen > ilen in _bfd_elf_gc_mark_extra_sections() 13403 && strncmp (dsec->name + (dlen - ilen), in _bfd_elf_gc_mark_extra_sections() 13404 isec->name, ilen) == 0) in _bfd_elf_gc_mark_extra_sections()
|