Home | History | Annotate | Download | only in i18n

Lines Matching full:hash

124  * uint32_t unsafeCP; - hash table of unsafe code points (uint8_t *). See ucol_unsafeCP function.
125 * uint32_t contrEndCP; - hash table of final code points in contractions (uint8_t *). See ucol_contractionEndCP.
229 /* Unsafe UChar hash table table size. */
800 uint32_t unsafeCP; /* hash table of unsafe code points */
801 uint32_t contrEndCP; /* hash table of final code points */
935 const uint8_t *contrEndCP; /* Contraction ending chars hash table */
1045 int32_t hash;
1052 hash = c;
1053 if (hash >= UCOL_UNSAFECP_TABLE_SIZE*8) {
1059 hash = (hash & UCOL_UNSAFECP_TABLE_MASK) + 256;
1061 htbyte = coll->unsafeCP[hash>>3];
1062 return ((htbyte >> (hash & 7)) & 1);