OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bit_hash
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/base/
functional.h
179
// base::
bit_hash
is a function object class for bitwise hashing, similar to
187
struct
bit_hash
: public std::unary_function<T, size_t> {};
struct in namespace:v8::base
193
struct
bit_hash
<type> : public hash<type> {};
214
struct
bit_hash
<type> : public std::unary_function<type, size_t> { \
/external/v8/test/unittests/base/
functional-unittest.cc
121
bit_hash
<TypeParam> h;
174
bit_hash
<float> h;
191
bit_hash
<double> h;
/external/v8/src/compiler/
operator.h
206
struct OpHash<float> : public base::
bit_hash
<float> {};
211
struct OpHash<double> : public base::
bit_hash
<double> {};
Completed in 264 milliseconds