Searched defs:rot (Results 1 - 7 of 7) sorted by relevance

/external/ppp/pppd/
H A Dmd4.c70 ** Note: The "rot" operator uses the variable "tmp".
77 #define rot(X,S) (tmp=X,(tmp<<S) | (tmp>>(32-S))) macro
78 #define ff(A,B,C,D,i,s) A = rot((A + f(B,C,D) + X[i]),s)
79 #define gg(A,B,C,D,i,s) A = rot((A + g(B,C,D) + X[i] + C2),s)
80 #define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s)
/external/qemu/android/skin/
H A Dfile.c269 SkinRotation rot = aconfig_int(node, "rotation", SKIN_ROTATION_0); local
291 location->rotation = rot;
H A Dtrackball.c109 rotator_reset( Rotator rot, int dx, int dy ) argument
121 rot->d[0] = zx;
122 rot->d[1] = zy;
123 rot->d[2] = 0.;
125 rot->n[0] = -rot->d[1];
126 rot->n[1] = rot->d[0];
127 rot->n[2] = 0;
129 rot
133 rotator_apply( Rotator rot, double* vec ) argument
414 RotatorRec rot[1]; local
[all...]
/external/zlib/examples/
H A Dgzappend.c120 /* rotate list[0..len-1] left by rot positions, in place */
121 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
127 /* normalize rot and handle degenerate cases */
129 if (rot >= len) rot %= len;
130 if (rot == 0) return;
136 if (rot == 1) {
144 if (rot == len - 1) {
152 cycles = gcd(len, rot); /* number of cycles */
158 from += rot; /* g
[all...]
/external/quake/quake/src/QW/client/
H A Dmathlib.c99 float rot[3][3]; local
140 R_ConcatRotations( tmpmat, im, rot );
144 dst[i] = rot[i][0] * point[0] + rot[i][1] * point[1] + rot[i][2] * point[2];
/external/quake/quake/src/WinQuake/
H A Dmathlib.cpp99 float rot[3][3]; local
140 R_ConcatRotations( tmpmat, im, rot );
144 dst[i] = rot[i][0] * point[0] + rot[i][1] * point[1] + rot[i][2] * point[2];
/external/qemu/
H A Darm-dis.c3672 unsigned int rot = (given & 0x00000030) >> 4; local
3673 if (rot)
3674 func (stream, ", ror #%u", rot * 8);

Completed in 75 milliseconds