Searched refs:len (Results 901 - 925 of 6514) sorted by relevance

<<31323334353637383940>>

/freebsd-11.0-release/contrib/wpa/src/l2_packet/
H A Dl2_packet.h60 * points to len bytes of the payload after the layer 2 header and similarly,
67 const u8 *buf, size_t len),
80 const u8 *buf, size_t len),
106 * @len: Length of the buffer (including l2 header only if l2_hdr == 1)
110 const u8 *buf, size_t len);
116 * @len: Maximum buffer length
126 int l2_packet_get_ip_addr(struct l2_packet_data *l2, char *buf, size_t len);
/freebsd-11.0-release/contrib/wpa/src/wps/
H A Dupnp_xml.h16 void xml_data_encode(struct wpabuf *buf, const char *data, int len);
/freebsd-11.0-release/contrib/tcpdump/
H A Dprint-raw.c41 ipN_print(ndo, p, h->len);
/freebsd-11.0-release/contrib/tcsh/
H A Dtw.color.c45 size_t len; member in struct:__anon5546
164 pd->len = d - *dp;
177 size_t i, len; local
197 len = Strlen(value);
203 extensions = xmalloc(len + i * sizeof(Extension));
229 0 < e->extension.len) {
275 for (i = color->len; 0 < i; i--)
284 print_color(const Char *fname, size_t len, Char suffix) argument
288 char *last = filename + len;
309 if (len >
329 print_with_color(const Char *filename, size_t len, Char suffix) argument
[all...]
/freebsd-11.0-release/contrib/unbound/sldns/
H A Dkeyraw.c30 const size_t len, int alg)
42 if (len > 0) {
56 if (len > 0) {
59 if (len > 3) {
62 return (len - exp - 3)*8;
68 return (len-exp-1)*8;
178 sldns_key_buf2dsa_raw(unsigned char* key, size_t len) argument
187 if(len == 0)
196 if(len < (size_t)1 + SHA_DIGEST_LENGTH + 3*length)
230 sldns_key_buf2rsa_raw(unsigned char* key, size_t len) argument
29 sldns_rr_dnskey_key_size_raw(const unsigned char* keydata, const size_t len, int alg) argument
354 sldns_digest_evp(unsigned char* data, unsigned int len, unsigned char* dest, const EVP_MD* md) argument
[all...]
/freebsd-11.0-release/contrib/unbound/util/storage/
H A Ddnstree.h63 size_t len; member in struct:name_tree_node
103 * @param len: length of name
109 uint8_t* name, size_t len, int labs, uint16_t dclass);
122 * @param len: length of name
128 size_t len, int labs, uint16_t dclass);
134 * @param len: length of name
140 size_t len, int labs, uint16_t dclass);
/freebsd-11.0-release/crypto/openssl/ssl/
H A Dd1_srtp.c147 SRTP_PROTECTION_PROFILE **pptr, unsigned len)
153 if ((len == strlen(p->name)) && !strncmp(p->name, profile_name, len)) {
240 int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, argument
275 *len = 2 + ct * 2 + 1;
280 int ssl_parse_clienthello_use_srtp_ext(SSL *s, unsigned char *d, int len, argument
291 if (len < 3) {
300 len -= 2;
311 if (len < (ct + 1)) {
326 len
146 find_profile_by_name(char *profile_name, SRTP_PROTECTION_PROFILE **pptr, unsigned len) argument
361 ssl_add_serverhello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen) argument
385 ssl_parse_serverhello_use_srtp_ext(SSL *s, unsigned char *d, int len, int *al) argument
[all...]
/freebsd-11.0-release/lib/libc/gen/
H A Dgetlogin.c88 int len; local
98 len = strlen(result) + 1;
99 if (len > namelen)
102 strncpy(logname, result, len);
/freebsd-11.0-release/lib/libc/locale/
H A Dmbrtoc16.c44 ssize_t len; local
68 len = mbrtoc32_l(&c32, s, n, &cs->c32_mbstate, locale);
69 if (len >= 0) {
80 return (len);
H A Dwcstod.c58 size_t len; local
78 if ((len = wcsrtombs_l(NULL, &wcp, 0, &mbs, locale)) == (size_t)-1) {
83 if ((buf = malloc(len + 1)) == NULL)
86 wcsrtombs_l(buf, &wcp, len + 1, &mbs, locale);
H A Dwcstof.c52 size_t len; local
60 if ((len = wcsrtombs_l(NULL, &wcp, 0, &mbs, locale)) == (size_t)-1) {
65 if ((buf = malloc(len + 1)) == NULL)
68 wcsrtombs_l(buf, &wcp, len + 1, &mbs, locale);
H A Dwcstold.c52 size_t len; local
63 if ((len = wcsrtombs_l(NULL, &wcp, 0, &mbs, locale)) == (size_t)-1) {
68 if ((buf = malloc(len + 1)) == NULL)
71 wcsrtombs_l(buf, &wcp, len + 1, &mbs, locale);
/freebsd-11.0-release/crypto/openssh/
H A Dbitmap.c32 size_t len; /* number of words allocated */ member in struct:bitmap
47 ret->len = 1;
56 explicit_bzero(b->d, b->len);
65 memset(b->d, 0, b->len * BITMAP_BYTES);
72 if (b->top >= b->len)
74 if (b->len == 0 || (n / BITMAP_BITS) > b->top)
85 if (b->top >= b->len || n > BITMAP_MAX)
88 if (b->len < nlen) {
92 memset(b->d + b->len, 0, (nlen - b->len) * BITMAP_BYTE
[all...]
H A Dcipher-bf1.c78 LIBCRYPTO_EVP_INL_TYPE len)
82 swap_bytes(in, out, len);
83 ret = (*orig_bf)(ctx, out, out, len);
84 swap_bytes(out, out, len);
77 bf_ssh1_cipher(EVP_CIPHER_CTX *ctx, u_char *out, const u_char *in, LIBCRYPTO_EVP_INL_TYPE len) argument
H A Dxmalloc.c83 size_t len; local
86 len = strlen(str) + 1;
87 cp = xmalloc(len);
88 strlcpy(cp, str, len);
/freebsd-11.0-release/crypto/openssh/openbsd-compat/
H A Dbsd-closefrom.c76 int len; local
79 len = snprintf(fdpath, sizeof(fdpath), "/proc/%ld/fd", (long)getpid());
80 if (len > 0 && (size_t)len <= sizeof(fdpath) && (dirp = opendir(fdpath))) {
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DDataStream.h29 virtual size_t GetBytes(unsigned char *buf, size_t len) = 0;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Headers/
H A Dammintrin.h33 /// integer vector operand at the index idx and of the length len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
47 /// \param len
58 #define _mm_extracti_si64(x, len, idx) \
60 (char)(len), (char)(idx)))
91 /// index idx and of the length len.
96 /// __m128i _mm_inserti_si64(__m128i x, __m128i y, const int len,
106 /// are defined by the length len and by the index idx specifying the least
110 /// bits are the least significant bits of operand y of length len.
111 /// \param len
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnMIValueList.cpp161 size_t len = m_strValue.size(); local
162 if ( (len > 1) && (m_strValue[0] == '[') && (m_strValue[len - 1] == ']') )
163 m_strValue = m_strValue.substr(1, len - 2);
/freebsd-11.0-release/contrib/ncurses/form/
H A Dfld_dup.c82 size_t i, len; local
84 len = Total_Buffer_Size(New_Field);
85 if ((New_Field->buf = (FIELD_CELL *)malloc(len)))
87 for (i = 0; i < len; ++i)
/freebsd-11.0-release/contrib/netbsd-tests/
H A Dh_macros.h72 tests_makegarbage(void *space, size_t len) argument
77 while (len >= sizeof(randval)) {
79 len -= sizeof(*sb);
82 memcpy(sb, &randval, len);
/freebsd-11.0-release/contrib/gcclibs/libcpp/include/
H A Dsymtab.h30 unsigned int len; local
34 #define HT_LEN(NODE) ((NODE)->len)
81 #define HT_HASHFINISH(r, len) ((r) + (len))
/freebsd-11.0-release/contrib/gcclibs/libiberty/
H A Dlrealpath.c141 DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename); local
142 if (len == 0 || len > MAX_PATH - 1)
149 CharLowerBuff (buf, len);
/freebsd-11.0-release/contrib/gdb/gdb/
H A Duser-regs.h49 const char *str, int len);
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_crc32.h41 crc32(unsigned long crc, const void *_p, size_t len) argument
65 for (;len >= 8; len -= 8) {
75 while (len--)

Completed in 244 milliseconds

<<31323334353637383940>>