Lines Matching refs:V8_INLINE
68 V8_INLINE size_t hash_combine() { return 0u; } in hash_combine()
69 V8_INLINE size_t hash_combine(size_t seed) { return seed; } in hash_combine()
72 V8_INLINE size_t hash_combine(T const& v, Ts const&... vs) { in hash_combine()
78 V8_INLINE size_t hash_range(Iterator first, Iterator last) { in hash_range()
88 V8_INLINE size_t hash_value(type v) { return static_cast<size_t>(v); }
99 V8_INLINE size_t hash_value(signed type v) { \
109 V8_INLINE size_t hash_value(float v) { in V8_BASE_HASH_VALUE_SIGNED()
114 V8_INLINE size_t hash_value(double v) { in hash_value()
120 V8_INLINE size_t hash_value(const T (&v)[N]) { in hash_value()
125 V8_INLINE size_t hash_value(T (&v)[N]) { in hash_value()
130 V8_INLINE size_t hash_value(T* const& v) { in hash_value()
135 V8_INLINE size_t hash_value(std::pair<T1, T2> const& v) { in hash_value()
142 V8_INLINE size_t operator()(T const& v) const { return hash_value(v); } in operator()
148 V8_INLINE size_t operator()(type const v) const { \
169 V8_INLINE size_t operator()(T* const v) const {
209 V8_INLINE bool operator()(type lhs, type rhs) const { \
215 V8_INLINE size_t operator()(type v) const { \