OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kBytes
(Results
1 - 5
of
5
) 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/third_party/skia/tests/
ChecksumTest.cpp
24
const size_t
kBytes
= SkAlign4(128);
26
uint32_t data[
kBytes
/4], tweaked[
kBytes
/4];
38
const uint32_t hash = algorithm(data,
kBytes
);
40
ASSERT(hash == algorithm(data,
kBytes
));
46
const uint32_t tweakedHash = algorithm(tweaked,
kBytes
);
48
ASSERT(tweakedHash == algorithm(tweaked,
kBytes
));
/external/skia/tests/
ChecksumTest.cpp
24
const size_t
kBytes
= SkAlign4(128);
26
uint32_t data[
kBytes
/4], tweaked[
kBytes
/4];
38
const uint32_t hash = algorithm(data,
kBytes
);
40
ASSERT(hash == algorithm(data,
kBytes
));
46
const uint32_t tweakedHash = algorithm(tweaked,
kBytes
);
48
ASSERT(tweakedHash == algorithm(tweaked,
kBytes
));
/external/chromium_org/net/quic/crypto/
curve25519_key_exchange.cc
31
COMPILE_ASSERT(sizeof(ka->public_key_) == crypto::curve25519::
kBytes
,
66
if (peer_public_value.size() != crypto::curve25519::
kBytes
) {
70
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);
Completed in 335 milliseconds