HomeSort by relevance Sort by last modified time
    Searched refs:encoded_length (Results 1 - 8 of 8) 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 465 uint32 encoded_length; local
467 encoded_length = 0xffffffff - length;
469 encoded_length = length;
473 output_str->append(1, 0xff & (encoded_length >> 24U));
474 output_str->append(1, 0xff & (encoded_length >> 16U));
475 output_str->append(1, 0xff & (encoded_length >> 8U));
476 output_str->append(1, 0xff & (encoded_length >> 0U));
484 uint32 encoded_length = local
492 if (encoded_length & 0x80000000) {
493 length = 0xffffffff - encoded_length;
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
parallel_authenticator.cc 661 const int encoded_length = sizeof(passhash_buf) / 2; local
664 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-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 2150 const size_t encoded_length = (size * 8 + 4) \/ 5; local
    [all...]

Completed in 141 milliseconds