Searched refs:vector_ref (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp159 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) {
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp159 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) {

Completed in 228 milliseconds