OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:encoded_length
(Results
1 - 10
of
10
) sorted by null
/external/chromium/net/http/
http_auth.cc
100
int
encoded_length
= params_end_ - params_begin_;
local
101
while (
encoded_length
> 0 &&
encoded_length
% 4 != 0 &&
102
params_begin_[
encoded_length
- 1] == '=') {
103
--
encoded_length
;
105
return std::string(params_begin_, params_begin_ +
encoded_length
);
/external/chromium_org/net/http/
http_auth.cc
112
int
encoded_length
= params_end_ - params_begin_;
local
113
while (
encoded_length
> 0 &&
encoded_length
% 4 != 0 &&
114
params_begin_[
encoded_length
- 1] == '=') {
115
--
encoded_length
;
117
return std::string(params_begin_, params_begin_ +
encoded_length
);
/external/chromium/crypto/
rsa_private_key_win.cc
205
DWORD
encoded_length
;
local
209
&
encoded_length
)) {
214
scoped_array<BYTE> encoded(new BYTE[
encoded_length
]);
218
&
encoded_length
)) {
223
for (size_t i = 0; i <
encoded_length
; ++i)
/external/chromium_org/sync/internal_api/public/base/
unique_position.cc
493
uint32
encoded_length
;
local
495
encoded_length
= 0xffffffff - length;
497
encoded_length
= length;
501
output_str->append(1, 0xff & (
encoded_length
>> 24U));
502
output_str->append(1, 0xff & (
encoded_length
>> 16U));
503
output_str->append(1, 0xff & (
encoded_length
>> 8U));
504
output_str->append(1, 0xff & (
encoded_length
>> 0U));
512
uint32
encoded_length
=
local
520
if (
encoded_length
& 0x80000000) {
521
length = 0xffffffff -
encoded_length
;
[
all
...]
/external/chromium_org/win8/delegate_execute/
chrome_util.cc
123
// If |size| is too big, the calculation of |
encoded_length
| below will
131
const size_t
encoded_length
= (size * 8 + 4) / 5;
local
134
ret.reserve(
encoded_length
);
155
if (ret.length() !=
encoded_length
) {
/external/chromium_org/chrome/browser/chromeos/login/managed/
managed_user_authenticator.cc
114
const int
encoded_length
= sizeof(passhash_buf) / 2;
local
117
reinterpret_cast<const void*>(passhash_buf),
encoded_length
));
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py
265
encoded_length
= _encode_number(length)
268
encoded_length
+ encoded_handshake)
/external/chromium_org/chrome/browser/chromeos/login/
parallel_authenticator.cc
176
const int
encoded_length
= sizeof(passhash_buf) / 2;
local
179
reinterpret_cast<const void*>(passhash_buf),
encoded_length
));
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py
183
encoded_length
= _encode_number(length)
186
encoded_length
+ value)
[
all
...]
/external/chromium_org/chrome/installer/util/
shell_util.cc
2113
const size_t
encoded_length
= (size * 8 + 4) \/ 5;
local
[
all
...]
Completed in 236 milliseconds