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

12

/external/autotest/client/cros/chameleon/
H A Dedid.py41 BLOCK_SIZE = 128 variable in class:Edid
64 if data_len % Edid.BLOCK_SIZE != 0:
68 for start in xrange(0, data_len, Edid.BLOCK_SIZE):
71 map(ord, data[start:start+Edid.BLOCK_SIZE]))
74 start / Edid.BLOCK_SIZE)
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Dstatic.py16 BLOCK_SIZE = 1<<16 variable
53 app_iter = req.environ['wsgi.file_wrapper'](file, BLOCK_SIZE)
84 block_size = BLOCK_SIZE
/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/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.java418 private static final int BLOCK_SIZE = 16; field in class:AESEngine
456 return BLOCK_SIZE;
493 return BLOCK_SIZE;
H A DAESFastEngine.java746 private static final int BLOCK_SIZE = 16; field in class:AESFastEngine
784 return BLOCK_SIZE;
821 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/chromium-trace/catapult/third_party/Paste/paste/
H A Dfileapp.py17 BLOCK_SIZE = 4096 * 16 variable
236 return file_wrapper(file, BLOCK_SIZE)
245 self.block_size = block_size or BLOCK_SIZE
/external/robolectric/v1/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/autotest/client/cros/
H A Dverity_utils.py25 BLOCK_SIZE = 4096 variable
278 BLOCK_SIZE,
/external/deqp/modules/gles31/functional/
H A Des31fTextureBorderClampTests.cpp192 const int BLOCK_SIZE = 16; local
193 const deUint8 block[BLOCK_SIZE] = { 252, 253, 255, 255, 255, 255, 255, 255, 223, 251, 28, 206, 54, 251, 160, 174 };
195 DE_ASSERT(blockByteSize == BLOCK_SIZE);
197 deMemcpy((deUint8*)dst.getData() + ndx * BLOCK_SIZE, block, BLOCK_SIZE);
H A Des31fCopyImageTests.cpp456 const int BLOCK_SIZE = 16; local
457 const deUint8 blocks[][BLOCK_SIZE] =
470 DE_ASSERT(texelBlockSize == BLOCK_SIZE);
476 deMemcpy(buffer + i * BLOCK_SIZE, blocks[blockNdx], 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.java26 private static final int BLOCK_SIZE = 16; field in class:GCMBlockCipher
65 if (c.getBlockSize() != BLOCK_SIZE)
68 "cipher required with a block size of " + BLOCK_SIZE + ".");
133 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
149 this.H = new byte[BLOCK_SIZE];
161 this.J0 = new byte[BLOCK_SIZE];
166 this.J0[BLOCK_SIZE - 1] = 0x01;
171 byte[] X = new byte[BLOCK_SIZE];
176 this.S = new byte[BLOCK_SIZE];
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DBlockFieldMatrix.java45 * The regular blocks represent {@link #BLOCK_SIZE} x {@link #BLOCK_SIZE} squares. Blocks
48 * {@link #BLOCK_SIZE}<sup>2</sup> elements long for regular blocks. The blocks are themselves
72 public static final int BLOCK_SIZE = 36; field in class:BlockFieldMatrix
109 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE;
110 blockColumns = (columns + BLOCK_SIZE - 1) / BLOCK_SIZE;
159 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE;
[all...]
H A DBlockRealMatrix.java46 * The regular blocks represent {@link #BLOCK_SIZE} x {@link #BLOCK_SIZE} squares. Blocks
49 * {@link #BLOCK_SIZE}<sup>2</sup> elements long for regular blocks. The blocks are themselves
70 public static final int BLOCK_SIZE = 52; field in class:BlockRealMatrix
106 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE;
107 blockColumns = (columns + BLOCK_SIZE - 1) / BLOCK_SIZE;
156 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE;
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fTextureWrapTests.cpp231 static const int BLOCK_SIZE = 16; local
232 static const deUint8 blocks[][BLOCK_SIZE] =
252 DE_ASSERT(dataSize % BLOCK_SIZE == 0);
254 for (int i = 0; i < dataSize/BLOCK_SIZE; i++)
255 deMemcpy(&data[i*BLOCK_SIZE], &blocks[rnd.getInt(0, DE_LENGTH_OF_ARRAY(blocks)-1)][0], BLOCK_SIZE);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_enums.h59 typedef uint8_t BLOCK_SIZE; typedef
/external/kernel-headers/original/uapi/linux/
H A Dfs.h29 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS) macro
/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 1077 milliseconds

12