/external/liblzf/cs/ |
CLZF.cs | 153 public int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len) 165 //byte *in_end = ip + in_len; 175 if (iidx < in_len - 2) 183 && iidx + 4 < in_len 192 UInt32 maxlen = (UInt32)in_len - iidx - len; 239 else if (iidx == in_len) 277 public int lzf_decompress ( byte[] in_data, int in_len, byte[] out_data, int out_len) 331 while (iidx < in_len);
|
/external/liblzf/src/org/liblzf/ |
CLZF.java | 153 public static int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len) 165 //byte *in_end = ip + in_len; 175 if (iidx < in_len - 2) 183 && iidx + 4 < in_len 192 int maxlen = in_len - iidx - len; 239 else if (iidx == in_len) 277 public static int lzf_decompress ( byte[] in_data, int in_len, byte[] out_data, int out_len) 331 while (iidx < in_len);
|
/external/speex/include/speex/ |
speex_resampler.h | 160 * @param in_len Number of input samples in the input buffer. Returns the 168 spx_uint32_t *in_len, 177 * @param in_len Number of input samples in the input buffer. Returns the number 185 spx_uint32_t *in_len, 192 * @param in_len Number of input samples in the input buffer. Returns the number 200 spx_uint32_t *in_len, 207 * @param in_len Number of input samples in the input buffer. Returns the number 215 spx_uint32_t *in_len,
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_record.h | 68 const u8 *in_data, size_t in_len,
|
/external/speex/libspeex/ |
resample.c | 332 static int resampler_basic_direct_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) 346 while (!(last_sample >= (spx_int32_t)*in_len || out_sample >= (spx_int32_t)*out_len)) 384 static int resampler_basic_direct_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) 398 while (!(last_sample >= (spx_int32_t)*in_len || out_sample >= (spx_int32_t)*out_len)) 433 static int resampler_basic_interpolate_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) 446 while (!(last_sample >= (spx_int32_t)*in_len || out_sample >= (spx_int32_t)*out_len)) 496 static int resampler_basic_interpolate_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) 509 while (!(last_sample >= (spx_int32_t)*in_len || out_sample >= (spx_int32_t)*out_len)) 802 static int speex_resampler_process_native(SpeexResamplerState *st, spx_uint32_t channel_index, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) 813 out_sample = st->resampler_ptr(st, channel_index, mem, in_len, out, out_len) [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_tls_common.c | 402 size_t tls_in_len, in_len; local 405 in_len = in_data ? wpabuf_len(in_data) : 0; 407 if (tls_in_len + in_len == 0) { 410 "tls_in_left=%lu tls_in_len=%lu in_len=%lu", 413 (unsigned long) in_len); 418 if (tls_in_len + in_len > 65536) { 429 if (in_len > data->tls_in_left) { 437 if (wpabuf_resize(&data->tls_in, in_len) < 0) { 445 data->tls_in_left -= in_len; 502 * @in_len: Length of in_dat [all...] |
eap_tls_common.h | 102 u8 id, const u8 *in_data, size_t in_len,
|
/external/chromium_org/third_party/openssl/openssl/crypto/chacha/ |
chacha.h | 72 /* CRYPTO_chacha_20 encrypts |in_len| bytes from |in| with the given key and 76 const unsigned char *in, size_t in_len,
|
/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305.h | 77 /* poly1305_update processes |in_len| bytes from |in|. It can be called zero or 81 size_t in_len);
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
chacha.h | 72 /* CRYPTO_chacha_20 encrypts |in_len| bytes from |in| with the given key and 76 const unsigned char *in, size_t in_len,
|
poly1305.h | 77 /* poly1305_update processes |in_len| bytes from |in|. It can be called zero or 81 size_t in_len);
|
evp.h | [all...] |
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpegstream.cpp | 233 int32_t in_len = static_cast<int32_t>(inCount); local 241 written = w_ptr->write(in_bytes, in_len); 258 int32_t in_len = static_cast<int32_t>(inCount); local 265 read = r_ptr->read(in_bytes, off, in_len);
|
/external/liblzf/ |
lzf_c.c | 99 lzf_compress (const void *const in_data, unsigned int in_len, 111 const u8 *in_end = ip + in_len; 130 if (!in_len || !out_len)
|
lzf_d.c | 56 lzf_decompress (const void *const in_data, unsigned int in_len, 61 u8 const *const in_end = ip + in_len;
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
e_aes.c | [all...] |
evp.h | [all...] |
evp_locl.h | 365 const unsigned char *in, size_t in_len, 371 const unsigned char *in, size_t in_len,
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_fast.c | 966 u8 *in_data, size_t in_len) 985 if (in_len > sizeof(*hdr) && *pos == EAP_TYPE_NAK) { 986 left = in_len - sizeof(*hdr); 1014 wpabuf_set(&buf, in_data, in_len); 1088 u8 *in_data, size_t in_len) 1094 if (in_len < (int) sizeof(*hdr)) { 1096 "EAP frame (len=%lu)", (unsigned long) in_len); 1101 if (len > in_len) { 1104 (unsigned long) in_len, (unsigned long) len); [all...] |
/external/chromium/net/http/ |
http_auth_handler_ntlm_portable.cc | 391 static int ParseType2Msg(const void* in_buf, uint32 in_len, Type2Msg* msg) { 401 if (in_len < NTLM_TYPE2_HEADER_LEN) 424 if (offset + target_len > offset && offset + target_len <= in_len) { 460 uint32 in_len, 468 rv = ParseType2Msg(in_buf, in_len, &msg);
|
/external/chromium_org/net/http/ |
http_auth_handler_ntlm_portable.cc | 378 static int ParseType2Msg(const void* in_buf, uint32 in_len, Type2Msg* msg) { 388 if (in_len < NTLM_TYPE2_HEADER_LEN) 411 if (offset + target_len > offset && offset + target_len <= in_len) { 447 uint32 in_len, 455 rv = ParseType2Msg(in_buf, in_len, &msg);
|
/external/chromium_org/third_party/openssl/patches.chromium/ |
0007-chacha.patch | 962 ++ const unsigned char *in, size_t in_len, 969 ++ if (max_out_len < in_len + gcm_ctx->tag_len) 984 ++ in_len - bulk, gcm_ctx->ctr)) 990 ++ in_len - bulk)) 994 ++ CRYPTO_gcm128_tag(&gcm, out + in_len, gcm_ctx->tag_len); 995 ++ return in_len + gcm_ctx->tag_len; 1001 ++ const unsigned char *in, size_t in_len, 1010 ++ if (in_len < gcm_ctx->tag_len) 1016 ++ out_len = in_len - gcm_ctx->tag_len; 1033 ++ in_len-bulk-gcm_ctx->tag_len [all...] |
/system/core/adb/ |
jdwp_service.c | 113 int in_len; /* number from JDWP process */ member in struct:JdwpProcess 217 proc->in_len = 0; 242 char* p = proc->in_buff + proc->in_len; 243 int size = 4 - proc->in_len; 263 proc->in_len += len;
|
/external/chromium_org/third_party/openssl/openssl/patches/ |
neon_runtime.patch | 55 + const unsigned char *in, size_t in_len, 73 + CRYPTO_chacha_20_neon(out, in, in_len, key, nonce, counter); 1027 + size_t in_len); 1057 + CRYPTO_poly1305_update_neon(statep, in, in_len); 1106 -void CRYPTO_poly1305_update(poly1305_state *state, const unsigned char *in, size_t in_len) 1108 + size_t in_len)
|
/external/sqlite/android/ |
PhoneNumberUtils.cpp | 441 int in_len = strlen(in); local 444 for (int i = in_len; --i >= 0;) {
|