OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rads
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/utils/
SkUnitMappers.cpp
59
SkFixed
rads
= (unsigned)(input * (SK_FixedPI >> 2)) >> 15;
local
60
SkFixed x = SkFixedCos(
rads
);
/packages/wallpapers/NoiseField/src/com/android/noisefield/
noisefield.rs
207
float
rads
;
232
rads
= atan2(touchX - particle->position.x + noiseval,
240
particle->position.x += cos(
rads
) * speed * 0.2;
241
particle->position.y += sin(
rads
) * speed * 0.2;
246
rads
= angle * 3.14159265 / 180.0;
248
particle->position.x += cos(
rads
) * speed * 0.33;
249
particle->position.y += sin(
rads
) * speed * 0.33;
/external/skia/tests/
MathTest.cpp
534
SkFixed
rads
= rand.nextS() >> 10;
local
535
double frads = SkFixedToFloat(
rads
);
538
s = SkScalarSinCos(
rads
, &c);
/external/webkit/Source/WebCore/css/
tokenizer.flex
96
{num}rad {yyTok =
RADS
; return yyTok;}
CSSGrammar.y
178
%token <number>
RADS
[
all
...]
CSSParser.cpp
[
all
...]
Completed in 308 milliseconds