Home | History | Annotate | Download | only in src

Lines Matching defs:out

411   char               * out;
431 out = outputs[i] = lts_alloc(olen + 1, sizeof(char));
432 if (out == NULL) {
438 PORT_FREAD_CHAR(out, sizeof(char), olen, fp);
440 out[olen] = '\0';
453 if (ilen > 0) pfprintf(PSTDOUT,"LOAD_TREE: got input %s out %s\n", in, outputs[i]);
454 pfprintf(PSTDOUT,"LOAD_TREE: outputs[%d] len %d out %x out %s\n", i, olen, outputs[i], outputs[i]);
1105 /*figure out syllable in word - not really syllables - just looks to see if is or at first or last vowel*/
1397 char *out;
1409 out = output_phone_string[i];
1410 if (strcmp(out, LTS_MARKER_SYLL_START) == 0) { /*means there is a syllable boundary
1416 out = output_phone_string[j];
1417 if (isdigit(out[strlen(out)-1])) {
1421 if (strcmp(out, LTS_MARKER_WORD_START) == 0) {
1425 if (strcmp(out, LTS_MARKER_PRON_START) == 0) {
1469 out = output_phone_string[i+1];
1471 if (isdigit(out[strlen(out)-1])) {
1472 stress = atoi(out + strlen(out)-1);
1481 } /* end if (strcmp(out, LTS_MARKER_SYLL_START) == 0) */
1486 out = output_phone_string[i];
1487 if ((strncmp(out, LTS_MARKER_SYLL_START, 2) != 0) && isdigit(out[strlen(out)-1])) {
1488 out[strlen(out)-1] = '\0'; /*remove the stress from the vowel*/
1504 out = output_phone_string[j];
1505 if(strncmp(out, LTS_MARKER_SYLL_START, 2) == 0 && isdigit(out[strlen(out)-1])){
1506 stress = atoi(out + strlen(out)-1);
1573 pfprintf(PSTDOUT,"out[%d] %s\n", num_out-1, output_phone_string[num_out-1]);