OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CLIP3
(Results
1 - 5
of
5
) sorted by null
/external/libavc/encoder/
ime_macros.h
41
#define
CLIP3
(miny, maxy, y) (((y) < (miny))?(miny):(((y) > maxy)?(maxy):(y)))
/external/libmpeg2/common/
icv_macros.h
56
#define
CLIP3
(min, max, x) (((x) > (max)) ? (max) :(((x) < (min))? (min):(x)))
/external/libavc/common/
ih264_macros.h
75
#define
CLIP3
(miny, maxy, y) (((y) < (miny))?(miny):(((y) > (maxy))?(maxy):(y)))
/external/libhevc/common/
ihevc_macros.h
40
#define
CLIP3
(x, min, max) (((x) > (max)) ? (max) :(((x) < (min))? (min):(x)))
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h
136
#define
CLIP3
(x,y,z) (((z) < (x)) ? (x) : (((z) > (y)) ? (y) : (z)))
Completed in 6120 milliseconds