Searched defs:out_len (Results 1 - 25 of 120) sorted by relevance

12345

/external/kernel-headers/original/uapi/linux/
H A Dmic_ioctl.h33 * @out_len: The aggregate of the total length written to or read from
45 __u32 out_len; member in struct:mic_copy_desc
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_var_interface.cc30 const char* FakeVarInterface::VarToUtf8(PP_Var var, uint32_t* out_len) { argument
32 *out_len = 0;
38 *out_len = 0;
45 *out_len = var_data->string_value.length();
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dprintf.c72 int out_len, ret; local
75 out_len = vsnprintf(buf, sizeof(buf), format, args);
78 if (out_len >= sizeof(buf)) {
79 const int requested_len = out_len;
91 out_len = vsnprintf(out, requested_len + 1, format, args);
93 assert(out_len == requested_len);
98 ret = BIO_write(bio, out, out_len);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstack_trace_table.cc115 const int out_len = bucket_total_ * 3 + depth_total_ + 1; local
116 void** out = new void*[out_len];
120 out_len * sizeof(*out));
139 ASSERT(idx == out_len);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstack_trace_table.cc115 const int out_len = bucket_total_ * 3 + depth_total_ + 1; local
116 void** out = new void*[out_len];
120 out_len * sizeof(*out));
139 ASSERT(idx == out_len);
/external/liblzf/
H A Dlzf_d.c57 void *out_data, unsigned int out_len)
62 u8 *const out_end = op + out_len;
56 lzf_decompress(const void *const in_data, unsigned int in_len, void *out_data, unsigned int out_len) argument
/external/chromium_org/net/quic/
H A Dquic_config_test.cc73 size_t out_len; local
74 error = msg.GetTaglist(kCGST, &out, &out_len);
75 EXPECT_EQ(1u, out_len);
/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
H A Dnull_auth.c56 null_auth_alloc(auth_t **a, int key_len, int out_len) { argument
61 debug_print(mod_auth, " tag length %d", out_len);
72 (*a)->out_len = out_len;
73 (*a)->prefix_len = out_len;
H A Dhmac.c57 hmac_alloc(auth_t **a, int key_len, int out_len) { argument
62 debug_print(mod_hmac, " tag length %d", out_len);
72 if (out_len > 20)
84 (*a)->out_len = out_len;
/external/srtp/crypto/hash/
H A Dnull_auth.c56 null_auth_alloc(auth_t **a, int key_len, int out_len) { argument
61 debug_print(mod_auth, " tag length %d", out_len);
72 (*a)->out_len = out_len;
73 (*a)->prefix_len = out_len;
H A Dhmac.c57 hmac_alloc(auth_t **a, int key_len, int out_len) { argument
62 debug_print(mod_hmac, " tag length %d", out_len);
72 if (out_len > 20)
84 (*a)->out_len = out_len;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c21 * @out_len: Pointer to output length variable, or %NULL if not used
22 * Returns: Allocated buffer of out_len bytes of encoded data,
27 * not included in out_len.
30 size_t *out_len)
81 if (out_len)
82 *out_len = pos - out;
91 * @out_len: Pointer to output length variable
92 * Returns: Allocated buffer of out_len bytes of decoded data,
98 size_t *out_len)
153 *out_len
29 base64_encode(const unsigned char *src, size_t len, size_t *out_len) argument
97 base64_decode(const unsigned char *src, size_t len, size_t *out_len) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c21 * @out_len: Pointer to output length variable, or %NULL if not used
22 * Returns: Allocated buffer of out_len bytes of encoded data,
27 * not included in out_len.
30 size_t *out_len)
81 if (out_len)
82 *out_len = pos - out;
91 * @out_len: Pointer to output length variable
92 * Returns: Allocated buffer of out_len bytes of decoded data,
98 size_t *out_len)
153 *out_len
29 base64_encode(const unsigned char *src, size_t len, size_t *out_len) argument
97 base64_decode(const unsigned char *src, size_t len, size_t *out_len) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c21 * @out_len: Pointer to output length variable, or %NULL if not used
22 * Returns: Allocated buffer of out_len bytes of encoded data,
27 * not included in out_len.
30 size_t *out_len)
81 if (out_len)
82 *out_len = pos - out;
91 * @out_len: Pointer to output length variable
92 * Returns: Allocated buffer of out_len bytes of decoded data,
98 size_t *out_len)
153 *out_len
29 base64_encode(const unsigned char *src, size_t len, size_t *out_len) argument
97 base64_decode(const unsigned char *src, size_t len, size_t *out_len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
H A Dber.c192 int CBS_asn1_ber_to_der(CBS *in, uint8_t **out, size_t *out_len) { argument
204 *out_len = 0;
214 return CBB_finish(&cbb, out, out_len);
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Daead.c69 int EVP_AEAD_CTX_seal(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, argument
85 if (ctx->aead->seal(ctx, out, out_len, max_out_len, nonce, nonce_len, in,
94 *out_len = 0;
98 int EVP_AEAD_CTX_open(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, argument
107 if (ctx->aead->open(ctx, out, out_len, max_out_len, nonce, nonce_len, in,
117 *out_len = 0;
/external/chromium_org/third_party/boringssl/src/crypto/hmac/
H A Dhmac_test.c126 unsigned out_len; local
134 test->data_len, out, &out_len)) {
140 p = to_hex(out, out_len);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dexternalhmac.cc88 err_status_t external_hmac_alloc(auth_t** a, int key_len, int out_len) { argument
97 if (out_len > 20)
112 (*a)->out_len = out_len;
/external/chromium_org/third_party/webrtc/base/
H A Dmessagedigest.cc70 void* output, size_t out_len) {
72 return digest->Finish(output, out_len);
76 void* output, size_t out_len) {
79 ComputeDigest(digest.get(), input, in_len, output, out_len) :
110 void* output, size_t out_len) {
141 return digest->Finish(output, out_len);
146 void* output, size_t out_len) {
152 input, in_len, output, out_len);
69 ComputeDigest(MessageDigest* digest, const void* input, size_t in_len, void* output, size_t out_len) argument
75 ComputeDigest(const std::string& alg, const void* input, size_t in_len, void* output, size_t out_len) argument
107 ComputeHmac(MessageDigest* digest, const void* key, size_t key_len, const void* input, size_t in_len, void* output, size_t out_len) argument
144 ComputeHmac(const std::string& alg, const void* key, size_t key_len, const void* input, size_t in_len, void* output, size_t out_len) argument
H A Dtransformadapter.cc65 size_t out_len = buffer_len; local
67 buffer, &out_len,
71 // Note: Don't signal SR_EOS this iteration, unless out_len is zero
77 } else if ((out_len == 0) && (state_ == ST_FLUSHING)) {
88 if (out_len == 0)
92 *read = out_len;
115 size_t out_len = sizeof(buffer_) - len_; local
117 buffer_ + len_, &out_len,
131 len_ = out_len;
/external/liblzf/cs/
H A DCLZF.cs153 public int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len) argument
166 //byte *out_end = op + out_len;
195 if (oidx + lit + 1 + 3 >= out_len)
248 if (oidx + 1 + MAX_LIT >= out_len)
261 if (oidx + lit + 1 >= out_len)
277 public int lzf_decompress ( byte[] in_data, int in_len, byte[] out_data, int out_len) argument
290 if (oidx + ctrl > out_len)
311 if (oidx + len + 2 > out_len)
/external/liblzf/src/org/liblzf/
H A DCLZF.java153 public static int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len) argument
166 //byte *out_end = op + out_len;
195 if (oidx + lit + 1 + 3 >= out_len)
248 if (oidx + 1 + MAX_LIT >= out_len)
261 if (oidx + lit + 1 >= out_len)
277 public static int lzf_decompress ( byte[] in_data, int in_len, byte[] out_data, int out_len) argument
290 if (oidx + ctrl > out_len)
311 if (oidx + len + 2 > out_len)
/external/chromium_org/crypto/
H A Dencryptor_openssl.cc118 int out_len; local
119 if (!EVP_CipherUpdate(ctx.get(), out_ptr, &out_len,
127 if (!EVP_CipherFinal_ex(ctx.get(), out_ptr + out_len, &tail_len))
130 out_len += tail_len;
131 DCHECK_LE(out_len, static_cast<int>(output_size));
132 result.resize(out_len);
/external/chromium_org/net/quic/crypto/
H A Daes_128_gcm_12_decrypter_nss.cc73 unsigned int* out_len,
82 return pk11_decrypt_func(key, mechanism, param, out, out_len, max_len, enc,
204 *out_len = output_len;
69 My_Decrypt(PK11SymKey* key, CK_MECHANISM_TYPE mechanism, SECItem* param, unsigned char* out, unsigned int* out_len, unsigned int max_len, const unsigned char* enc, unsigned int enc_len) argument
H A Daes_128_gcm_12_encrypter_nss.cc73 unsigned int* out_len,
82 return pk11_encrypt_func(key, mechanism, param, out, out_len, max_len, data,
203 *out_len = output_len + Aes128Gcm12Encrypter::kAuthTagSize;
69 My_Encrypt(PK11SymKey* key, CK_MECHANISM_TYPE mechanism, SECItem* param, unsigned char* out, unsigned int* out_len, unsigned int max_len, const unsigned char* data, unsigned int data_len) argument

Completed in 1902 milliseconds

12345