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

  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 178 int wordIndex = index >>2;
191 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ;
195 wordIndex++;
196 if ( wordIndex == 16 ) { // intArray is full, computing hash
199 wordIndex = 0;
212 intArray[wordIndex] = ( ((int) byteInput[i ] & 0xFF) <<24 ) |
217 wordIndex++;
219 if ( wordIndex < 16 ) { // buffer is not full yet
223 wordIndex = 0;
240 intArray[wordIndex] = w
    [all...]
  /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...]
  /dalvik/vm/
BitVector.cpp 298 unsigned int wordIndex = bitIndex >> 5;
300 if (pBits->storage[wordIndex] & mask) {
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 190 struct WordIndex {
194 } wordIndex;
  /external/skia/src/sfnt/
SkOTTable_glyf.h 190 struct WordIndex {
194 } wordIndex;

Completed in 1038 milliseconds