HomeSort by relevance Sort by last modified time
    Searched refs:S_INT_MAX (Results 1 - 6 of 6) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
shortcut_utils.h 41 shortcutScore = S_INT_MAX;
  /packages/inputmethods/LatinIME/native/jni/src/
correction.h 140 static const int TWO_31ST_DIV_255 = S_INT_MAX / 255;
142 return (num < TWO_31ST_DIV_255 ? 255 * num : S_INT_MAX);
145 static const int TWO_31ST_DIV_2 = S_INT_MAX / 2;
148 if (temp != S_INT_MAX) {
158 *base = TWO_31ST_DIV_2 >= temp ? temp << 1 : S_INT_MAX;
164 *base = tempRetval >= temp ? tempRetval : S_INT_MAX;
172 return n < 31 ? 1 << n : S_INT_MAX;
180 if (*freq != S_INT_MAX) {
defines.h 251 #ifndef S_INT_MAX
252 #define S_INT_MAX 2147483647 // ((1 << 31) - 1)
correction.cpp 761 const int divider = diff < 31 ? 1 << diff : S_INT_MAX;
    [all...]
binary_format.h 199 return S_INT_MAX;
    [all...]
unigram_dictionary.cpp 391 shortcutScore = S_INT_MAX;
    [all...]

Completed in 77 milliseconds