Lines Matching refs:decomp
861 ucdecomp(ac_uint4 code, ac_uint4 *num, ac_uint4 **decomp) in ucdecomp() argument
885 *decomp = (ac_uint4*)&_ucdcmp_decomp[_ucdcmp_nodes[m + 1]]; in ucdecomp()
893 uckdecomp(ac_uint4 code, ac_uint4 *num, ac_uint4 **decomp) in uckdecomp() argument
917 *decomp = (ac_uint4*)&_uckdcmp_decomp[_uckdcmp_nodes[m + 1]]; in uckdecomp()
925 ucdecomp_hangul(ac_uint4 code, ac_uint4 *num, ac_uint4 decomp[]) in ucdecomp_hangul() argument
931 decomp[0] = 0x1100 + (ac_uint4) (code / 588); in ucdecomp_hangul()
932 decomp[1] = 0x1161 + (ac_uint4) ((code % 588) / 28); in ucdecomp_hangul()
933 decomp[2] = 0x11a7 + (ac_uint4) (code % 28); in ucdecomp_hangul()
934 *num = (decomp[2] != 0x11a7) ? 3 : 2; in ucdecomp_hangul()
946 ac_uint4 num, class, *decomp, hangdecomp[3]; in uccanoncompatdecomp() local
955 if (mode ? uckdecomp(in[j], &num, &decomp) : ucdecomp(in[j], &num, &decomp)) { in uccanoncompatdecomp()
963 class = uccombining_class(decomp[k]); in uccanoncompatdecomp()
965 (*out)[i] = decomp[k]; in uccanoncompatdecomp()
971 (*out)[l] = decomp[k]; in uccanoncompatdecomp()