/third_party/ffmpeg/tests/checkasm/ |
H A D | vf_gblur.c | 37 static void check_horiz_slice(float *dst_ref, float *dst_new, float *localbuf) in check_horiz_slice() argument 43 declare_func(void, float *dst, int w, int h, int steps, float nu, float bscale, float *localbuf); in check_horiz_slice() 44 call_ref(dst_ref, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice() 45 call_new(dst_new, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice() 49 bench_new(dst_new, WIDTH, HEIGHT, 1, nu, bscale, localbuf); in check_horiz_slice() 95 check_horiz_slice(dst_ref, dst_new, s.localbuf); in checkasm_check_vf_gblur() 113 if (s.localbuf) in checkasm_check_vf_gblur() 114 av_free(s.localbuf); in checkasm_check_vf_gblur()
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_gblur_init.c | 27 void ff_horiz_slice_sse4(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 28 void ff_horiz_slice_avx2(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 29 void ff_horiz_slice_avx512(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 63 s->localbuf = av_malloc(s->stride * sizeof(float) * s->planewidth[0] * s->planeheight[0]); in ff_gblur_init_x86() 64 if (!s->localbuf) in ff_gblur_init_x86()
|
H A D | vf_gblur.asm | 436 localbuf, x, y, step, stride, remain, ptr, mask 443 localbuf, x, y, step, stride, remain, ptr, mask 457 localbuf, x, y, step, stride, remain, ptr, mask
|
/third_party/ffmpeg/libavcodec/ |
H A D | vlc.c | 229 int flags, VLCcode localbuf[LOCALBUF_ELEMS]) in vlc_common_end() 239 if (codes != localbuf) in vlc_common_end() 278 VLCcode localbuf[LOCALBUF_ELEMS], *buf = localbuf; in ff_init_vlc_sparse() local 295 if (buf != localbuf) \ in ff_init_vlc_sparse() 304 if (buf != localbuf) \ in ff_init_vlc_sparse() 325 flags, localbuf); in ff_init_vlc_sparse() 333 VLCcode localbuf[LOCALBUF_ELEMS], *buf = localbuf; in ff_init_vlc_from_lengths() local 368 return vlc_common_end(vlc, nb_bits, j, buf, flags, localbuf); in ff_init_vlc_from_lengths() 228 vlc_common_end(VLC *vlc, int nb_bits, int nb_codes, VLCcode *codes, int flags, VLCcode localbuf[LOCALBUF_ELEMS]) vlc_common_end() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regerror.c | 123 regatoi(const llvm_regex_t *preg, char *localbuf, int localbufsize) in regatoi() argument 133 (void)snprintf(localbuf, localbufsize, "%d", r->code); in regatoi() 134 return(localbuf); in regatoi()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | regerror.c | 123 regatoi(const llvm_regex_t *preg, char *localbuf, int localbufsize) in regatoi() argument 133 (void)snprintf(localbuf, localbufsize, "%d", r->code); in regatoi() 134 return(localbuf); in regatoi()
|
/third_party/ffmpeg/libavfilter/ |
H A D | gblur.h | 46 float *localbuf; ///< temporary buffer for horiz_slice. NULL if not used member 54 void (*horiz_slice)(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf);
|
H A D | vf_gblur.c | 70 float *localbuf = NULL; in filter_horizontally() local 72 if (s->localbuf) in filter_horizontally() 73 localbuf = s->localbuf + s->stride * width * slice_start; in filter_horizontally() 76 steps, nu, boundaryscale, localbuf); in filter_horizontally() 170 av_freep(&s->localbuf); in uninit()
|
H A D | vf_gblur_init.h | 46 float nu, float bscale, float *localbuf) in horiz_slice_c() 114 s->localbuf = NULL; in ff_gblur_init() 45 horiz_slice_c(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf) horiz_slice_c() argument
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jchuff.c | 467 localbuf = 1; \ 474 if (localbuf) { \ 500 int localbuf = 0; in LOCAL() local 551 int localbuf = 0; in LOCAL() local 570 int localbuf = 0; in LOCAL() local
|