Home
last modified time | relevance | path

Searched refs:f_out (Results 1 – 8 of 8) sorted by relevance

/third_party/lz4/examples/
DframeCompress.c57 compress_file_internal(FILE* f_in, FILE* f_out, in compress_file_internal() argument
65 assert(f_in != NULL); assert(f_out != NULL); in compress_file_internal()
79 safe_fwrite(outBuff, 1, headerSize, f_out); in compress_file_internal()
98 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
112 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
123 compress_file(FILE* f_in, FILE* f_out) in compress_file() argument
126 assert(f_out != NULL); in compress_file()
137 result = compress_file_internal(f_in, f_out, in compress_file()
171 decompress_file_internal(FILE* f_in, FILE* f_out, in decompress_file_internal() argument
179 assert(f_in != NULL); assert(f_out != NULL); in decompress_file_internal()
[all …]
/third_party/glib/gobject/
Dgobject-query.c31 static FILE *f_out = NULL; variable
66 g_fprintf (f_out, "%s%s\n", indent, O_VLINE); in show_nodes()
68 g_fprintf (f_out, "%s%s%s%s", in show_nodes()
75 fputs (O_KEY_FILL, f_out); in show_nodes()
77 fputc ('\n', f_out); in show_nodes()
125 f_out = stdout; in main()
/third_party/pulseaudio/src/pulsecore/resampler/
Dspeex.c33 float f_out = -1.0f, f_in = 1.0f; in pa_speex_is_fixed_point() local
42 &f_out, &out_len) == RESAMPLER_ERR_SUCCESS); in pa_speex_is_fixed_point()
48 if (fabsf(f_out) < 0.00001f) in pa_speex_is_fixed_point()
/third_party/python/Tools/scripts/
Dmkreal.py23 with open(name, 'wb') as f_out:
27 f_out.write(buf)
/third_party/ffmpeg/libavcodec/
Dopusenc_psy.c311 CeltFrame *f_out) in celt_gauge_psy_weight() argument
347 f_out->alloc_boost[i] = (int)((band_score[i]/max_score)*3.0f); in celt_gauge_psy_weight()
352 f_out->spread = av_clip_uintp2(lrintf(tonal), 2); in celt_gauge_psy_weight()
358 f_out->framebits = lrintf(rate); in celt_gauge_psy_weight()
359 f_out->framebits = FFMIN(f_out->framebits, OPUS_MAX_PACKET_SIZE*8); in celt_gauge_psy_weight()
360 f_out->framebits = FFALIGN(f_out->framebits, 8); in celt_gauge_psy_weight()
/third_party/ffmpeg/libavutil/tests/
Dpixelutils.c33 av_pixelutils_sad_fn f_out = av_pixelutils_get_sad_fn(n, n, align, NULL); in run_single_test() local
41 out = f_out(block1, stride1, block2, stride2); in run_single_test()
/third_party/python/Doc/library/
Dgzip.rst214 with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:
215 shutil.copyfileobj(f_in, f_out)
/third_party/grpc/templates/src/objective-c/
DBoringSSL-GRPC.podspec.template22 …b') as f_in, gzip.GzipFile('src/boringssl/boringssl_prefix_symbols.h.gz', 'w', mtime=0.0) as f_out:
23 shutil.copyfileobj(f_in, f_out)