OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copy_length
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
prefix.h
32
int CommandPrefix(int insert_length, int
copy_length
);
prefix.cc
91
int CommandPrefix(int insert_length, int
copy_length
) {
92
if (
copy_length
== 0) {
93
copy_length
= 4;
96
int copy_prefix = CopyLengthPrefix(
copy_length
);
hash.h
81
int
copy_length
,
84
switch (
copy_length
) {
87
default: retval = start_cost4 + (
copy_length
- 4) * average_cost; break;
97
int
copy_length
,
100
switch (
copy_length
) {
103
default: retval = start_cost4 + (
copy_length
- 4) * average_cost; break;
/external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c
858
int
copy_length
;
local
891
copy_length
= kCopyLengthPrefixCode[copy_code].offset +
894
BROTLI_LOG_UINT(
copy_length
);
953
context = (uint8_t)(
copy_length
> 4 ? 3 :
copy_length
- 2);
990
if (
copy_length
>= kMinDictionaryWordLength &&
991
copy_length
<= kMaxDictionaryWordLength) {
992
int offset = kBrotliDictionaryOffsetsByLength[
copy_length
];
994
int shift = kBrotliDictionarySizeBitsByLength[
copy_length
];
[
all
...]
/external/libnfc-nxp/src/
phFriNfc_TopazDynamicMap.c
2476
uint16_t
copy_length
= 0;
local
2564
uint16_t
copy_length
= 0;
local
3824
uint8_t
copy_length
;
local
[
all
...]
/external/chromium_org/extensions/browser/api/web_request/
form_data_parser.cc
414
size_t
copy_length
= literal.size();
local
418
copy_length
= seek_unquote.data() - copy_start;
419
result.append(copy_start,
copy_length
);
426
copy_length
= (literal.data() + literal.size()) - copy_start;
427
result.append(copy_start,
copy_length
);
/external/compiler-rt/lib/asan/
asan_interceptors.cc
485
uptr
copy_length
= Min(size, from_length + 1);
local
486
ASAN_READ_RANGE(from,
copy_length
);
491
CHECK_RANGES_OVERLAP("strncat", to, to_length +
copy_length
+ 1,
492
from,
copy_length
);
Completed in 1101 milliseconds