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

1 2 3 4

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_mem.cc 15 #define BLOCK_SIZE (1 << 16)
16 #define BLOCK_MASK (BLOCK_SIZE - 1)
  /external/yaffs2/yaffs2/direct/
yaffs_fileem2k.h 27 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE))
39 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE))
yaffs_fileem.c 37 #define BLOCK_SIZE (32 * 528)
yaffs_flashif.c 31 #define BLOCK_SIZE (32 * 528)
yaffs_ramdisk.c 33 #define BLOCK_SIZE (32 * 528)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 14 protected static final int BLOCK_SIZE = 8;
82 return BLOCK_SIZE;
96 if ((inOff + BLOCK_SIZE) > in.length)
101 if ((outOff + BLOCK_SIZE) > out.length)
106 byte[] temp = new byte[BLOCK_SIZE];
121 return BLOCK_SIZE;
RC2Engine.java 56 private static final int BLOCK_SIZE = 8;
157 return BLOCK_SIZE;
171 if ((inOff + BLOCK_SIZE) > in.length)
176 if ((outOff + BLOCK_SIZE) > out.length)
190 return BLOCK_SIZE;
DESEngine.java 15 protected static final int BLOCK_SIZE = 8;
61 return BLOCK_SIZE;
75 if ((inOff + BLOCK_SIZE) > in.length)
80 if ((outOff + BLOCK_SIZE) > out.length)
87 return BLOCK_SIZE;
AESEngine.java 337 private static final int BLOCK_SIZE = 16;
375 return BLOCK_SIZE;
412 return BLOCK_SIZE;
AESFastEngine.java     [all...]
BlowfishEngine.java 300 private static final int BLOCK_SIZE = 8; // bytes = 64 bits
360 if ((inOff + BLOCK_SIZE) > in.length)
365 if ((outOff + BLOCK_SIZE) > out.length)
379 return BLOCK_SIZE;
388 return BLOCK_SIZE;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStatFs.java 14 public static final int BLOCK_SIZE = 4096;
25 return BLOCK_SIZE;
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 36 private static final int BLOCK_SIZE = 4096;
37 private byte[] block = new byte[BLOCK_SIZE];
55 while(total < BLOCK_SIZE) {
56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
79 f.setLength(BLOCK_SIZE);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 128 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
135 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
136 public SHA1() { super("SHA-1", EVP_MD, SIZE, BLOCK_SIZE); }
142 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
143 public SHA256() { super("SHA-256", EVP_MD, SIZE, BLOCK_SIZE); }
149 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
150 public SHA384() { super("SHA-384", EVP_MD, SIZE, BLOCK_SIZE); }
156 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
157 public SHA512() { super("SHA-512", EVP_MD, SIZE, BLOCK_SIZE); }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
mount.h 28 #define BLOCK_SIZE 1024
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
mount.h 28 #define BLOCK_SIZE 1024
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
mount.h 28 #define BLOCK_SIZE 1024
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 36 #define BLOCK_SIZE (BLOCK_WIDTH * BLOCK_HEIGHT)
227 blocks += BLOCK_SIZE;
244 blocks += BLOCK_SIZE;
255 blocks += BLOCK_SIZE;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
AES.java     [all...]
BlowFish.java 169 private static final int BLOCK_SIZE = 8; // bytes = 64 bits
234 return BLOCK_SIZE;
  /external/grub/stage2/
vstafs.h 26 #define BLOCK_SIZE 512
  /external/libvpx/libvpx/vp9/common/
vp9_enums.h 25 typedef enum BLOCK_SIZE {
41 } BLOCK_SIZE;
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 36 #define BLOCK_SIZE (BLOCK_WIDTH * BLOCK_HEIGHT)
227 blocks += BLOCK_SIZE;
244 blocks += BLOCK_SIZE;
255 blocks += BLOCK_SIZE;
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 36 * blocks. Block size is always 16 bytes ({@link #BLOCK_SIZE}. Sector size varies.
116 public static final int BLOCK_SIZE = 16;
263 return mSize / BLOCK_SIZE;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
SparseTableTests.java 41 private static final int BLOCK_SIZE = 8;
58 final SparseTable table = new SparseTable(16, BLOCK_SIZE, 1);
81 final SparseTable table = new SparseTable(DEFAULT_SIZE, BLOCK_SIZE, 1);
109 new File[] { contentFile }, BLOCK_SIZE);
143 final SparseTable table = new SparseTable(DEFAULT_SIZE, BLOCK_SIZE, numOfContents);
168 BLOCK_SIZE);

Completed in 2324 milliseconds

1 2 3 4