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

1 2

  /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/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
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...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 190 struct WordIndex {
194 } wordIndex;
  /libcore/ojluni/src/main/java/java/util/
BitSet.java 111 private static int wordIndex(int bitIndex) {
166 words = new long[wordIndex(nbits-1) + 1];
337 * Ensures that the BitSet can accommodate a given wordIndex,
341 * @param wordIndex the index to be accommodated.
343 private void expandTo(int wordIndex) {
344 int wordsRequired = wordIndex+1;
376 int wordIndex = wordIndex(bitIndex);
377 expandTo(wordIndex);
379 words[wordIndex] ^= (1L << bitIndex)
    [all...]
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0-rc5/
compiler-1.0-rc5.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0/
compiler-1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.1/
compiler-1.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-alpha9/
compiler-2.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-beta2/
compiler-2.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-beta5/
compiler-2.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/uast/
uast-145.597.3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0/
compiler-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-beta6/
compiler-2.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-beta7/
compiler-2.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-rc3/
compiler-2.0.0-rc3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-alpha3/
compiler-2.1.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-alpha4/
compiler-2.1.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha6/
compiler-2.2.0-alpha6.jar 
  /prebuilts/tools/common/offline-m2/com/android/databinding/compiler/2.1.3/
compiler-2.1.3.jar 
  /prebuilts/tools/common/offline-m2/com/android/databinding/compiler/2.2.0/
compiler-2.2.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar 

Completed in 845 milliseconds

1 2