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...]
  /external/webkit/Source/WebKit/android/content/
PhoneEmailDetector.cpp 302 int wordIndex = 0;
307 match = wordMatch[wordIndex];
310 if (chars[wordIndex] != match)
312 wordIndex++;
317 wordIndex = 0;
320 wordIndex = 1;
322 chars += wordIndex;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
FlyweightMapStorage.java 201 int wordIndex = index * wordSize;
203 outputBuffer.putShort(wordIndex, objectInput.readShort());
205 outputBuffer.putInt(wordIndex, objectInput.readInt());
221 int wordIndex = index * wordSize;
223 objectOutput.writeShort(inputBuffer.getShort(wordIndex));
225 objectOutput.writeInt(inputBuffer.getInt(wordIndex));
240 int wordIndex = index * wordSize;
241 return wordSize == SHORT_NUM_BYTES ? buffer.getShort(wordIndex) : buffer.getInt(wordIndex);
256 int wordIndex = index * wordSize
    [all...]

Completed in 62 milliseconds