Home | History | Annotate | Download | only in src

Lines Matching refs:tempstr

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