OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBuckets
(Results
1 - 3
of
3
) sorted by null
/external/chromium/net/base/
ssl_false_start_blacklist.h
75
static const unsigned
kBuckets
= 128;
84
static const uint32 kHashTable[
kBuckets
+ 1];
ssl_false_start_blacklist_process.cc
20
static const unsigned
kBuckets
= SSLFalseStartBlacklist::
kBuckets
;
200
fprintf(stderr, "Using %d entry hash table\n",
kBuckets
);
201
uint32 table[
kBuckets
];
202
std::vector<std::string> buckets[
kBuckets
];
209
buckets[h & (
kBuckets
- 1)].push_back(*i);
214
for (unsigned i = 0; i <
kBuckets
; i++) {
243
kBuckets
);
244
for (unsigned i = 0; i <
kBuckets
; i++) {
ssl_false_start_blacklist.cc
14
const unsigned bucket = Hash(last_two_labels) & (
kBuckets
- 1);
Completed in 113 milliseconds