HomeSort by relevance Sort by last modified time
    Searched defs:wordIndex (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 179 int wordIndex = index >>2;
192 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ;
196 wordIndex++;
197 if ( wordIndex == 16 ) { // intArray is full, computing hash
200 wordIndex = 0;
213 intArray[wordIndex] = ( ((int) byteInput[i ] & 0xFF) <<24 ) |
218 wordIndex++;
220 if ( wordIndex < 16 ) { // buffer is not full yet
224 wordIndex = 0;
241 intArray[wordIndex] = w
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserUnigramDictionary.java 127 int wordIndex = cursor.getColumnIndex(COLUMN_WORD);
130 String word = cursor.getString(wordIndex);
  /external/webkit/Source/WebKit/android/nav/
CacheBuilder.cpp     [all...]

Completed in 800 milliseconds