OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_words
(Results
1 - 6
of
6
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java
40
public static final int
MAX_WORDS
= 18;
51
private final char[] mOutputChars = new char[MAX_WORD_LENGTH *
MAX_WORDS
];
53
private final int[] mScores = new int[
MAX_WORDS
];
125
MAX_WORD_LENGTH,
MAX_WORDS
, MAX_PROXIMITY_CHARS_SIZE);
/external/srec/srec/include/
srec_context.h
51
wordID
max_words
;
member in struct:__anon11196
54
char** words; /* size
max_words
*/
/external/srec/srec/crec/
srec_context.c
338
Interface->
max_words
= (wordID)(num_words + num_words_to_add);
340
/* *pwmap->words = (ptr32*) CALLOC_CLR(wmap->
max_words
, sizeof(ptr32), "graph.wordmap.words"); */
341
Interface->words = (char**) CALLOC_CLR(Interface->
max_words
, sizeof(char*), "srec.graph.wordmap.words");
554
wmap->
max_words
= wmap->num_words;
645
wmap->
max_words
= wmap->num_base_words;
721
if (wmap->num_words == wmap->
max_words
)
726
int itmp_max_words = wmap->
max_words
* FST_GROW_FACTOR;
728
if(itmp_max_words - wmap->
max_words
< FST_GROW_MINWORDS)
732
PLogError("error: word ptr overflow in wmap %d max %d\n", (int)wmap->num_words, wmap->
max_words
);
744
wmap->
max_words
= tmp_max_words
[
all
...]
/packages/inputmethods/LatinIME/native/src/
unigram_dictionary.cpp
41
MAX_WORD_LENGTH(maxWordLength),
MAX_WORDS
(maxWords),
156
while (suggestedWordsCount <
MAX_WORDS
&& mFrequencies[suggestedWordsCount] > 0) {
282
while (insertAt <
MAX_WORDS
) {
289
if (insertAt <
MAX_WORDS
) {
299
(
MAX_WORDS
- insertAt - 1) * sizeof(mFrequencies[0]));
303
(
MAX_WORDS
- insertAt - 1) * sizeof(short) * MAX_WORD_LENGTH);
[
all
...]
unigram_dictionary.h
111
const int
MAX_WORDS
;
/external/srec/tools/test_g2g/
test_g2g.c
227
fst->olabels->num_words, fst->olabels->
max_words
,
Completed in 155 milliseconds