OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kBytes
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/crypto/
curve25519.h
19
//
kBytes
is the number of bytes in the result of the Diffie-Hellman operation,
21
static const size_t
kBytes
= 32;
31
// |peer_public_key| should be of length |
kBytes
|.
/external/chromium_org/net/quic/crypto/
curve25519_key_exchange.cc
30
COMPILE_ASSERT(sizeof(ka->public_key_) == crypto::curve25519::
kBytes
,
65
if (peer_public_value.size() != crypto::curve25519::
kBytes
) {
69
uint8 result[crypto::curve25519::
kBytes
];
/external/chromium_org/base/android/
jni_array_unittest.cc
15
const uint8
kBytes
[] = { 0, 1, 2, 3 };
16
const size_t kLen = arraysize(
kBytes
);
18
ScopedJavaLocalRef<jbyteArray> bytes = ToJavaByteArray(env,
kBytes
, kLen);
24
EXPECT_EQ(std::vector<uint8>(
kBytes
,
kBytes
+ kLen), vec);
/frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp
134
const size_t
kBytes
= kOutputFrameCount * 2 * sizeof(int32_t);
135
int32_t *pTmpBuffer = (int32_t *)calloc(1,
kBytes
);
137
ALOGE("calloc failed to allocate memory: %d bytes",
kBytes
);
Completed in 1702 milliseconds