Searched defs:BLOCK_SIZE (Results 1 - 25 of 28) sorted by relevance

12

/external/jemalloc/test/unit/
H A DSFMT.c38 #define BLOCK_SIZE 10000 macro
39 #define BLOCK_SIZE64 (BLOCK_SIZE / 2)
1454 uint32_t array32[BLOCK_SIZE] JEMALLOC_ATTR(aligned(16));
1455 uint32_t array32_2[BLOCK_SIZE] JEMALLOC_ATTR(aligned(16));
1460 assert_d_le(get_min_array_size32(), BLOCK_SIZE, local
1463 fill_array32(ctx, array32, BLOCK_SIZE);
1464 fill_array32(ctx, array32_2, BLOCK_SIZE);
1468 for (i = 0; i < BLOCK_SIZE; i++) {
1489 uint32_t array32[BLOCK_SIZE] JEMALLOC_ATTR(aligned(16));
1490 uint32_t array32_2[BLOCK_SIZE] JEMALLOC_ATT
1496 assert_d_le(get_min_array_size32(), BLOCK_SIZE, local
[all...]
/external/yaffs2/yaffs2/direct/
H A Dyaffs_fileem2k.h27 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE)) macro
39 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE)) macro
H A Dyaffs_fileem.c37 #define BLOCK_SIZE (32 * 528) macro
H A Dyaffs_flashif.c31 #define BLOCK_SIZE (32 * 528) macro
H A Dyaffs_ramdisk.c33 #define BLOCK_SIZE (32 * 528) macro
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESedeEngine.java14 protected static final int BLOCK_SIZE = 8; field in class:DESedeEngine
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;
H A DRC2Engine.java56 private static final int BLOCK_SIZE = 8; field in class:RC2Engine
157 return BLOCK_SIZE;
171 if ((inOff + BLOCK_SIZE) > in.length)
176 if ((outOff + BLOCK_SIZE) > out.length)
190 return BLOCK_SIZE;
H A DDESEngine.java15 protected static final int BLOCK_SIZE = 8; field in class:DESEngine
61 return BLOCK_SIZE;
75 if ((inOff + BLOCK_SIZE) > in.length)
80 if ((outOff + BLOCK_SIZE) > out.length)
87 return BLOCK_SIZE;
H A DAESEngine.java337 private static final int BLOCK_SIZE = 16; field in class:AESEngine
375 return BLOCK_SIZE;
412 return BLOCK_SIZE;
H A DAESFastEngine.java668 private static final int BLOCK_SIZE = 16; field in class:AESFastEngine
706 return BLOCK_SIZE;
743 return BLOCK_SIZE;
H A DBlowfishEngine.java300 private static final int BLOCK_SIZE = 8; // bytes = 64 bits field in class:BlowfishEngine
360 if ((inOff + BLOCK_SIZE) > in.length)
365 if ((outOff + BLOCK_SIZE) > out.length)
379 return BLOCK_SIZE;
388 return BLOCK_SIZE;
H A DTwofishEngine.java194 private static final int BLOCK_SIZE = 16; // bytes = 128 bits field in class:TwofishEngine
198 private static final int OUTPUT_WHITEN=INPUT_WHITEN+BLOCK_SIZE/4; // 4
199 private static final int ROUND_SUBKEYS=OUTPUT_WHITEN+BLOCK_SIZE/4;// 8
300 if ((inOff + BLOCK_SIZE) > in.length)
305 if ((outOff + BLOCK_SIZE) > out.length)
319 return BLOCK_SIZE;
332 return BLOCK_SIZE;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowStatFs.java14 public static final int BLOCK_SIZE = 4096; field in class:ShadowStatFs
25 return BLOCK_SIZE;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_rendering.c36 #define BLOCK_SIZE (BLOCK_WIDTH * BLOCK_HEIGHT) macro
227 blocks += BLOCK_SIZE;
244 blocks += BLOCK_SIZE;
255 blocks += BLOCK_SIZE;
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemcpy_mck.S269 #define BLOCK_SIZE 128*32 define
287 mov blocksize=BLOCK_SIZE
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_rendering.c36 #define BLOCK_SIZE (BLOCK_WIDTH * BLOCK_HEIGHT) macro
227 blocks += BLOCK_SIZE;
244 blocks += BLOCK_SIZE;
255 blocks += BLOCK_SIZE;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java24 private static final int BLOCK_SIZE = 16; field in class:GCMBlockCipher
58 if (c.getBlockSize() != BLOCK_SIZE)
61 "cipher required with a block size of " + BLOCK_SIZE + ".");
122 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
131 // (but must be 16 if nonce length not 12) (BLOCK_SIZE?)
140 this.H = new byte[BLOCK_SIZE];
148 this.J0 = new byte[BLOCK_SIZE];
153 this.J0[BLOCK_SIZE - 1] = 0x01;
158 byte[] X = new byte[BLOCK_SIZE];
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_enums.h43 typedef enum BLOCK_SIZE { enum
59 } BLOCK_SIZE; typedef in typeref:enum:BLOCK_SIZE
/external/libvpx/libvpx/vp9/common/
H A Dvp9_enums.h46 typedef enum BLOCK_SIZE { enum
62 } BLOCK_SIZE; typedef in typeref:enum:BLOCK_SIZE
/external/deqp/modules/gles3/functional/
H A Des3fTextureWrapTests.cpp230 static const int BLOCK_SIZE = 16; local
231 static const deUint8 blocks[][BLOCK_SIZE] =
251 DE_ASSERT(dataSize % BLOCK_SIZE == 0);
253 for (int i = 0; i < dataSize/BLOCK_SIZE; i++)
254 deMemcpy(&data[i*BLOCK_SIZE], &blocks[rnd.getInt(0, DE_LENGTH_OF_ARRAY(blocks)-1)][0], BLOCK_SIZE);
/external/kernel-headers/original/uapi/linux/
H A Dfs.h29 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS) macro
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c501 * are allocated in blocks. Each block has BLOCK_SIZE nodes. Blocks
545 #define BLOCK_SIZE 256 macro
993 if (ctx->ListState.CurrentPos + numNodes + 2 > BLOCK_SIZE) {
998 newblock = (Node *) malloc(sizeof(Node) * BLOCK_SIZE);
9053 ctx->ListState.CurrentList = make_list(name, BLOCK_SIZE);
/external/mesa3d/src/mesa/main/
H A Ddlist.c501 * are allocated in blocks. Each block has BLOCK_SIZE nodes. Blocks
545 #define BLOCK_SIZE 256 macro
993 if (ctx->ListState.CurrentPos + numNodes + 2 > BLOCK_SIZE) {
998 newblock = (Node *) malloc(sizeof(Node) * BLOCK_SIZE);
9053 ctx->ListState.CurrentList = make_list(name, BLOCK_SIZE);
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4295 milliseconds

12