/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>
|
/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...] |
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
RC5ParameterSpecTest.java | 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method 46 int wordSize = 16; 50 new RC5ParameterSpec(version, rounds, wordSize, null); 57 new RC5ParameterSpec(version, rounds, wordSize+8, iv); 64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3}); 71 wordSize, iv); 79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int 87 int wordSize = 16; 92 new RC5ParameterSpec(version, rounds, wordSize, null, offset); 99 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset) [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
Bitmap.h | 49 static const WordType wordSize = sizeof(WordType) * 8; 50 static const WordType words = (size + wordSize - 1) / wordSize; 71 return !!(bits[n / wordSize] & (one << (n % wordSize))); 77 bits[n / wordSize] |= (one << (n % wordSize)); 83 WordType mask = one << (n % wordSize); 84 size_t index = n / wordSize; 93 bits[n / wordSize] &= ~(one << (n % wordSize)) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
RC5ParameterSpecTest.java | 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method 46 int wordSize = 16; 50 new RC5ParameterSpec(version, rounds, wordSize, null); 57 new RC5ParameterSpec(version, rounds, wordSize+8, iv); 64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3}); 71 wordSize, iv); 79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int 87 int wordSize = 16; 92 new RC5ParameterSpec(version, rounds, wordSize, null, offset); 99 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/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
FlyweightMapStorage.java | 70 * index} using the provided {@code wordSize} in bytes. Note that only integer and short sizes are 74 * @param wordSize the number of bytes used to store the provided value 79 private static void storeWordInBuffer(ByteBuffer buffer, int wordSize, int index, int value) { 80 index *= wordSize; 82 if (wordSize == SHORT_SIZE) { 94 * @param wordSize the number of bytes used to store the value 99 private static int readWordFromBuffer(ByteBuffer buffer, int wordSize, int index) { 100 index *= wordSize; 101 return wordSize == SHORT_SIZE ? buffer.getShort(index) : buffer.getInt(index); 156 * @param wordSize the number of bytes used to store the value read from the strea [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)
|
/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>
|
/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.
|