OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dump_width
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
b_dump.c
68
#define
DUMP_WIDTH
16
69
#define DUMP_WIDTH_LESS_INDENT(i) (
DUMP_WIDTH
-((i-(i>6?6:i)+3)/4))
84
int
dump_width
;
local
102
dump_width
=DUMP_WIDTH_LESS_INDENT(indent);
103
rows=(len/
dump_width
);
104
if ((rows*
dump_width
)<len)
110
BIO_snprintf(tmp,sizeof tmp,"%04x - ",i*
dump_width
);
112
for(j=0;j<
dump_width
;j++)
114
if (((i*
dump_width
)+j)>=len)
120
ch=((unsigned char)*(s+i*
dump_width
+j)) & 0xff
[
all
...]
/external/openssl/crypto/bio/
b_dump.c
68
#define
DUMP_WIDTH
16
69
#define DUMP_WIDTH_LESS_INDENT(i) (
DUMP_WIDTH
-((i-(i>6?6:i)+3)/4))
84
int
dump_width
;
local
102
dump_width
=DUMP_WIDTH_LESS_INDENT(indent);
103
rows=(len/
dump_width
);
104
if ((rows*
dump_width
)<len)
110
BIO_snprintf(tmp,sizeof tmp,"%04x - ",i*
dump_width
);
112
for(j=0;j<
dump_width
;j++)
114
if (((i*
dump_width
)+j)>=len)
120
ch=((unsigned char)*(s+i*
dump_width
+j)) & 0xff
[
all
...]
Completed in 646 milliseconds