Home
last modified time | relevance | path

Searched refs:buf_out (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Da_sign.c32 unsigned char *p, *buf_in = NULL, *buf_out = NULL; in ASN1_sign() local
82 buf_out = OPENSSL_malloc(outll); in ASN1_sign()
83 if (buf_in == NULL || buf_out == NULL) { in ASN1_sign()
93 || !EVP_SignFinal(ctx, (unsigned char *)buf_out, in ASN1_sign()
100 signature->data = buf_out; in ASN1_sign()
101 buf_out = NULL; in ASN1_sign()
112 OPENSSL_clear_free((char *)buf_out, outll); in ASN1_sign()
157 unsigned char *buf_in = NULL, *buf_out = NULL; in ASN1_item_sign_ctx() local
275 buf_out = OPENSSL_malloc(outll); in ASN1_item_sign_ctx()
276 if (buf_in == NULL || buf_out in ASN1_item_sign_ctx()
[all...]
/third_party/openssl/crypto/asn1/
H A Da_sign.c32 unsigned char *p, *buf_in = NULL, *buf_out = NULL; in ASN1_sign() local
82 buf_out = OPENSSL_malloc(outll); in ASN1_sign()
83 if (buf_in == NULL || buf_out == NULL) { in ASN1_sign()
93 || !EVP_SignFinal(ctx, (unsigned char *)buf_out, in ASN1_sign()
100 signature->data = buf_out; in ASN1_sign()
101 buf_out = NULL; in ASN1_sign()
112 OPENSSL_clear_free((char *)buf_out, outll); in ASN1_sign()
157 unsigned char *buf_in = NULL, *buf_out = NULL; in ASN1_item_sign_ctx() local
275 buf_out = OPENSSL_malloc(outll); in ASN1_item_sign_ctx()
276 if (buf_in == NULL || buf_out in ASN1_item_sign_ctx()
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_channelsplit.c165 AVFrame *buf_out = av_frame_clone(buf); in filter_frame() local
166 if (!buf_out) in filter_frame()
169 buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[s->map[i]]; in filter_frame()
170 ret = av_channel_layout_from_mask(&buf_out->ch_layout, 1ULL << channel); in filter_frame()
175 buf_out->channel_layout = in filter_frame()
177 buf_out->channels = 1; in filter_frame()
181 return ff_filter_frame(ctx->outputs[i], buf_out); in filter_frame()
H A Dsplit.c82 AVFrame *buf_out; in activate() local
86 buf_out = av_frame_clone(in); in activate()
87 if (!buf_out) { in activate()
92 ret = ff_filter_frame(ctx->outputs[i], buf_out); in activate()
/third_party/elfutils/libelf/
H A Delf_compress.c225 void *buf_out = malloc (size_out ?: 1); in __libelf_decompress() local
226 if (unlikely (buf_out == NULL)) in __libelf_decompress()
236 .next_out = buf_out, in __libelf_decompress()
242 z.next_out = buf_out + (size_out - z.avail_out); in __libelf_decompress()
254 free (buf_out); in __libelf_decompress()
255 buf_out = NULL; in __libelf_decompress()
260 return buf_out; in __libelf_decompress()
298 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); in __libelf_decompress_elf() local
301 return buf_out; in __libelf_decompress_elf()
495 void *buf_out in elf_compress() local
[all...]
H A Delf_compress_gnu.c181 void *buf_out = __libelf_decompress (buf_in, size_in, size); in elf_compress_gnu() local
182 if (buf_out == NULL) in elf_compress_gnu()
199 __libelf_reset_rawdata (scn, buf_out, size, sh_addralign, in elf_compress_gnu()
203 scn->zdata_base = buf_out; in elf_compress_gnu()
/third_party/ffmpeg/tools/
H A Dcws2fws.c31 char buf_in[1024], buf_out[65536]; in main() local
104 zstream.next_out = &buf_out[0]; in main()
118 if (write(fd_out, &buf_out, zstream.total_out - last_out) < in main()
/third_party/node/deps/openssl/openssl/apps/
H A Dpkeyutl.c112 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL; in pkeyutl_main() local
470 &buf_out, (size_t *)&buf_outlen); in pkeyutl_main()
480 buf_out = app_malloc(buf_outlen, "buffer output"); in pkeyutl_main()
482 buf_out, (size_t *)&buf_outlen, in pkeyutl_main()
497 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1)) in pkeyutl_main()
500 BIO_dump(out, (char *)buf_out, buf_outlen); in pkeyutl_main()
502 BIO_write(out, buf_out, buf_outlen); in pkeyutl_main()
515 OPENSSL_free(buf_out); in pkeyutl_main()
/third_party/openssl/apps/
H A Dpkeyutl.c112 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL; in pkeyutl_main() local
470 &buf_out, (size_t *)&buf_outlen); in pkeyutl_main()
480 buf_out = app_malloc(buf_outlen, "buffer output"); in pkeyutl_main()
482 buf_out, (size_t *)&buf_outlen, in pkeyutl_main()
497 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1)) in pkeyutl_main()
500 BIO_dump(out, (char *)buf_out, buf_outlen); in pkeyutl_main()
502 BIO_write(out, buf_out, buf_outlen); in pkeyutl_main()
515 OPENSSL_free(buf_out); in pkeyutl_main()
/third_party/ffmpeg/libavcodec/
H A Damrnbdec.c912 * @param buf_out output of the filter
914 static void postfilter(AMRContext *p, float *lpc, float *buf_out) in postfilter() argument
945 p->celpf_ctx.celp_lp_zero_synthesis_filterf(buf_out, lpc_n, in postfilter()
949 ff_tilt_compensation(&p->tilt_mem, tilt_factor(p, lpc_n, lpc_d), buf_out, in postfilter()
952 ff_adaptive_gain_control(buf_out, buf_out, speech_gain, AMR_SUBFRAME_SIZE, in postfilter()
979 float *buf_out = (float *)frame->extended_data[ch]; in amrnb_decode_frame() local
1068 postfilter(p, p->lpc[subframe], buf_out + subframe * AMR_SUBFRAME_SIZE); in amrnb_decode_frame()
1075 p->acelpf_ctx.acelp_apply_order_2_transfer_function(buf_out, in amrnb_decode_frame()
1076 buf_out, highpass_zero in amrnb_decode_frame()
[all...]
H A Dcngdec.c111 int16_t *buf_out; in cng_decode_frame() local
154 buf_out = (int16_t *)frame->data[0]; in cng_decode_frame()
156 buf_out[i] = av_clip_int16(p->filter_out[i + p->order]); in cng_decode_frame()
H A Damrwbdec.c1131 float *buf_out = (float *)frame->extended_data[ch]; in amrwb_decode_frame() local
1195 float *sub_buf = buf_out + sub * AMRWB_SFR_SIZE_16k; in amrwb_decode_frame()
/third_party/ffmpeg/libavformat/
H A Dhevc.h68 * @param buf_out on success, address of the variable holding the address of
76 * @note *buf_out will be treated as uninitialized on input and won't be freed.
78 int ff_hevc_annexb2mp4_buf(const uint8_t *buf_in, uint8_t **buf_out,
H A Dhevc.c1046 int ff_hevc_annexb2mp4_buf(const uint8_t *buf_in, uint8_t **buf_out, in ff_hevc_annexb2mp4_buf() argument
1062 *size = avio_close_dyn_buf(pb, buf_out); in ff_hevc_annexb2mp4_buf()
/third_party/mesa3d/src/imgui/
H A Dimgui.cpp1635 ImWchar* buf_out = buf; in ImTextStrFromUtf8() local
1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) in ImTextStrFromUtf8()
1644 *buf_out++ = (ImWchar)c; in ImTextStrFromUtf8()
1646 *buf_out = 0; in ImTextStrFromUtf8()
1649 return (int)(buf_out - buf); in ImTextStrFromUtf8()
1723 char* buf_out = buf; in ImTextStrToUtf8() local
1725 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) in ImTextStrToUtf8()
1729 *buf_out++ = (char)c; in ImTextStrToUtf8()
1731 buf_out += ImTextCharToUtf8(buf_out, (in in ImTextStrToUtf8()
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1706 ImWchar* buf_out = buf;
1708 while (buf_out < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text)
1714 *buf_out++ = (ImWchar)c;
1716 *buf_out = 0;
1719 return (int)(buf_out - buf);

Completed in 43 milliseconds