HomeSort by relevance Sort by last modified time
    Searched full:wordsize (Results 1 - 19 of 19) sorted by null

  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 33 private final int wordSize;
44 * @param wordSize
47 public RC5ParameterSpec(int version, int rounds, int wordSize) {
50 this.wordSize = wordSize;
60 * <code>2 * (wordSize / 8)</code> bytes which are copied to protect them
67 * @param wordSize
73 * * (wordSize / 8)</code>.
75 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) {
79 if (iv.length < 2 * (wordSize / 8))
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 45 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
59 int wordSize = 16;
63 new RC5ParameterSpec(version, rounds, wordSize, null);
70 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
77 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
84 wordSize, iv);
92 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
106 int wordSize = 16;
111 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
118 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset)
    [all...]
  /external/tcpdump/
cpack.c 52 /* Advance to the next wordsize boundary. Return NULL if fewer than
53 * wordsize bytes remain in the buffer after the boundary. Otherwise,
57 cpack_align_and_reserve(struct cpack_state *cs, size_t wordsize)
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
64 /* Too little space for wordsize bytes? */
65 if (next - cs->c_buf + wordsize > cs->c_len)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 123 int wordSize = mCodes.size();
124 if (wordSize == 0) {
127 // StringBuffer sb = new StringBuffer(wordSize);
128 // for (int i = 0; i < wordSize; i++) {
  /external/libffi/src/sparc/
ffi.c 253 int wordsize; local
257 wordsize = 4;
263 cif->bytes += wordsize;
273 wordsize = 8;
285 cif->bytes += 16 * wordsize;
290 cif->bytes = ALIGN(cif->bytes, 2 * wordsize);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
BrokenJCEBlockCipher.java 165 int wordSize = Integer.parseInt(modeName.substring(3));
168 new OFBBlockCipher(cipher.getUnderlyingCipher(), wordSize));
181 int wordSize = Integer.parseInt(modeName.substring(3));
184 new CFBBlockCipher(cipher.getUnderlyingCipher(), wordSize));
JCEBlockCipher.java 186 int wordSize = Integer.parseInt(modeName.substring(3));
189 new OFBBlockCipher(baseEngine, wordSize));
202 int wordSize = Integer.parseInt(modeName.substring(3));
205 new CFBBlockCipher(baseEngine, wordSize));
  /dalvik/libcore/crypto/src/main/java/org/apache/harmony/crypto/internal/nls/
messages.properties 67 crypto.32=iv.length < 2 * (wordSize / 8)
69 crypto.34=iv.length - offset < 2 * (wordSize / 8)
  /external/webkit/JavaScriptCore/wtf/wince/
mt19937ar.c 84 mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
92 mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
  /hardware/ti/omap3/dspbridge/inc/
dbreg.h 109 #define WORDSIZE "WordSize" /* NumBytes in DSP Word */
  /bionic/libm/man/
ieee.3 159 Wordsize: 32 bits.
194 Wordsize: 64 bits.
224 Wordsize: 96 bits.
254 Wordsize: 128 bits.
  /external/bluetooth/glib/glib/
grand.c 332 rand->mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
347 rand->mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
  /frameworks/base/tools/aapt/
AaptAssets.cpp 1198 void* AaptFile::padData(size_t wordSize)
1200 const size_t extra = mDataSize%wordSize;
1206 void* data = editData(initial+(wordSize-extra));
1208 memset(((uint8_t*)data) + initial, 0, wordSize-extra);
    [all...]
AaptAssets.h 166 void* padData(size_t wordSize);
  /external/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
  /external/bison/
OChangeLog     [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/tools/linux/
aapt 

Completed in 1189 milliseconds