OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:highBit
(Results
1 - 25
of
28
) sorted by null
1
2
/external/icu4c/layoutex/
LXUtilities.h
19
static le_int8
highBit
(le_int32 value);
LXUtilities.cpp
17
le_int8 LXUtilities::
highBit
(le_int32 value)
55
le_int32 power = 1 <<
highBit
(count);
/libcore/luni/src/main/native/
cbigint.cpp
514
int32_t
highBit
;
518
highBit
= highestSetBit (arg + length);
519
if (
highBit
)
520
return
highBit
+ 64 * length;
571
int32_t
highBit
;
587
highBit
= highestSetBit (arg);
588
if (
highBit
<= 53)
590
highBit
= 53 -
highBit
;
591
mantissa = *arg <<
highBit
;
[
all
...]
/external/icu4c/layout/
OpenTypeUtilities.h
22
static le_int8
highBit
(le_int32 value);
OpenTypeUtilities.cpp
18
le_int8 OpenTypeUtilities::
highBit
(le_int32 value)
56
le_uint8 bit =
highBit
(recordCount);
83
le_uint8 bit =
highBit
(recordCount);
114
le_int32 power = 1 <<
highBit
(count);
136
le_int32 power = 1 <<
highBit
(count);
CoverageTables.cpp
45
le_uint8 bit = OpenTypeUtilities::
highBit
(count);
KernTable.cpp
112
entrySelector = OpenTypeUtilities::
highBit
(nPairs);
PairPositioningSubtables.cpp
143
le_uint8 bit = OpenTypeUtilities::
highBit
(recordCount);
/dalvik/vm/alloc/
HeapBitmap.cpp
107
unsigned long
highBit
= 1 << (HB_BITS_PER_WORD - 1);
113
word &= ~(
highBit
>> shift);
142
unsigned long
highBit
= 1 << (HB_BITS_PER_WORD - 1);
149
word &= ~(
highBit
>> shift);
191
unsigned long
highBit
= 1 << (HB_BITS_PER_WORD - 1);
195
garbage &= ~(
highBit
>> shift);
/external/chromium_org/third_party/icu/source/test/letest/
cmaps.cpp
21
le_int8
highBit
(le_uint32 value)
167
le_uint8 bit =
highBit
(nGroups);
PortableFontInstance.h
57
static le_int8
highBit
(le_int32 value);
PortableFontInstance.cpp
31
le_int8 PortableFontInstance::
highBit
(le_int32 value)
111
fDirPower = 1 <<
highBit
(numTables);
/external/harfbuzz_ng/src/hb-icu-le/
cmaps.cpp
21
static inline le_int8
highBit
(le_uint32 value)
167
le_uint8 bit =
highBit
(nGroups);
/external/icu4c/extra/scrptrun/
scrptrun.cpp
44
const int32_t ScriptRun::pairedCharPower = 1 <<
highBit
(pairedCharCount);
47
int8_t ScriptRun::
highBit
(int32_t value)
scrptrun.h
85
static int8_t
highBit
(int32_t value);
/external/icu4c/samples/layout/
cmaps.cpp
27
le_uint8
highBit
(le_uint32 value)
173
le_uint8 bit =
highBit
(nGroups);
/external/icu4c/test/letest/
cmaps.cpp
21
le_int8
highBit
(le_uint32 value)
167
le_uint8 bit =
highBit
(nGroups);
PortableFontInstance.h
57
static le_int8
highBit
(le_int32 value);
PortableFontInstance.cpp
31
le_int8 PortableFontInstance::
highBit
(le_int32 value)
111
fDirPower = 1 <<
highBit
(numTables);
/external/chromium_org/third_party/icu/source/common/
usc_impl.c
56
static int8_t
highBit
(int32_t value);
120
highBit
(int32_t value)
160
int32_t pairedCharPower = 1 <<
highBit
(pairedCharCount);
/external/icu4c/common/
usc_impl.c
56
static int8_t
highBit
(int32_t value);
120
highBit
(int32_t value)
160
int32_t pairedCharPower = 1 <<
highBit
(pairedCharCount);
/libcore/luni/src/main/java/java/util/
HashMap.java
603
int
highBit
= e.hash & oldCapacity;
605
newTable[j |
highBit
] = e;
608
if (nextHighBit !=
highBit
) {
614
highBit
= nextHighBit;
[
all
...]
Hashtable.java
521
int
highBit
= e.hash & oldCapacity;
523
newTable[j |
highBit
] = e;
526
if (nextHighBit !=
highBit
) {
532
highBit
= nextHighBit;
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_span.c
676
const GLuint
highBit
= 1 << 31;
678
GLuint i, m =
highBit
>> (GLuint) (span->x % 32);
685
m =
highBit
;
[
all
...]
/external/mesa3d/src/mesa/swrast/
s_span.c
676
const GLuint
highBit
= 1 << 31;
678
GLuint i, m =
highBit
>> (GLuint) (span->x % 32);
685
m =
highBit
;
[
all
...]
Completed in 130 milliseconds
1
2