OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hash_bin
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/browser/autofill/
autofill_field.cc
15
std::string
hash_bin
= base::SHA1HashString(str);
local
16
DCHECK_EQ(20U,
hash_bin
.length());
18
uint32 hash32 = ((
hash_bin
[0] & 0xFF) << 24) |
19
((
hash_bin
[1] & 0xFF) << 16) |
20
((
hash_bin
[2] & 0xFF) << 8) |
21
(
hash_bin
[3] & 0xFF);
form_structure.cc
509
std::string
hash_bin
= base::SHA1HashString(str);
local
510
DCHECK_EQ(20U,
hash_bin
.length());
512
uint64 hash64 = (((static_cast<uint64>(
hash_bin
[0])) & 0xFF) << 56) |
513
(((static_cast<uint64>(
hash_bin
[1])) & 0xFF) << 48) |
514
(((static_cast<uint64>(
hash_bin
[2])) & 0xFF) << 40) |
515
(((static_cast<uint64>(
hash_bin
[3])) & 0xFF) << 32) |
516
(((static_cast<uint64>(
hash_bin
[4])) & 0xFF) << 24) |
517
(((static_cast<uint64>(
hash_bin
[5])) & 0xFF) << 16) |
518
(((static_cast<uint64>(
hash_bin
[6])) & 0xFF) << 8) |
519
((static_cast<uint64>(
hash_bin
[7])) & 0xFF)
[
all
...]
/external/chromium/chrome/browser/password_manager/
ie7_password.cc
92
std::string
hash_bin
= base::SHA1HashString(url_buffer);
local
98
for (size_t i = 0; i <
hash_bin
.size(); ++i) {
101
unsigned char hash_byte = static_cast<unsigned char>(
hash_bin
[i]);
/external/chromium_org/components/webdata/encryptor/
ie7_password_win.cc
97
std::string
hash_bin
= base::SHA1HashString(url_buffer);
local
103
for (size_t i = 0; i <
hash_bin
.size(); ++i) {
106
unsigned char hash_byte = static_cast<unsigned char>(
hash_bin
[i]);
/external/chromium_org/components/autofill/core/browser/
autofill_field.cc
300
std::string
hash_bin
= base::SHA1HashString(str);
local
301
DCHECK_EQ(20U,
hash_bin
.length());
303
uint32 hash32 = ((
hash_bin
[0] & 0xFF) << 24) |
304
((
hash_bin
[1] & 0xFF) << 16) |
305
((
hash_bin
[2] & 0xFF) << 8) |
306
(
hash_bin
[3] & 0xFF);
form_structure.cc
993
std::string
hash_bin
= base::SHA1HashString(str);
local
[
all
...]
Completed in 1243 milliseconds