OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:encoded_length
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/net/http/
http_auth_challenge_tokenizer.cc
33
int
encoded_length
= params_end_ - params_begin_;
local
34
while (
encoded_length
> 0 &&
encoded_length
% 4 != 0 &&
35
params_begin_[
encoded_length
- 1] == '=') {
36
--
encoded_length
;
38
return std::string(params_begin_, params_begin_ +
encoded_length
);
/external/chromium_org/sync/internal_api/public/base/
unique_position.cc
474
uint32
encoded_length
;
local
476
encoded_length
= 0xffffffff - length;
478
encoded_length
= length;
482
output_str->append(1, 0xff & (
encoded_length
>> 24U));
483
output_str->append(1, 0xff & (
encoded_length
>> 16U));
484
output_str->append(1, 0xff & (
encoded_length
>> 8U));
485
output_str->append(1, 0xff & (
encoded_length
>> 0U));
493
uint32
encoded_length
=
local
501
if (
encoded_length
& 0x80000000) {
502
length = 0xffffffff -
encoded_length
;
[
all
...]
/external/chromium_org/chrome/installer/util/
shell_util.cc
2268
const size_t
encoded_length
= (size * 8 + 4) \/ 5;
local
[
all
...]
Completed in 60 milliseconds