OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Sk64
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/include/core/
Sk64.h
15
/** \class
Sk64
17
Sk64
is a 64-bit math package that does not require long long support from the compiler.
19
struct SK_API
Sk64
{
23
/** Returns non-zero if the
Sk64
can be represented as a signed 32 bit integer
27
/** Returns non-zero if the
Sk64
cannot be represented as a signed 32 bit integer
31
/** Returns non-zero if the
Sk64
can be represented as a signed 48 bit integer. Used to know
88
/** Returns the number of bits needed to shift the
Sk64
to the right
138
/** Add the specified
Sk64
to the number */
146
/** Add the specified
Sk64
to the number */
147
void add(const
Sk64
& other) { this->add(other.fHi, other.fLo);
[
all
...]
/external/skia/include/core/
Sk64.h
15
/** \class
Sk64
17
Sk64
is a 64-bit math package that does not require long long support from the compiler.
19
struct SK_API
Sk64
{
23
/** Returns non-zero if the
Sk64
can be represented as a signed 32 bit integer
27
/** Returns non-zero if the
Sk64
cannot be represented as a signed 32 bit integer
31
/** Returns non-zero if the
Sk64
can be represented as a signed 48 bit integer. Used to know
88
/** Returns the number of bits needed to shift the
Sk64
to the right
138
/** Add the specified
Sk64
to the number */
146
/** Add the specified
Sk64
to the number */
147
void add(const
Sk64
& other) { this->add(other.fHi, other.fLo);
[
all
...]
Completed in 1540 milliseconds