OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BLOCK_SIZE_BYTES
(Results
1 - 4
of
4
) sorted by null
/external/deqp/framework/common/
tcuAstcUtil.hpp
56
BLOCK_SIZE_BYTES
= 128/8,
/external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherChaCha20.java
36
private static final int
BLOCK_SIZE_BYTES
= 64;
80
int len = Math.min(
BLOCK_SIZE_BYTES
- currentBlockConsumedBytes, inputLenRemaining);
81
byte[] singleBlock = new byte[
BLOCK_SIZE_BYTES
];
82
byte[] singleBlockOut = new byte[
BLOCK_SIZE_BYTES
];
85
BLOCK_SIZE_BYTES
, encodedKey, iv, blockCounter);
88
if (currentBlockConsumedBytes <
BLOCK_SIZE_BYTES
) {
92
assert currentBlockConsumedBytes ==
BLOCK_SIZE_BYTES
;
101
currentBlockConsumedBytes = inputLenRemaining %
BLOCK_SIZE_BYTES
;
102
blockCounter += inputLenRemaining /
BLOCK_SIZE_BYTES
;
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLCipherChaCha20.java
39
private static final int
BLOCK_SIZE_BYTES
= 64;
84
int len = Math.min(
BLOCK_SIZE_BYTES
- currentBlockConsumedBytes, inputLenRemaining);
85
byte[] singleBlock = new byte[
BLOCK_SIZE_BYTES
];
86
byte[] singleBlockOut = new byte[
BLOCK_SIZE_BYTES
];
89
BLOCK_SIZE_BYTES
, encodedKey, iv, blockCounter);
92
if (currentBlockConsumedBytes <
BLOCK_SIZE_BYTES
) {
96
assert currentBlockConsumedBytes ==
BLOCK_SIZE_BYTES
;
105
currentBlockConsumedBytes = inputLenRemaining %
BLOCK_SIZE_BYTES
;
106
blockCounter += inputLenRemaining /
BLOCK_SIZE_BYTES
;
/external/mesa3d/src/gallium/state_trackers/xvmc/
xvmc_private.h
43
#define
BLOCK_SIZE_BYTES
(BLOCK_SIZE_SAMPLES * 2)
Completed in 106 milliseconds