Home
last modified time | relevance | path

Searched refs:outsize (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/skia/third_party/externals/libjpeg-turbo/
Djdatadst-tj.c31 unsigned long *outsize, boolean alloc);
43 unsigned long *outsize; member
135 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer); in term_mem_destination()
152 unsigned long *outsize, boolean alloc) in jpeg_mem_dest_tj() argument
157 if (outbuffer == NULL || outsize == NULL) /* sanity check */ in jpeg_mem_dest_tj()
184 dest->outsize = outsize; in jpeg_mem_dest_tj()
187 if (*outbuffer == NULL || *outsize == 0) { in jpeg_mem_dest_tj()
193 *outsize = OUTPUT_BUF_SIZE; in jpeg_mem_dest_tj()
200 dest->bufsize = *outsize; in jpeg_mem_dest_tj()
Djdatadst.c53 unsigned long *outsize; member
194 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer); in term_mem_destination()
252 unsigned long *outsize) in jpeg_mem_dest() argument
256 if (outbuffer == NULL || outsize == NULL) /* sanity check */ in jpeg_mem_dest()
278 dest->outsize = outsize; in jpeg_mem_dest()
281 if (*outbuffer == NULL || *outsize == 0) { in jpeg_mem_dest()
286 *outsize = OUTPUT_BUF_SIZE; in jpeg_mem_dest()
290 dest->pub.free_in_buffer = dest->bufsize = *outsize; in jpeg_mem_dest()
/third_party/curl/tests/server/
Dfake_ntlm.c56 size_t outsize; in printable() local
71 outsize = inlength + outincr; in printable()
74 outsize = NOTHING_LEN + 1; in printable()
76 outbuf = malloc(outsize); in printable()
81 msnprintf(&outbuf[0], outsize, "%s", NOTHING_STR); in printable()
87 if(o > outsize - (HEX_STR_LEN + 1)) { in printable()
88 newsize = outsize + outincr; in printable()
95 outsize = newsize; in printable()
103 msnprintf(&outbuf[o], outsize - o, HEX_FMT_STR, inbuf[i]); in printable()
/third_party/lame/frontend/
Damiga_mpega.c115 int outsize = 0; in lame_decode_fromfile() local
122 while ((outsize == 0) || (outsize == MPEGA_ERR_BADFRAME)) /* Skip bad frames */ in lame_decode_fromfile()
123 outsize = MPEGA_decode_frame(mstream, b); in lame_decode_fromfile()
125 if (outsize < 0) in lame_decode_fromfile()
136 return outsize; in lame_decode_fromfile()
/third_party/node/deps/openssl/openssl/crypto/evp/
Dmac_lib.c130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() argument
155 if (outsize < macsize) { in evp_mac_final()
168 res = ctx->meth->final(ctx->algctx, out, &l, outsize); in evp_mac_final()
175 unsigned char *out, size_t *outl, size_t outsize) in EVP_MAC_final() argument
177 return evp_mac_final(ctx, 0, out, outl, outsize); in EVP_MAC_final()
180 int EVP_MAC_finalXOF(EVP_MAC_CTX *ctx, unsigned char *out, size_t outsize) in EVP_MAC_finalXOF() argument
182 return evp_mac_final(ctx, 1, out, NULL, outsize); in EVP_MAC_finalXOF()
247 unsigned char *out, size_t outsize, size_t *outlen) in EVP_Q_mac() argument
286 && EVP_MAC_final(ctx, out, &len, outsize)) { in EVP_Q_mac()
/third_party/openssl/crypto/evp/
Dmac_lib.c130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() argument
155 if (outsize < macsize) { in evp_mac_final()
168 res = ctx->meth->final(ctx->algctx, out, &l, outsize); in evp_mac_final()
175 unsigned char *out, size_t *outl, size_t outsize) in EVP_MAC_final() argument
177 return evp_mac_final(ctx, 0, out, outl, outsize); in EVP_MAC_final()
180 int EVP_MAC_finalXOF(EVP_MAC_CTX *ctx, unsigned char *out, size_t outsize) in EVP_MAC_finalXOF() argument
182 return evp_mac_final(ctx, 1, out, NULL, outsize); in EVP_MAC_finalXOF()
247 unsigned char *out, size_t outsize, size_t *outlen) in EVP_Q_mac() argument
286 && EVP_MAC_final(ctx, out, &len, outsize)) { in EVP_Q_mac()
/third_party/curl/src/
Dmkhelp.pl204 $outsize=0;
210 $outsize += length($new)+1; # one for the newline
216 if($outsize > 500) {
219 $outsize=length($new)+1;
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
Dciphercommon.c248 size_t *outl, size_t outsize, in ossl_cipher_generic_block_update() argument
270 || outsize < inl in ossl_cipher_generic_block_update()
284 if (outsize < inl + padnum) { in ossl_cipher_generic_block_update()
349 if (outsize < blksz) { in ossl_cipher_generic_block_update()
370 if (outsize < outlint) { in ossl_cipher_generic_block_update()
394 size_t *outl, size_t outsize) in ossl_cipher_generic_block_final() argument
424 if (outsize < blksz) { in ossl_cipher_generic_block_final()
457 if (outsize < ctx->bufsz) { in ossl_cipher_generic_block_final()
468 size_t *outl, size_t outsize, in ossl_cipher_generic_stream_update() argument
483 if (outsize < inl) { in ossl_cipher_generic_stream_update()
[all …]
Dcipher_tdes_wrap.c128 unsigned char *out, size_t *outl, size_t outsize, in tdes_wrap_cipher() argument
138 if (outsize < inl) { in tdes_wrap_cipher()
152 size_t outsize, const unsigned char *in, in tdes_wrap_update() argument
158 if (outsize < inl) { in tdes_wrap_update()
163 if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) { in tdes_wrap_update()
Dcipher_aes_xts.c158 size_t outsize, const unsigned char *in, size_t inl) in aes_xts_cipher() argument
193 size_t outsize, const unsigned char *in, in aes_xts_stream_update() argument
198 if (outsize < inl) { in aes_xts_stream_update()
203 if (!aes_xts_cipher(ctx, out, outl, outsize, in, inl)) { in aes_xts_stream_update()
212 size_t outsize) in aes_xts_stream_final() argument
Dcipher_aes_ocb.c162 size_t outsize, const unsigned char *in, in aes_ocb_block_update_internal() argument
174 if (outsize < AES_BLOCK_SIZE) { in aes_ocb_block_update_internal()
189 if (outsize < outlint) { in aes_ocb_block_update_internal()
232 size_t outsize, const unsigned char *in, in aes_ocb_block_update() argument
258 return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize, in aes_ocb_block_update()
263 size_t outsize) in aes_ocb_block_final() argument
501 size_t outsize, const unsigned char *in, size_t inl) in aes_ocb_cipher() argument
508 if (outsize < inl) { in aes_ocb_cipher()
Dcipher_null.c66 size_t outsize, const unsigned char *in, size_t inl) in null_cipher() argument
83 if (outsize < inl) in null_cipher()
93 size_t outsize) in null_final() argument
Dciphercommon_ccm.c270 size_t outsize, const unsigned char *in, in ossl_ccm_stream_update() argument
275 if (outsize < inl) { in ossl_ccm_stream_update()
288 size_t outsize) in ossl_ccm_stream_final() argument
304 int ossl_ccm_cipher(void *vctx, unsigned char *out, size_t *outl, size_t outsize, in ossl_ccm_cipher() argument
312 if (outsize < inl) { in ossl_ccm_cipher()
/third_party/openssl/providers/implementations/ciphers/
Dciphercommon.c244 size_t *outl, size_t outsize, in ossl_cipher_generic_block_update() argument
261 || outsize < inl in ossl_cipher_generic_block_update()
275 if (outsize < inl + padnum) { in ossl_cipher_generic_block_update()
340 if (outsize < blksz) { in ossl_cipher_generic_block_update()
361 if (outsize < outlint) { in ossl_cipher_generic_block_update()
385 size_t *outl, size_t outsize) in ossl_cipher_generic_block_final() argument
410 if (outsize < blksz) { in ossl_cipher_generic_block_final()
443 if (outsize < ctx->bufsz) { in ossl_cipher_generic_block_final()
454 size_t *outl, size_t outsize, in ossl_cipher_generic_stream_update() argument
464 if (outsize < inl) { in ossl_cipher_generic_stream_update()
[all …]
Dcipher_tdes_wrap.c128 unsigned char *out, size_t *outl, size_t outsize, in tdes_wrap_cipher() argument
138 if (outsize < inl) { in tdes_wrap_cipher()
152 size_t outsize, const unsigned char *in, in tdes_wrap_update() argument
158 if (outsize < inl) { in tdes_wrap_update()
163 if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) { in tdes_wrap_update()
Dcipher_aes_xts.c158 size_t outsize, const unsigned char *in, size_t inl) in aes_xts_cipher() argument
193 size_t outsize, const unsigned char *in, in aes_xts_stream_update() argument
198 if (outsize < inl) { in aes_xts_stream_update()
203 if (!aes_xts_cipher(ctx, out, outl, outsize, in, inl)) { in aes_xts_stream_update()
212 size_t outsize) in aes_xts_stream_final() argument
Dcipher_aes_ocb.c162 size_t outsize, const unsigned char *in, in aes_ocb_block_update_internal() argument
174 if (outsize < AES_BLOCK_SIZE) { in aes_ocb_block_update_internal()
189 if (outsize < outlint) { in aes_ocb_block_update_internal()
232 size_t outsize, const unsigned char *in, in aes_ocb_block_update() argument
258 return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize, in aes_ocb_block_update()
263 size_t outsize) in aes_ocb_block_final() argument
498 size_t outsize, const unsigned char *in, size_t inl) in aes_ocb_cipher() argument
505 if (outsize < inl) { in aes_ocb_cipher()
Dcipher_null.c66 size_t outsize, const unsigned char *in, size_t inl) in null_cipher() argument
83 if (outsize < inl) in null_cipher()
93 size_t outsize) in null_final() argument
Dciphercommon_ccm.c267 size_t outsize, const unsigned char *in, in ossl_ccm_stream_update() argument
272 if (outsize < inl) { in ossl_ccm_stream_update()
285 size_t outsize) in ossl_ccm_stream_final() argument
301 int ossl_ccm_cipher(void *vctx, unsigned char *out, size_t *outl, size_t outsize, in ossl_ccm_cipher() argument
309 if (outsize < inl) { in ossl_ccm_cipher()
/third_party/f2fs-tools/lib/
Dlibf2fs.c104 static uint16_t *wchar_to_utf16(uint16_t *output, wchar_t wc, size_t outsize) in wchar_to_utf16() argument
107 if (outsize == 0) in wchar_to_utf16()
112 if (outsize < 2) in wchar_to_utf16()
120 int utf8_to_utf16(uint16_t *output, const char *input, size_t outsize, in utf8_to_utf16() argument
133 outp = wchar_to_utf16(outp, wc, outsize - (outp - output)); in utf8_to_utf16()
159 static char *wchar_to_utf8(char *output, wchar_t wc, size_t outsize) in wchar_to_utf8() argument
162 if (outsize < 1) in wchar_to_utf8()
166 if (outsize < 2) in wchar_to_utf8()
171 if (outsize < 3) in wchar_to_utf8()
177 if (outsize < 4) in wchar_to_utf8()
[all …]
/third_party/ntfs-3g/libntfs-3g/
Ddir.c2340 size_t outsize = 0; in get_dos_name() local
2364 outsize = fn->file_name_length; in get_dos_name()
2366 if (outsize > MAX_DOS_NAME_LENGTH) in get_dos_name()
2367 outsize = MAX_DOS_NAME_LENGTH; in get_dos_name()
2368 memcpy(dosname,fn->file_name,outsize*sizeof(ntfschar)); in get_dos_name()
2372 if ((outsize > 0) && (namecount > 1)) { in get_dos_name()
2373 outsize = -1; in get_dos_name()
2376 return (outsize); in get_dos_name()
2392 size_t outsize = 0; in get_long_name() local
2417 outsize = fn->file_name_length; in get_long_name()
[all …]
/third_party/openssl/providers/implementations/asymciphers/
Drsa_enc.c136 size_t outsize, const unsigned char *in, size_t inlen) in rsa_encrypt() argument
198 size_t outsize, const unsigned char *in, size_t inlen) in rsa_decrypt() argument
212 if (outsize < SSL_MAX_MASTER_KEY_LENGTH) { in rsa_decrypt()
226 if (outsize < len) { in rsa_decrypt()
260 ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, outsize, tbuf, in rsa_decrypt()
274 prsactx->libctx, out, outsize, tbuf, len, in rsa_decrypt()
/third_party/node/deps/openssl/openssl/providers/implementations/asymciphers/
Drsa_enc.c136 size_t outsize, const unsigned char *in, size_t inlen) in rsa_encrypt() argument
198 size_t outsize, const unsigned char *in, size_t inlen) in rsa_decrypt() argument
212 if (outsize < SSL_MAX_MASTER_KEY_LENGTH) { in rsa_decrypt()
226 if (outsize < len) { in rsa_decrypt()
260 ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, outsize, tbuf, in rsa_decrypt()
274 prsactx->libctx, out, outsize, tbuf, len, in rsa_decrypt()
/third_party/openssl/doc/man7/
Dprovider-cipher.pod33 size_t outsize, const unsigned char *in, size_t inl);
35 size_t outsize);
37 size_t outsize, const unsigned char *in, size_t inl);
145 I<*outl> which should not exceed I<outsize> bytes.
152 The same expectations apply to I<outsize> as documented for
160 amount of data written to I<*outl> which should not exceed I<outsize> bytes.
161 The same expectations apply to I<outsize> as documented for
176 I<outsize> bytes.
/third_party/ffmpeg/libavcodec/
Dlzwenc.c206 void ff_lzw_encode_init(LZWEncodeState *s, uint8_t *outbuf, int outsize, in ff_lzw_encode_init() argument
212 init_put_bits(&s->pb, outbuf, outsize); in ff_lzw_encode_init()
213 s->bufsize = outsize; in ff_lzw_encode_init()

1234