Home | History | Annotate | Download | only in src

Lines Matching refs:mMaxWordLength

59     mMaxWordLength = maxWordLength;
186 && length < wideStrLen(mOutputChars + insertAt * mMaxWordLength))) {
196 memmove((char*) mOutputChars + (insertAt + 1) * mMaxWordLength * sizeof(short),
197 (char*) mOutputChars + (insertAt ) * mMaxWordLength * sizeof(short),
198 (mMaxWords - insertAt - 1) * sizeof(short) * mMaxWordLength);
199 unsigned short *dest = mOutputChars + (insertAt ) * mMaxWordLength;
225 && length < wideStrLen(mBigramChars + insertAt * mMaxWordLength))) {
236 memmove((char*) mBigramChars + (insertAt + 1) * mMaxWordLength * sizeof(short),
237 (char*) mBigramChars + (insertAt ) * mMaxWordLength * sizeof(short),
238 (mMaxBigrams - insertAt - 1) * sizeof(short) * mMaxWordLength);
239 unsigned short *dest = mBigramChars + (insertAt ) * mMaxWordLength;
398 mMaxWordLength = maxWordLength;
432 unsigned short word[mMaxWordLength];