Home | History | Annotate | Download | only in src

Lines Matching refs:word_len

85 int fill_up_dp_for_letter(LTS *lts, const char *input_word, int word_len, int index, int root_start, int root_end, int left_phone);
93 SWIsltsResult lts_for_word(LTS *lts, char *word, int word_len, char **output_phone_string, int max_phone_length, int *num_out);
1001 int fill_up_dp_for_letter(LTS *lts, const char *input_word, int word_len, int index, int root_start, int root_end, int left_phone)
1076 if (i >= word_len) dp->properties[Right1+j] = find_letter_index(LTS_MARKER_PIPESEP_CHAR, lm);
1095 dp->properties[ WordLen] = word_len;
1098 else if (index == word_len-1) dp->properties[ LetInWord] = 2;
1101 for (i=0;i<word_len;i++) {
1108 first_syl_end = word_len;
1109 for (i=0;i<word_len;i++) {
1111 for (j=i+1;j<word_len;j++) {
1119 for (i=word_len-1;i>=0;i--) {
1137 first_syl_end = word_len;
1138 for (i=0;i<word_len;i++) {
1140 for (j=i+1;j<word_len;j++) {
1143 for (;j<word_len;j++) {
1151 for (i=word_len-1;i>=0;i--) {
1173 first_syl_end = word_len;
1176 for (j=i+1;j<word_len;j++) {
1202 first_syl_end = word_len;
1205 for (j=i+1;j<word_len;j++) {
1208 for (;j<word_len;j++) {
1256 for (i=0;i<word_len;i++) {
1270 dp->word_len,
1531 SWIsltsResult lts_for_word(LTS *lts, char *word, int word_len, char **output_phone_string, int max_phone_length, int *pnum_out)
1548 root_end = word_len;
1550 for (i=0;i<word_len;i++) {
1597 if (fill_up_dp_for_letter(lts, word, word_len, i, root_start, root_end, left_phone)) continue;
1625 if (j >= word_len) {