Searched defs:input_word (Results 1 - 3 of 3) sorted by relevance

/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c85 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);
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) argument
1032 if(input_word[index] == '\'')
1035 letter = find_letter_index(input_word[index], lm);
1041 PrintError("unknown character on input %c - skipping\n", input_word[index], NULL, NULL);
1043 PLogError(L("unknown character on input %c - skipping\n"), input_word[index]);
1059 dp->properties[ Left1+j] = find_letter_index(input_word[i], lm);
1078 dp->properties[ Right1+j] = find_letter_index(input_word[i], lm);
1102 word[i] = find_letter_index(input_word[i], lm);
1244 pfprintf(PSTDOUT,"input word %s num_strings %d\n", input_word, lt
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1300 Int VG_(keyword_id) (const HChar* keywords, const HChar* input_word, argument
1303 const Int il = (input_word == NULL ? 0 : VG_(strlen) (input_word));
1320 if (input_word == NULL) {
1324 VG_(strcpy) (iw, input_word);
/external/valgrind/main/coregrind/
H A Dm_libcbase.c511 HChar *input_word; local
520 for (input_word = VG_(strtok_r)(tok_input, ",", &input_saveptr);
521 input_word;
522 input_word = VG_(strtok_r)(NULL, ",", &input_saveptr)) {
524 if (0 == VG_(strcmp)(input_word, "all")) {
527 } else if (0 == VG_(strcmp)(input_word, "none")) {
542 if (0 == VG_(strcmp)(input_word, token)) {

Completed in 156 milliseconds