OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COS
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.c
138
double
COS
, SIN, x0p, y0p, x1p, y1p, pcx0, pcy0, pcx1, pcy1;
142
COS
=
cos
(rot); SIN = sin(rot);
145
x0p = (x0*
COS
+ y0*SIN)/rh;
146
y0p = (-x0*SIN + y0*
COS
)/rv;
147
x1p = (x1*
COS
+ y1*SIN)/rh;
148
y1p = (-x1*SIN + y1*
COS
)/rv;
157
*cx0 = pcx0*
COS
- pcy0*SIN;
158
*cy0 = pcx0*SIN + pcy0*
COS
;
159
*cx1 = pcx1*
COS
- pcy1*SIN
[
all
...]
/external/mesa3d/src/gallium/state_trackers/vega/
arc.c
138
double
COS
, SIN, x0p, y0p, x1p, y1p, pcx0, pcy0, pcx1, pcy1;
142
COS
=
cos
(rot); SIN = sin(rot);
145
x0p = (x0*
COS
+ y0*SIN)/rh;
146
y0p = (-x0*SIN + y0*
COS
)/rv;
147
x1p = (x1*
COS
+ y1*SIN)/rh;
148
y1p = (-x1*SIN + y1*
COS
)/rv;
157
*cx0 = pcx0*
COS
- pcy0*SIN;
158
*cy0 = pcx0*SIN + pcy0*
COS
;
159
*cx1 = pcx1*
COS
- pcy1*SIN
[
all
...]
/frameworks/base/core/java/android/widget/
EdgeEffect.java
78
private static final float
COS
= (float) Math.
cos
(ANGLE);
139
final float y =
COS
* r;
142
final float oy =
COS
* or;