Home | History | Annotate | Download | only in impl

Lines Matching defs:block

184         int   block = 0;
188 // - a partial data block
189 // - a reference to the null (default) data block.
190 // - a reference to the index2 null block
202 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
206 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
211 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
225 } else if (block == dataNullOffset) {
226 // The block at dataNullOffset has all values == initialValue.
228 // encounter a null block at its beginning, and can skip over
229 // a number of code points equal to the length of the block.
235 // Current position refers to an ordinary data block.
237 int startIx = block + (cp & UTRIE2_DATA_MASK);
238 int limitIx = block + UTRIE2_DATA_BLOCK_LENGTH;
247 // The ordinary data block contained our value until its end.