Lines Matching defs:step
65 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) {
67 // minus the step, modulo the number of usable byte values, plus the minimum.
70 U_ASSERT(0 < step && step <= 0x7f);
71 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step;
87 Collation::decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) {
89 // minus the step, modulo the number of usable byte values, plus the minimum.
90 U_ASSERT(0 < step && step <= 0x7f);
91 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step;
117 int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)