Searched defs:basePrimary (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollation.cpp31 Collation::incTwoBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
37 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 4;
41 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 2;
46 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
50 Collation::incThreeBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
53 offset += ((int32_t)(basePrimary >> 8) & 0xff) - 2;
59 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 4;
63 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 2;
68 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
72 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBoo argument
94 decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollation.java461 public static long incTwoBytePrimaryByOffset(long basePrimary, boolean isCompressible, argument
468 offset += ((int)(basePrimary >> 16) & 0xff) - 4;
472 offset += ((int)(basePrimary >> 16) & 0xff) - 2;
477 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
483 public static long incThreeBytePrimaryByOffset(long basePrimary, boolean isCompressible, argument
487 offset += ((int)(basePrimary >> 8) & 0xff) - 2;
493 offset += ((int)(basePrimary >> 16) & 0xff) - 4;
497 offset += ((int)(basePrimary >> 16) & 0xff) - 2;
502 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
508 static long decTwoBytePrimaryByOneStep(long basePrimary, boolea argument
532 decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollation.java459 public static long incTwoBytePrimaryByOffset(long basePrimary, boolean isCompressible, argument
466 offset += ((int)(basePrimary >> 16) & 0xff) - 4;
470 offset += ((int)(basePrimary >> 16) & 0xff) - 2;
475 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
481 public static long incThreeBytePrimaryByOffset(long basePrimary, boolean isCompressible, argument
485 offset += ((int)(basePrimary >> 8) & 0xff) - 2;
491 offset += ((int)(basePrimary >> 16) & 0xff) - 4;
495 offset += ((int)(basePrimary >> 16) & 0xff) - 2;
500 return primary | ((basePrimary & 0xff000000L) + ((long)offset << 24));
506 static long decTwoBytePrimaryByOneStep(long basePrimary, boolea argument
530 decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) argument
[all...]

Completed in 168 milliseconds