Home | History | Annotate | Download | only in i18n

Lines Matching refs:step

72 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) {
74 // minus the step, modulo the number of usable byte values, plus the minimum.
77 U_ASSERT(0 < step && step <= 0x7f);
78 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step;
94 Collation::decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) {
96 // minus the step, modulo the number of usable byte values, plus the minimum.
97 U_ASSERT(0 < step && step <= 0x7f);
98 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step;
124 int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)