Home | Sort by relevance Sort by last modified time |
/external/mesa3d/src/gallium/state_trackers/clover/core/ | |
compat.hpp | 159 class vector_ref { class in namespace:clover::compat 161 vector_ref(T *p, size_t n) : p(p), n(n) { function in class:clover::compat::vector_ref 165 vector_ref(C &v) : p(&*v.begin()), n(v.size()) { function in class:clover::compat::vector_ref 210 typedef vector_ref<const unsigned char> buffer_t; 251 class string : public vector_ref<const char> { 253 string(const char *p) : vector_ref(p, std::strlen(p)) { 257 string(const C &v) : vector_ref(v) { 277 operator==(const vector_ref<T> &a, const vector_ref<T> &b) { |