OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__rot
(Results
1 - 2
of
2
) sorted by null
/external/blktrace/
jhash.h
26
#define
__rot
(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
macro
31
a -= c; a ^=
__rot
(c, 4); c += b; \
32
b -= a; b ^=
__rot
(a, 6); a += c; \
33
c -= b; c ^=
__rot
(b, 8); b += a; \
34
a -= c; a ^=
__rot
(c,16); c += b; \
35
b -= a; b ^=
__rot
(a,19); a += c; \
36
c -= b; c ^=
__rot
(b, 4); b += a; \
42
c ^= b; c -=
__rot
(b,14); \
43
a ^= c; a -=
__rot
(c,11); \
44
b ^= a; b -=
__rot
(a,25);
[
all
...]
/external/opencv3/modules/calib3d/test/
test_undistort.cpp
400
Mat
__rot
= cvarrToMat(&_rot);
local
407
cvtest::convert(test_mat[INPUT][3],
__rot
,
__rot
.type());
[
all
...]
Completed in 716 milliseconds