OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fPacked
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/gpu/gl/
GrGLStencilBuffer.h
23
bool
fPacked
;
/external/skia/legacy/src/core/
SkFloat.h
19
void setZero() {
fPacked
= 0; }
20
// void setShift(int value, int shift) {
fPacked
= SetShift(value, shift); }
21
void setInt(int value) {
fPacked
= SetShift(value, 0); }
22
void setFixed(SkFixed value) {
fPacked
= SetShift(value, -16); }
23
void setFract(SkFract value) {
fPacked
= SetShift(value, -30); }
25
// int getShift(int shift) const { return GetShift(
fPacked
, shift); }
26
int getInt() const { return GetShift(
fPacked
, 0); }
27
SkFixed getFixed() const { return GetShift(
fPacked
, -16); }
28
SkFract getFract() const { return GetShift(
fPacked
, -30); }
30
void abs() {
fPacked
= Abs(fPacked);
[
all
...]
/external/skia/src/core/
SkFloat.h
19
void setZero() {
fPacked
= 0; }
20
// void setShift(int value, int shift) {
fPacked
= SetShift(value, shift); }
21
void setInt(int value) {
fPacked
= SetShift(value, 0); }
22
void setFixed(SkFixed value) {
fPacked
= SetShift(value, -16); }
23
void setFract(SkFract value) {
fPacked
= SetShift(value, -30); }
25
// int getShift(int shift) const { return GetShift(
fPacked
, shift); }
26
int getInt() const { return GetShift(
fPacked
, 0); }
27
SkFixed getFixed() const { return GetShift(
fPacked
, -16); }
28
SkFract getFract() const { return GetShift(
fPacked
, -30); }
30
void abs() {
fPacked
= Abs(fPacked);
[
all
...]
Completed in 964 milliseconds