OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fpacked
(Results
1 - 1
of
1
) sorted by null
/external/skia/src/core/
SkFloat.h
26
void setZero() {
fPacked
= 0; }
27
// void setShift(int value, int shift) {
fPacked
= SetShift(value, shift); }
28
void setInt(int value) {
fPacked
= SetShift(value, 0); }
29
void setFixed(SkFixed value) {
fPacked
= SetShift(value, -16); }
30
void setFract(SkFract value) {
fPacked
= SetShift(value, -30); }
32
// int getShift(int shift) const { return GetShift(
fPacked
, shift); }
33
int getInt() const { return GetShift(
fPacked
, 0); }
34
SkFixed getFixed() const { return GetShift(
fPacked
, -16); }
35
SkFract getFract() const { return GetShift(
fPacked
, -30); }
37
void abs() {
fPacked
= Abs(fPacked);
[
all
...]
Completed in 8 milliseconds