Lines Matching defs:key
144 // key: a code point
150 // The key table is sorted in ascending code point order. (not on the
153 // Lookup is done by means of a binary search in the key table.
169 // 2) Removal of the SL/SA/ML/MA and multi-table flags in the key bitmask.
170 // 3) Expansion of string length value in the key bitmask from 2 bits to 8 bits.
180 inline static UChar32 keyToCodePoint(int32_t key) {
181 return key & 0x00ffffff;
183 inline static int32_t keyToLength(int32_t key) {
184 return ((key & 0xff000000) >> 24) + 1;
258 // Get the code point (key) at the specified index.