Home | History | Annotate | Download | only in unicode

Lines Matching defs:delta

433         int32_t delta=*pos++;
434 if(delta>=kMinTwoUnitDeltaLead) {
435 if(delta==kThreeUnitDeltaLead) {
436 delta=(pos[0]<<16)|pos[1];
439 delta=((delta-kMinTwoUnitDeltaLead)<<16)|*pos++;
442 return pos+delta;
446 int32_t delta=*pos++;
447 if(delta>=kMinTwoUnitDeltaLead) {
448 if(delta==kThreeUnitDeltaLead) {
505 // the string so far, or a "jump" delta to the next node.
509 // there is one unit and one "jump" delta.
510 // If the input unit is less than the sub-node unit, then "jump" by delta to
512 // (The delta has its own compact encoding.)
513 // Otherwise, skip the "jump" delta to the next sub-node
554 // Compact delta integers.