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

  /packages/inputmethods/PinyinIME/jni/share/
spellingtable.cpp 81 size_t hash_pos = 0; local
85 hash_pos += (size_t)spelling_str[pos];
88 hash_pos = hash_pos % spelling_max_num_;
89 return hash_pos;
92 size_t SpellingTable::hash_pos_next(size_t hash_pos) {
93 hash_pos += 123;
94 hash_pos = hash_pos % spelling_max_num_;
95 return hash_pos;
149 size_t hash_pos = get_hash_pos(spelling_str); local
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
spellingtable.h 67 size_t hash_pos_next(size_t hash_pos);

Completed in 10 milliseconds