OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hex_size
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/tool/
digest.cc
245
const size_t
hex_size
= EVP_MD_size(md) * 2;
local
278
if (len <
hex_size
+ 2 /* spaces */ + 1 /* filename */ ||
279
line[
hex_size
] != ' ' ||
280
line[
hex_size
+ 1] != ' ' ||
306
const std::string target_filename(&line[
hex_size
+ 2]);
321
if (calculated_hex_digest != std::string(line,
hex_size
)) {
/external/e2fsprogs/misc/
e4crypt.c
154
static int hex2byte(const char *hex, size_t
hex_size
, unsigned char *bytes,
160
if (
hex_size
% 2)
162
for (x = 0; x <
hex_size
; x += 2) {
/external/f2fs-tools/tools/
f2fscrypt.c
201
static int hex2byte(const char *hex, size_t
hex_size
, unsigned char *bytes,
207
if (
hex_size
% 2)
209
for (x = 0; x <
hex_size
; x += 2) {
Completed in 237 milliseconds