Searched refs:need_clipping (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | af_biquads.c | 205 #define BIQUAD_FILTER(name, type, min, max, need_clipping) \ 233 } else if (need_clipping && out < min) { \ 236 } else if (need_clipping && out > max) { \ 248 } else if (need_clipping && out < min) { \ 251 } else if (need_clipping && out > max) { \ 267 } else if (need_clipping && out < min) { \ 270 } else if (need_clipping && out > max) { \ 288 #define BIQUAD_DII_FILTER(name, type, min, max, need_clipping) \ 317 } else if (need_clipping && out < min) { \ 320 } else if (need_clipping [all...] |
H A D | af_aiir.c | 112 #define IIR_CH(name, type, min, max, need_clipping) \ 149 if (need_clipping && sample < min) { \ 152 } else if (need_clipping && sample > max) { \ 168 #define SERIAL_IIR_CH(name, type, min, max, need_clipping) \ 205 if (need_clipping && o0 < min) { \ 208 } else if (need_clipping && o0 > max) { \ 227 #define PARALLEL_IIR_CH(name, type, min, max, need_clipping) \ 264 if (need_clipping && o0 < min) { \ 267 } else if (need_clipping && o0 > max) { \ 291 #define LATTICE_IIR_CH(name, type, min, max, need_clipping) \ [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imgui.cpp | 2337 bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); in RenderTextClippedEx() local 2339 need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); in RenderTextClippedEx() 2346 if (need_clipping) in RenderTextClippedEx()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.cpp | 2758 bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); in RenderTextClippedEx() local 2760 need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); in RenderTextClippedEx() 2767 if (need_clipping) in RenderTextClippedEx()
|
Completed in 49 milliseconds