Home | History | Annotate | Download | only in coll

Lines Matching refs:step

39      * Mask for getting the primary range step value from a primary-range-end element.
134 return elements[(int)elements[IX_FIRST_PRIMARY_INDEX]]; // step=0: cannot be a range end
220 int step;
225 step = (int)q & PRIMARY_STEP_MASK;
226 if(step == 0) {
237 step = (int)nextElement & PRIMARY_STEP_MASK;
241 return Collation.decTwoBytePrimaryByOneStep(p, isCompressible, step);
243 return Collation.decThreeBytePrimaryByOneStep(p, isCompressible, step);
324 int step;
325 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int)q & PRIMARY_STEP_MASK) != 0) {
328 return Collation.incTwoBytePrimaryByOffset(p, isCompressible, step);
330 return Collation.incThreeBytePrimaryByOffset(p, isCompressible, step);
488 if(p < (q & 0xffffff00L)) { // Reset the "step" bits of a range end primary.