HomeSort by relevance Sort by last modified time
    Searched refs:out_len (Results 151 - 175 of 235) sorted by null

1 2 3 4 5 67 8 910

  /external/boringssl/src/crypto/bio/
bio.c 469 * |OPENSSL_free|), |*out_len| is set to its length and one is returned. The
475 static int bio_read_all(BIO *bio, uint8_t **out, size_t *out_len,
503 *out_len = done;
526 int BIO_read_asn1(BIO *bio, uint8_t **out, size_t *out_len, size_t max_len) {
552 return bio_read_all(bio, out, out_len, header, kInitialHeaderLen,
592 *out_len = len;
bio_test.cc 213 size_t out_len; local
214 int ok = BIO_read_asn1(bio.get(), &out, &out_len, param.max_len);
222 EXPECT_EQ(Bytes(input.data(), param.expected_len), Bytes(out, out_len));
bio_mem.c 304 size_t *out_len) {
312 *out_len = b->length;
  /external/syslinux/gpxe/src/net/
tls.c 160 * @v out_len Length of output buffer
166 void *out, size_t out_len,
192 while ( out_len ) {
204 if ( frag_len > out_len )
205 frag_len = out_len;
217 out_len -= frag_len;
228 * @v out_len Length of output buffer
232 void *out, size_t out_len, ... ) {
238 uint8_t out_md5[out_len];
239 uint8_t out_sha1[out_len];
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h     [all...]
bytestring.h 57 * |*out_len|. If |*out_ptr| is not NULL, the contents are freed with
61 OPENSSL_EXPORT int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len);
337 * malloced buffer and |*out_len| to the length of that buffer. The caller
344 OPENSSL_EXPORT int CBB_finish(CBB *cbb, uint8_t **out_data, size_t *out_len);
  /external/pdfium/samples/
pdfium_test.cc 136 int out_len = width * height; local
137 if (out_len > INT_MAX / 3)
139 out_len *= 3;
149 std::vector<char> result(out_len);
162 fwrite(result.data(), out_len, 1, fp);
249 int out_len = stride * height; local
250 if (out_len > INT_MAX / 3)
270 file_header.bfSize = sizeof(file_header) + bmi.bmiHeader.biSize + out_len;
271 file_header.bfOffBits = file_header.bfSize - out_len;
275 fwrite(buffer, out_len, 1, fp)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/rsa/
padding.c 96 int RSA_padding_check_PKCS1_type_1(uint8_t *out, size_t *out_len,
144 *out_len = from_len - pad;
190 int RSA_padding_check_PKCS1_type_2(uint8_t *out, size_t *out_len,
250 *out_len = msg_len;
384 int RSA_padding_check_PKCS1_OAEP_mgf1(uint8_t *out, size_t *out_len,
468 *out_len = mlen;
  /external/boringssl/src/tool/
speed.cc 241 size_t out_len;
242 return EVP_AEAD_CTX_seal(ctx.get(), out, &out_len,
251 size_t out_len; local
252 EVP_AEAD_CTX_seal(ctx.get(), out, &out_len, chunk_len + overhead_len,
256 &nonce, &ad, out_len]() -> bool {
259 nonce.get(), nonce_len, out, out_len,
  /frameworks/base/tools/aapt2/compile/
PngCrunch.cpp 112 size_t out_len; local
114 if (!out->Next(&out_buffer, &out_len)) {
127 const size_t bytes_written = std::min(out_len, len);
135 out_len -= bytes_written;
139 if (out_len > 0) {
140 out->BackUp(out_len);
  /external/boringssl/src/crypto/bytestring/
cbs.c 55 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) {
58 *out_len = 0;
67 *out_len = cbs->len;
cbb.c 169 int CBB_finish(CBB *cbb, uint8_t **out_data, size_t *out_len) {
178 if (cbb->base->can_resize && (out_data == NULL || out_len == NULL)) {
179 /* |out_data| and |out_len| can only be NULL if the CBB is fixed. */
186 if (out_len != NULL) {
187 *out_len = cbb->base->len;
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-hangul.cc 202 if (start < end && end == buffer->out_len)
236 start = end = buffer->out_len;
240 start = buffer->out_len; /* Remember current position as a potential syllable start;
  /external/ltp/testcases/kernel/device-drivers/agp/kernel_space/
tagp.c 165 if (tif.out_len > 0) {
166 outparms = (caddr_t *) kmalloc(tif.out_len, GFP_KERNEL);
259 if (copy_to_user(tif.out_data, outparms, tif.out_len)) {
  /external/ltp/testcases/kernel/device-drivers/base/tbase/
tbase.c 280 if (tif.out_len > 0) {
281 outparms = (caddr_t *) kmalloc(tif.out_len, GFP_KERNEL);
380 if (copy_to_user(tif.out_data, outparms, tif.out_len)) {
  /external/syslinux/gpxe/src/util/
nrv2b.c 1041 uint8_t *out, unsigned long *out_len,
1219 *out_len = c->bb_op - out;
1239 unsigned long in_len, out_len; local
1279 out_len = in_len + (in_len/8) + 256;
1280 out = malloc(out_len);
1287 r = ucl_nrv2b_99_compress(in, in_len, out, &out_len, 0 );
1291 tw = htonl(out_len);
1296 if (fwrite(out, out_len, 1, outfile) != 1) {
1308 Fprintf((stdout, "output size %ld bytes\n", out_len));
1309 Fprintf((stdout, "input/output %.3f\n", (double)in_len / out_len));
    [all...]
  /external/boringssl/src/crypto/cipher_extra/
e_ssl3.c 37 static int ssl3_mac(AEAD_SSL3_CTX *ssl3_ctx, uint8_t *out, unsigned *out_len,
69 !EVP_DigestFinal_ex(&md_ctx, out, out_len)) {
232 size_t *out_len, size_t max_out_len,
316 *out_len = data_len;
  /external/syslinux/lzo/src/
lzo1x_9x.c 90 lzo_bytep out, lzo_uintp out_len,
522 lzo_bytep out, lzo_uintp out_len,
773 *out_len = pd(op, out);
796 lzo_bytep out, lzo_uintp out_len,
828 return lzo1x_999_compress_internal(in, in_len, out, out_len, wrkmem,
849 lzo_bytep out, lzo_uintp out_len,
853 return lzo1x_999_compress_level(in, in_len, out, out_len, wrkmem,
859 lzo_bytep out, lzo_uintp out_len,
862 return lzo1x_999_compress_level(in, in_len, out, out_len, wrkmem,
  /external/wpa_supplicant_8/src/tls/
tlsv1_server.c 129 * @out_len: Length of the output buffer.
134 size_t *out_len)
191 msg = tlsv1_server_handshake_write(conn, out_len);
206 out_len);
219 * @out_len: Maximum out_data length
227 u8 *out_data, size_t out_len)
235 out_data, out_len, in_data, in_len, &rlen) < 0) {
252 * @out_len: Maximum out_data length
260 u8 *out_data, size_t out_len)
270 out_end = out_data + out_len;
    [all...]
  /external/boringssl/src/crypto/
cpu-arm-linux.c 80 * one and sets |*out_ptr| and |*out_len| to a newly-allocated buffer with the
82 static int read_file(char **out_ptr, size_t *out_len, const char *path) {
121 *out_len = len;
  /external/boringssl/src/crypto/ecdsa_extra/
ecdsa_asn1.c 208 int ECDSA_SIG_to_bytes(uint8_t **out_bytes, size_t *out_len,
214 !CBB_finish(&cbb, out_bytes, out_len)) {
  /external/boringssl/src/ssl/
custom_extensions.cc 52 const uint8_t **out, size_t *out_len,
57 *out_len = 0;
dtls_record.cc 275 int dtls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
328 *out_len = DTLS1_RT_HEADER_LENGTH + ciphertext_len;
  /external/wpa_supplicant_8/src/crypto/
tls.h 344 * @out_len: Length of the output buffer
352 u8 *out, size_t out_len);
359 * @out_len: Length of the output buffer
368 u8 *out, size_t out_len);
  /external/boringssl/src/crypto/obj/
obj.c 461 int OBJ_obj2txt(char *out, int out_len, const ASN1_OBJECT *obj,
466 return strlcpy_int(out, "", out_len);
477 return strlcpy_int(out, name, out_len);
522 int ret = strlcpy_int(out, (const char *)txt, out_len);
528 if (out_len > 0) {

Completed in 1909 milliseconds

1 2 3 4 5 67 8 910