Lines Matching defs:delta
64 Exception index reduced from 12 bits to 11, simple case mapping delta reduced from 10 bits to 9.
69 Also, an additional optional exception slot is used for a 16-bit delta,
70 with one more excWord bit if the delta is actually negative,
105 15..7 signed delta to simple case mapping code point
106 (add delta to input code point)
140 moved here because the exception index needs more bits than the delta
146 10 the delta in the optional value slot is negative
158 4 delta to simple case mapping code point
159 (add delta to input code point, or subtract if excWord bit 10 is set)
240 delta(0), hasConditionalCaseMappings(false), hasTurkicCaseFolding(false),
244 delta(0), hasConditionalCaseMappings(false), hasTurkicCaseFolding(false),
249 int32_t delta;
401 int32_t delta=0;
419 /* uppercase mapping as delta if the character is lowercase */
422 delta=props.suc-start;
429 /* lowercase mapping as delta if the character is uppercase or titlecase */
432 delta=props.slc-start;
467 delta=0;
468 } else if(delta<UCASE_MIN_DELTA || UCASE_MAX_DELTA<delta) {
469 // The case mapping delta is too big for the main data word.
535 newExcProps->delta=delta;
546 /* store the simple case mapping delta */
547 value|=((uint32_t)delta<<UCASE_DELTA_SHIFT)&UCASE_DELTA_MASK;
959 if(ep.delta!=0) {
960 int32_t delta=ep.delta;
961 if(delta<0) {
963 delta=-delta;
965 slots[count]=(uint32_t)delta;
1076 if(count==1 && ep.delta!=0) {
1093 * Encode case-ignorable as delta==1 on uncased characters,