OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lower32
(Results
1 - 6
of
6
) sorted by null
/external/icu/icu4c/source/i18n/
collation.cpp
122
int32_t
lower32
= (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)
local
123
int32_t offset = (c - (
lower32
>> 8)) * (
lower32
& 0x7f); // delta * increment
124
UBool isCompressible = (
lower32
& 0x80) != 0;
coleitr.cpp
68
uint32_t getFirstHalf(uint32_t p, uint32_t
lower32
) {
69
return (p & 0xffff0000) | ((
lower32
>> 16) & 0xff00) | ((
lower32
>> 8) & 0xff);
71
uint32_t getSecondHalf(uint32_t p, uint32_t
lower32
) {
72
return (p << 16) | ((
lower32
>> 8) & 0xff00) | (
lower32
& 0x3f);
128
uint32_t
lower32
= (uint32_t)ce;
local
129
uint32_t firstHalf = getFirstHalf(p,
lower32
);
130
uint32_t secondHalf = getSecondHalf(p,
lower32
);
200
uint32_t
lower32
= (uint32_t)ce
local
411
uint32_t
lower32
= (uint32_t)ce;
local
[
all
...]
collationkeys.cpp
346
uint32_t
lower32
= (uint32_t)ce;
local
347
if(
lower32
== 0) { continue; } // completely ignorable, no secondary/case/tertiary/quaternary
350
uint32_t s =
lower32
>> 16;
407
p == 0 :
lower32
<= 0xffff) {
412
uint32_t c = (
lower32
>> 8) & 0xff; // case bits & tertiary lead byte
462
uint32_t t =
lower32
& tertiaryMask;
463
U_ASSERT((
lower32
& 0xc000) != 0xc000);
522
} else if(
lower32
> 0xffff) {
553
uint32_t q =
lower32
& 0xffff;
594
if((
lower32
>> 24) == Collation::LEVEL_SEPARATOR_BYTE) { break; } // ce == NO_C
[
all
...]
collationfastlatinbuilder.cpp
514
uint32_t
lower32
= (uint32_t)ce;
local
515
uint32_t s =
lower32
>> 16;
552
U_ASSERT((
lower32
& Collation::CASE_MASK) == 0); // blanked out in uniqueCEs
553
uint32_t t =
lower32
& Collation::ONLY_TERTIARY_MASK;
collationbuilder.cpp
801
uint32_t
lower32
= (uint32_t)ce;
local
[
all
...]
collationdatabuilder.cpp
620
uint32_t
lower32
= (uint32_t)ce;
local
625
return p | (
lower32
>> 16) | (t >> 8);
631
return Collation::makeLongSecondaryCE32(
lower32
);
[
all
...]
Completed in 111 milliseconds