OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bit_equal_to
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/base/
functional.h
176
// base::
bit_equal_to
is a function object class for bitwise equality
181
// base::hash. It can be used together with base::
bit_equal_to
to implement a
185
struct
bit_equal_to
: public std::binary_function<T, T, bool> {};
struct in namespace:v8::base
192
struct
bit_equal_to
<type> : public std::equal_to<type> {}; \
209
struct
bit_equal_to
<type> : public std::binary_function<type, type, bool> { \
/external/v8/src/compiler/
operator.h
227
struct OpEqualTo<float> : public base::
bit_equal_to
<float> {};
232
struct OpEqualTo<double> : public base::
bit_equal_to
<double> {};
Completed in 119 milliseconds