OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CV_IABS
(Results
1 - 2
of
2
) sorted by null
/external/opencv/cxcore/include/
cxtypes.h
203
#define
CV_IABS
(a) (((a) ^ ((a) < 0 ? -1 : 0)) - ((a) < 0 ? -1 : 0))
205
#define
CV_IABS
(a) abs(a)
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/
types_c.h
190
# define
CV_IABS
(a) (((a) ^ ((a) < 0 ? -1 : 0)) - ((a) < 0 ? -1 : 0))
192
# define
CV_IABS
(a) abs(a)
[
all
...]
Completed in 118 milliseconds