Lines Matching refs:tempstr
657 char tempstr[50]; in load_allowable_cons_comb() local
677 tempstr[0] = '\0'; in load_allowable_cons_comb()
682 strncat(tempstr, tok, toklen); in load_allowable_cons_comb()
683 tempstr[count+1] = '\0'; in load_allowable_cons_comb()
684 strcat(tempstr, " "); in load_allowable_cons_comb()
692 tempstr[count-1] = '\0'; in load_allowable_cons_comb()
694 … lts->allowable_cons_comb[lts->num_cons_comb] = (char*) lts_alloc(strlen(tempstr)+1, sizeof(char)); in load_allowable_cons_comb()
700 strcpy(lts->allowable_cons_comb[lts->num_cons_comb], tempstr); in load_allowable_cons_comb()
703 pfprintf(PSTDOUT,"LOAD_TREE: allowable_cons_comb[%d]: %s\n", lts->num_cons_comb, tempstr); in load_allowable_cons_comb()
1009 char tempstr[MAX_WORD_LEN]; in fill_up_dp_for_letter() local
1248 strcpy(tempstr, input_word); in fill_up_dp_for_letter()
1249 tempstr[index] = '\0'; in fill_up_dp_for_letter()
1251 dp->properties[LeftString] = find_best_prefix_string(tempstr, lts); in fill_up_dp_for_letter()
1403 char tempstr[20]; in adjust_syllable_boundaries() local
1433 sprintf(tempstr, "%s %s %s", output_phone_string[j-2], output_phone_string[j-1], in adjust_syllable_boundaries()
1435 if (!is_allowable_cons_comb(lts, tempstr)) { in adjust_syllable_boundaries()
1436 sprintf(tempstr, "%s %s", output_phone_string[j-1], output_phone_string[j]); in adjust_syllable_boundaries()
1437 if (!is_allowable_cons_comb(lts, tempstr)) { in adjust_syllable_boundaries()
1450 sprintf(tempstr, "%s %s", output_phone_string[j-1], output_phone_string[j]); in adjust_syllable_boundaries()
1451 if (!is_allowable_cons_comb(lts, tempstr)) { in adjust_syllable_boundaries()