Searched refs:__vec (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/Headers/ |
D | vecintrin.h | 60 vec_extract(vector signed char __vec, int __index) { in vec_extract() argument 61 return __vec[__index & 15]; in vec_extract() 65 vec_extract(vector bool char __vec, int __index) { in vec_extract() argument 66 return __vec[__index & 15]; in vec_extract() 70 vec_extract(vector unsigned char __vec, int __index) { in vec_extract() argument 71 return __vec[__index & 15]; in vec_extract() 75 vec_extract(vector signed short __vec, int __index) { in vec_extract() argument 76 return __vec[__index & 7]; in vec_extract() 80 vec_extract(vector bool short __vec, int __index) { in vec_extract() argument 81 return __vec[__index & 7]; in vec_extract() [all …]
|
/external/libcxx/include/ |
D | __locale | 452 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const 454 return do_is(__low, __high, __vec); 522 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const; 553 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const 555 for (; __low != __high; ++__low, ++__vec) 556 *__vec = isascii(*__low) ? __tab_[static_cast<int>(*__low)] : 0; 691 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
|
D | vector | 3299 size_t operator()(const vector<bool, _Allocator>& __vec) const _NOEXCEPT 3300 {return __vec.__hash_code();}
|