Home | History | Annotate | Download | only in impl

Lines Matching defs:block

181         int   block = 0;
185 // - a partial data block
186 // - a reference to the null (default) data block.
187 // - a reference to the index2 null block
199 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
203 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
208 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
222 } else if (block == dataNullOffset) {
223 // The block at dataNullOffset has all values == initialValue.
225 // encounter a null block at its beginning, and can skip over
226 // a number of code points equal to the length of the block.
232 // Current position refers to an ordinary data block.
234 int startIx = block + (cp & UTRIE2_DATA_MASK);
235 int limitIx = block + UTRIE2_DATA_BLOCK_LENGTH;
244 // The ordinary data block contained our value until its end.