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

1 2 3

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
wordsize.h 1 /* Determine the wordsize from the preprocessor defines. */
a.out.h 5 #include <bits/wordsize.h>
elfclass.h 9 #include <bits/wordsize.h>
semaphore.h 24 #include <bits/wordsize.h>
setjmp.h 27 #include <bits/wordsize.h>
mathdef.h 26 # include <bits/wordsize.h>
fenv.h 23 #include <bits/wordsize.h>
msq.h 24 #include <bits/wordsize.h>
byteswap.h 28 #include <bits/wordsize.h>
environments.h 23 #include <bits/wordsize.h>
sigcontext.h 26 #include <bits/wordsize.h>
utmp.h 28 #include <bits/wordsize.h>
utmpx.h 26 #include <bits/wordsize.h>
xopen_lim.h 136 # include <bits/wordsize.h>
  /libcore/luni/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 31 private final int wordSize;
42 * @param wordSize
45 public RC5ParameterSpec(int version, int rounds, int wordSize) {
48 this.wordSize = wordSize;
58 * <code>2 * (wordSize / 8)</code> bytes which are copied to protect them
65 * @param wordSize
71 * * (wordSize / 8)</code>.
73 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) {
77 if (iv.length < 2 * (wordSize / 8))
    [all...]
  /libcore/luni/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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/gnu/
stubs.h 4 #include <bits/wordsize.h>
lib-names.h 7 #include <bits/wordsize.h>
  /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)
  /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);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
reg.h 21 #include <bits/wordsize.h>
  /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 */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 134 int wordSize = mCodes.size();
135 if (wordSize == 0) {
  /bionic/libm/man/
ieee.3 159 Wordsize: 32 bits.
194 Wordsize: 64 bits.
224 Wordsize: 96 bits.
254 Wordsize: 128 bits.

Completed in 1521 milliseconds

1 2 3