Home
last modified time | relevance | path

Searched refs:T_COUNT (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/unicode-normalization/src/
Dnormalize.rs117 const T_COUNT: u32 = 28; constant
118 const N_COUNT: u32 = V_COUNT * T_COUNT;
124 const T_LAST: u32 = T_BASE + T_COUNT - 1;
146 let v_index = (s_index % N_COUNT) / T_COUNT; in decompose_hangul()
149 let t_index = s_index % T_COUNT; in decompose_hangul()
159 let ti = si % T_COUNT; in hangul_decomposition_length()
178 let lv_index = l_index * N_COUNT + v_index * T_COUNT; in compose_hangul()
183 (S_BASE...S_LAST, T_FIRST...T_LAST) if (a - S_BASE) % T_COUNT == 0 => { in compose_hangul()
/external/rust/crates/unicode-normalization/scripts/
Dunicode.py63 S_BASE, L_COUNT, V_COUNT, T_COUNT = 0xAC00, 19, 21, 28 variable
64 S_COUNT = L_COUNT * V_COUNT * T_COUNT