Searched refs:data_ (Results 1 - 25 of 37) sorted by relevance

12

/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/forward/
H A Df_neg.cc46 int data_; member in class:A
52 : data_(data) { }
54 ~A() { data_ = -1; }
64 int data_; member in class:B
68 : data_(data) { }
70 B(const A& a) : data_(a.data_) { }
72 B(A&& a) : data_(a.data_) { a.data_
[all...]
H A Da.cc38 int data_; member in class:A
42 : data_(data) {}
44 ~A() { data_ = -1; }
49 VERIFY( data_ == 3 );
H A Db.cc38 int data_; member in class:A
42 : data_(data) { }
44 ~A() { data_ = -1; }
49 VERIFY( data_ == 3 );
H A Dc_neg.cc40 int data_; member in class:A
44 : data_(data) { }
46 ~A() { data_ = -1; }
H A Dd.cc38 int data_; member in class:A
42 : data_(data) { }
44 ~A() { data_ = -1; }
49 VERIFY( data_ == 3 );
/haiku-buildtools/binutils/gold/
H A Dreduced_debug_output.cc201 write_unsigned_LEB_128(&this->data_, ++this->abbrev_count_);
202 write_unsigned_LEB_128(&this->data_, abbrev_type);
204 this->data_.push_back(0);
207 std::make_pair(abbrev_count_, this->data_.size());
208 this->data_.insert(this->data_.end(), abbrev_data,
217 this->data_.push_back(0);
218 this->set_data_size(data_.size());
232 memcpy(view, &this->data_.front(), data_size);
248 return &this->data_[abbrev_inf
[all...]
H A Dbinary.h59 { return this->data_; }
66 unsigned char* ret = this->data_;
67 this->data_ = NULL;
110 unsigned char* data_; member in class:gold::Binary_to_elf
H A Dcompressed_output.cc253 uncompressed_size, &this->data_,
268 elfcpp::Chdr_write<32, true> chdr(this->data_);
275 elfcpp::Chdr_write<32, false> chdr(this->data_);
285 elfcpp::Chdr_write<64, true> chdr(this->data_);
292 elfcpp::Chdr_write<64, false> chdr(this->data_);
304 memcpy(this->data_, "ZLIB", 4);
305 elfcpp::Swap_unaligned<64, true>::writeval(this->data_ + 4,
317 gold_assert(this->data_ == NULL);
331 if (this->data_ == NULL)
334 memcpy(view, this->data_, data_siz
[all...]
H A Dcompressed_output.h79 unsigned char* data_; member in class:gold::Output_compressed_section
H A Dreduced_debug_output.h72 std::vector<unsigned char> data_; member in class:gold::Output_reduced_debug_abbrev_section
129 std::vector<unsigned char> data_; member in class:gold::Output_reduced_debug_info_section
H A Dfileread.h268 : start_(start), size_(size), data_(data), lock_count_(0),
285 { return this->data_; }
339 const unsigned char* data_; member in class:gold::File_read::View
348 // Whether the view is mapped into memory. If not, data_ points
461 { return this->data_; }
471 : file_(file), view_(view), data_(data)
476 const unsigned char* data_; member in class:gold::File_view
H A Dbinary.cc58 filename_(filename), data_(NULL), filesize_(0)
64 if (this->data_ != NULL)
65 delete[] this->data_;
260 this->data_ = buffer;
H A Dnacl.h63 : data_(file.get_view(file_offset, 0, data_size, true, false))
67 { return this->data_; }
70 const unsigned char* data_; member in class:gold::Sniff_file::View
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dtemplate23.C23 T_Base<int>* data_; // Fix (1): Change date_ from T_Base<int>* to T_Derived<int>* member in class:Derived
33 data_(new T_Derived<int>())
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Darray26.C8 scoped_ptr_impl (C *):data_ () { }
13 Data data_; member in struct:scoped_ptr_impl
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dvect-args.c36 extern TYPE data_##TYPE; \
37 void r_##TYPE (TYPE x) { data_##TYPE = x; } \
38 void s_##TYPE (void) { r_##TYPE (data_##TYPE); }
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dstack1.C24 inline unbounded_array (): data_ (new double [9]) {}
25 inline double& operator [] (int i) { return data_ [i]; }
26 double* data_; member in struct:unbounded_array
37 inline unbounded_array<> &data () { return data_; }
63 unbounded_array<> data_; member in struct:matrix
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr56029.C12 scoped_ptr_impl (T * p):data_ (p) {}
14 scoped_ptr_impl (scoped_ptr_impl <U, V> *other):data_ (other->release (), get_deleter ()) {}
15 ~scoped_ptr_impl () { static_cast <D> (data_) (data_.ptr); }
16 void reset (T * p) { data_.ptr = p; }
18 T *release () { data_.ptr = __null; }
26 Data data_; member in struct:scoped_ptr_impl
H A Dpr64568.C26 std::complex<double> &operator[](int i) { return data_[i]; }
27 std::complex<double> *data_; member in class:A
82 template <class AE> H (D<AE> ae) : data_ (0)
89 return data_;
92 A data_; member in class:H
H A Dpr64568-2.C37 std::complex<double> &operator[](int i) { return data_[i]; }
38 std::complex<double> *data_; member in class:B
115 H (int, int) : data_ (0) {}
116 template <class AE> H (matrix_expression<AE> ae) : data_ (0)
126 B data_; member in class:H
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/graphite/
H A Dpr41305.C95 return data_[i];
104 pointer data_; member in struct:unbounded_array
269 vector (size_type size):vector_container <self_type> (), data_ (size)
272 vector (size_type size, value_type):vector_container <self_type> (), data_ (size)
275 template <class AE> vector (const vector_expression <AE> &ae) : vector_container <self_type> (), data_ (ae ().size ())
282 return data_.size ();
287 return data_;
297 data_.swap (temporary.data ());
303 array_type data_; member in struct:vector
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_common.h362 data_ = (T *)MmapOrDie(capacity_ * sizeof(T), "InternalMmapVector");
365 UnmapOrDie(data_, capacity_ * sizeof(T));
369 return data_[i];
373 return data_[i];
381 data_[size_++] = element;
385 return data_[size_ - 1];
395 return data_;
409 internal_memcpy(new_data, data_, size_ * sizeof(T));
410 T *old_data = data_;
411 data_
[all...]
H A Dsanitizer_deadlock_detector.h184 uptr getData(uptr node) const { return data_[nodeToIndex(node)]; }
390 data_[idx] = data;
407 uptr data_[BV::kSize]; member in class:__sanitizer::DeadlockDetector
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr42337.C101 iterator begin() { return data_; }
102 iterator end() { return data_ + size_; }
104 T* data_; member in class:vector32
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dimport.cc914 : fd_(fd), data_()
933 if (this->data_.length() <= length)
935 *bytes = this->data_.data();
962 this->data_.assign(buf, got);
964 *bytes = this->data_.data();
979 if (!this->data_.empty())
981 if (this->data_.length() < skip)
982 this->data_.erase(0, skip);
984 this->data_.clear();

Completed in 204 milliseconds

12