Searched refs:length (Results 51 - 75 of 5377) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dprintf.c101 size_t length; local
102 char *result = libintl_vasnprintf (NULL, &length, format, args);
106 size_t written = fwrite (result, 1, length, stream);
108 if (written == length)
110 if (length > INT_MAX)
113 retval = length;
161 size_t length = (size_t) ~0 / (4 * sizeof (char)); local
162 char *result = libintl_vasnprintf (resultbuf, &length, format, args);
168 if (length > INT_MAX)
174 return length;
203 libintl_vsnprintf(char *resultbuf, size_t length, const char *format, va_list args) argument
234 libintl_snprintf(char *resultbuf, size_t length, const char *format, ...) argument
253 size_t length; local
320 size_t length; local
377 libintl_vswprintf(wchar_t *resultbuf, size_t length, const wchar_t *format, va_list args) argument
414 libintl_swprintf(wchar_t *resultbuf, size_t length, const wchar_t *format, ...) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dcbcmac.cpp9 void CBC_MAC_Base::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params) argument
11 AccessCipher().SetKey(key, length, params);
16 void CBC_MAC_Base::Update(const byte *input, size_t length) argument
20 while (m_counter && length)
25 length--;
28 if (length >= blockSize)
30 size_t leftOver = AccessCipher().AdvancedProcessBlocks(m_reg, input, m_reg, length, BlockTransformation::BT_DontIncrementInOutPointers|BlockTransformation::BT_XorInput);
31 input += (length - leftOver);
32 length = leftOver;
35 while (length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/dsi/
H A Ddsi_write.c64 size_t length; local
66 if (((length = MIN(buflen, dsi->datasize)) > 0) &&
67 ((length = dsi_stream_read(dsi, buf, length)) > 0)) {
68 dsi->datasize -= length;
69 return length;
77 size_t length; local
80 length = dsi_stream_read(dsi, dsi->data,
82 if (length > 0)
83 dsi->datasize -= length;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libsmb/
H A Dntlmssp_sign.c45 MD5Update(&ctx3, session_key.data, session_key.length);
56 const uchar *data, size_t length,
76 (unsigned int)length,
87 (unsigned int)length,
117 dump_data_pw("ntlmssp v2 sig ", sig->data, sig->length);
121 crc = crc32_calc_buffer((const char *)data, length);
130 smb_arc4_crypt(ntlmssp_state->ntlmv1_arc4_state, sig->data+4, sig->length-4);
136 const uchar *data, size_t length,
147 if (!ntlmssp_state->session_key.length) {
153 data, length,
55 ntlmssp_make_packet_signature(NTLMSSP_STATE *ntlmssp_state, const uchar *data, size_t length, const uchar *whole_pdu, size_t pdu_length, enum ntlmssp_direction direction, DATA_BLOB *sig, BOOL encrypt_sig) argument
135 ntlmssp_sign_packet(NTLMSSP_STATE *ntlmssp_state, const uchar *data, size_t length, const uchar *whole_pdu, size_t pdu_length, DATA_BLOB *sig) argument
166 ntlmssp_check_packet(NTLMSSP_STATE *ntlmssp_state, const uchar *data, size_t length, const uchar *whole_pdu, size_t pdu_length, const DATA_BLOB *sig) argument
234 ntlmssp_seal_packet(NTLMSSP_STATE *ntlmssp_state, uchar *data, size_t length, uchar *whole_pdu, size_t pdu_length, DATA_BLOB *sig) argument
300 ntlmssp_unseal_packet(NTLMSSP_STATE *ntlmssp_state, uchar *data, size_t length, uchar *whole_pdu, size_t pdu_length, DATA_BLOB *sig) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dutil.c38 id3_length_t id3_util_unsynchronise(id3_byte_t *data, id3_length_t length) argument
41 id3_byte_t *end = data + length;
44 if (length == 0)
66 return length + bytes;
73 id3_length_t id3_util_deunsynchronise(id3_byte_t *data, id3_length_t length) argument
75 id3_byte_t const *old, *end = data + length;
78 if (length == 0)
96 id3_byte_t *id3_util_compress(id3_byte_t const *data, id3_length_t length, argument
101 *newlength = length + 12;
106 if (compress2(compressed, newlength, data, length,
128 id3_util_decompress(id3_byte_t const *data, id3_length_t length, id3_length_t newlength) argument
[all...]
H A Dparse.c113 id3_latin1_t *id3_parse_latin1(id3_byte_t const **ptr, id3_length_t length, argument
120 end = memchr(*ptr, 0, length);
122 end = *ptr + length;
124 length = end - *ptr;
128 latin1 = malloc(length + 1);
130 memcpy(latin1, *ptr, length);
131 latin1[length] = 0;
143 *ptr += length + terminated;
148 id3_ucs4_t *id3_parse_string(id3_byte_t const **ptr, id3_length_t length, argument
156 ucs4 = id3_latin1_deserialize(ptr, length);
182 id3_parse_binary(id3_byte_t const **ptr, id3_length_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dutil.c38 id3_length_t id3_util_unsynchronise(id3_byte_t *data, id3_length_t length) argument
41 id3_byte_t *end = data + length;
44 if (length == 0)
66 return length + bytes;
73 id3_length_t id3_util_deunsynchronise(id3_byte_t *data, id3_length_t length) argument
75 id3_byte_t const *old, *end = data + length;
78 if (length == 0)
96 id3_byte_t *id3_util_compress(id3_byte_t const *data, id3_length_t length, argument
101 *newlength = length + 12;
106 if (compress2(compressed, newlength, data, length,
128 id3_util_decompress(id3_byte_t const *data, id3_length_t length, id3_length_t newlength) argument
[all...]
H A Dparse.c113 id3_latin1_t *id3_parse_latin1(id3_byte_t const **ptr, id3_length_t length, argument
120 end = memchr(*ptr, 0, length);
122 end = *ptr + length;
124 length = end - *ptr;
128 latin1 = malloc(length + 1);
130 memcpy(latin1, *ptr, length);
131 latin1[length] = 0;
143 *ptr += length + terminated;
148 id3_ucs4_t *id3_parse_string(id3_byte_t const **ptr, id3_length_t length, argument
156 ucs4 = id3_latin1_deserialize(ptr, length);
182 id3_parse_binary(id3_byte_t const **ptr, id3_length_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dmemxfrm.c32 size_t length; local
50 length = 0;
74 k = strxfrm (result + length, p, allocated - length);
77 if (k >= allocated - length)
95 length += k;
103 result[length] = '\0';
104 length++;
109 if (result != resultbuf && (length > 0 ? length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dcss-url.c103 Also adjust the starting position and length of the string.
111 get_uri_string (const char *at, int *pos, int *length) argument
115 strncpy(buf,at + *pos, *length);
116 buf[*length] = '\0';
123 *length -= 5; /* url() */
128 (*length)--;
131 while (isspace (at[*pos + *length - 1]))
133 (*length)--;
139 *length -= 2;
142 uri = xmalloc (*length
158 int pos, length; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-netbios.c49 netbios_print(struct p8022Hdr *nb, u_int length) argument
51 if (length < p8022Size) {
52 (void)printf(" truncated-netbios %d", length);
68 netbios_decode(nb, (u_char *)nb + p8022Size, length - p8022Size);
86 /* take length from ipx header */
87 length = EXTRACT_16BITS(&ipx->length);
89 ipx_decode(ipx, (u_char *)ipx + ipxSize, length - ipxSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/aes/
H A Daes_cfb.c62 size_t length, const AES_KEY *key,
66 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
72 size_t length, const AES_KEY *key,
75 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
80 size_t length, const AES_KEY *key,
83 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
61 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
71 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
79 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/aes/
H A Daes_cfb.c62 size_t length, const AES_KEY *key,
66 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
72 size_t length, const AES_KEY *key,
75 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
80 size_t length, const AES_KEY *key,
83 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
61 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
71 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
79 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/sctp/
H A Dchecksum.h49 static inline __u32 sctp_crc32c(__u32 crc, u8 *buffer, u16 length) argument
51 return crc32c(crc, buffer, length);
54 static inline __u32 sctp_start_cksum(__u8 *buffer, __u16 length) argument
71 length - sizeof(struct sctphdr));
75 static inline __u32 sctp_update_cksum(__u8 *buffer, __u16 length, __u32 crc32) argument
77 return sctp_crc32c(crc32, buffer, length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/camellia/
H A Dcmll_cfb.c118 size_t length, const CAMELLIA_KEY *key,
122 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
128 size_t length, const CAMELLIA_KEY *key,
131 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
136 size_t length, const CAMELLIA_KEY *key,
139 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
117 Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
127 Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
135 Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/camellia/
H A Dcmll_cfb.c118 size_t length, const CAMELLIA_KEY *key,
122 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
128 size_t length, const CAMELLIA_KEY *key,
131 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
136 size_t length, const CAMELLIA_KEY *key,
139 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
117 Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
127 Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
135 Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DMultipleEntry.java31 setUserBuffer((data != null) ? (data.length - offset) : 0, true);
38 public void setUserBuffer(final int length, final boolean usermem) { argument
41 super.setUserBuffer(length, usermem);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dcelp_math.h33 * @param length number of elements
37 float (*dot_productf)(const float* a, const float* b, int length);
81 * @param length number of elements
85 int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length);
91 * @param length number of elements
95 float ff_dot_productf(const float* a, const float* b, int length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistdio/
H A Dtest-u16-vasnprintf2.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
47 ASSERT (length == u16_strlen (result));
51 size_t length; local
53 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
60 ASSERT (length == u16_strlen (result));
64 size_t length; local
66 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
73 ASSERT (length == u16_strlen (result));
77 size_t length; local
[all...]
H A Dtest-u16-vasnprintf3.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
47 ASSERT (length == u16_strlen (result));
51 size_t length; local
53 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
60 ASSERT (length == u16_strlen (result));
64 size_t length; local
66 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
73 ASSERT (length == u16_strlen (result));
77 size_t length; local
[all...]
H A Dtest-u32-vasnprintf2.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
47 ASSERT (length == u32_strlen (result));
51 size_t length; local
53 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
60 ASSERT (length == u32_strlen (result));
64 size_t length; local
66 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
73 ASSERT (length == u32_strlen (result));
77 size_t length; local
[all...]
H A Dtest-u32-vasnprintf3.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
47 ASSERT (length == u32_strlen (result));
51 size_t length; local
53 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
60 ASSERT (length == u32_strlen (result));
64 size_t length; local
66 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
73 ASSERT (length == u32_strlen (result));
77 size_t length; local
[all...]
H A Dtest-u8-vasnprintf2.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
46 ASSERT (length == u8_strlen (result));
50 size_t length; local
52 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
56 ASSERT (length == u8_strlen (result));
60 size_t length; local
62 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
66 ASSERT (length == u8_strlen (result));
70 size_t length; local
[all...]
H A Dtest-u8-vasnprintf3.c40 size_t length; local
42 my_asnprintf (NULL, &length, "%s %d", locale_string, 33, 44, 55);
46 ASSERT (length == u8_strlen (result));
50 size_t length; local
52 my_asnprintf (NULL, &length, "%10s %d", locale_string, 33, 44, 55);
56 ASSERT (length == u8_strlen (result));
60 size_t length; local
62 my_asnprintf (NULL, &length, "%-10s %d", locale_string, 33, 44, 55);
66 ASSERT (length == u8_strlen (result));
70 size_t length; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistr/
H A Du16-to-u32.c38 size_t length; local
50 length = 0;
53 If length > 0, then result != NULL. */
72 if (length + 1 > allocated)
77 if (length + 1 > allocated)
78 allocated = length + 1;
92 if (result == resultbuf && length > 0)
94 length * sizeof (DST_UNIT));
97 result[length++] = uc;
100 if (length
[all...]

Completed in 218 milliseconds

1234567891011>>