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

1 2 3

  /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...]
  /libcore/ojluni/src/main/java/java/util/
BitSet.java 111 private static int wordIndex(int bitIndex) {
166 words = new long[wordIndex(nbits-1) + 1];
343 * Ensures that the BitSet can accommodate a given wordIndex,
347 * @param wordIndex the index to be accommodated.
349 private void expandTo(int wordIndex) {
350 int wordsRequired = wordIndex+1;
382 int wordIndex = wordIndex(bitIndex);
383 expandTo(wordIndex);
385 words[wordIndex] ^= (1L << bitIndex)
    [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...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
opcode.cpp 164 for (uint16_t wordIndex = 0; wordIndex < wordCount; ++wordIndex) {
165 pInst->words[wordIndex] = spvFixWord(words[wordIndex], endian);
166 if (!wordIndex) {
169 spvOpcodeSplit(pInst->words[wordIndex], &thisWordCount, &thisOpcode);
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 542 int wordIndex = index >>2;
555 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ;
559 wordIndex++;
560 if ( wordIndex == 16 ) { // intArray is full, computing hash
563 wordIndex = 0;
576 intArray[wordIndex] = ( ((int) byteInput[i ] & 0xFF) <<24 ) |
581 wordIndex++;
583 if ( wordIndex < 16 ) { // buffer is not full yet
587 wordIndex = 0;
604 intArray[wordIndex] = w
    [all...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 189 struct WordIndex {
193 } wordIndex;
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 282 fun getWordSuffix(wordIndex : Int) : String {
283 return if(wordIndex == 0) "" else "_$wordIndex"
    [all...]
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0-rc5/
compiler-1.0-rc5.jar 
  /external/mesa3d/include/GL/
glext.h     [all...]
  /external/swiftshader/include/GL/
glext.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glext.h     [all...]
  /prebuilts/tools/common/intellij-core/171.2455.10/
intellij-core.jar 
  /prebuilts/devtools/tools/lib/
uast-162.2228.14.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/162.2228.14/
uast-162.2228.14.jar 
  /prebuilts/tools/common/m2/repository/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.4/
uast-145.597.4.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 
uast-162.2228.14.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/
compiler-2.0.0.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 

Completed in 1004 milliseconds

1 2 3