Home
last modified time | relevance | path

Searched refs:size_ (Results 1 – 25 of 35) sorted by relevance

12

/dflybsd-src/contrib/gdb-7/gdb/common/
H A Dvec.h524 (VEC(T) **vec_, int size_ VEC_ASSERT_DECL) \
526 vec_assert (size_ >= 0 && VEC_OP(T,length) (*vec_) <= (unsigned)size_, \
528 VEC_OP (T,reserve) (vec_, (int)(*vec_ ? (*vec_)->num : 0) - size_ \
530 (*vec_)->num = size_; \
629 (VEC(T) *vec_, unsigned size_ VEC_ASSERT_DECL) \
631 vec_assert (vec_ ? vec_->num >= size_ : !size_, "truncate"); \
633 vec_->num = size_; \
807 (VEC(T) **vec_, int size_ VEC_ASSERT_DECL) \
809 vec_assert (size_ >= 0 && VEC_OP(T,length) (*vec_) <= (unsigned)size_, \
812 (vec_, (int)(*vec_ ? (*vec_)->num : 0) - size_ VEC_ASSERT_PASS); \
[all …]
/dflybsd-src/contrib/binutils-2.27/gold/
H A Darm-reloc-property.cc103 group_index_(group_index), size_(0), align_(1), in Arm_reloc_property()
119 this->size_ = 1; in Arm_reloc_property()
121 this->size_ = 2; in Arm_reloc_property()
123 this->size_ = 4; in Arm_reloc_property()
133 this->size_ = 4; in Arm_reloc_property()
137 this->size_ = 2; in Arm_reloc_property()
141 this->size_ = 4; in Arm_reloc_property()
154 this->size_ = 4; in Arm_reloc_property()
H A Dstringpool.h102 : chunks_(), size_(0) in Chunked_vector()
110 this->size_ = 0; in clear()
131 { return this->size_; } in size()
137 size_t chunk_index = this->size_ / chunk_size; in push_back()
145 this->size_++; in push_back()
164 size_t size_; variable
H A Dfileread.h74 size_(0), token_(false), views_(), saved_views_(), mapped_bytes_(0), in File_read()
138 { return this->size_; } in filesize()
268 : start_(start), size_(size), data_(data), lock_count_(0), in View()
281 { return this->size_; } in size()
337 section_size_type size_; variable
425 off_t size_; variable
H A Dfileread.cc139 if (::munmap(const_cast<unsigned char*>(this->data_), this->size_) != 0) in ~View()
145 File_read::current_mapped_bytes -= this->size_; in ~View()
210 this->size_ = s.st_size; in open()
233 this->size_ = size; in open()
334 gold_assert(start <= this->size_ in find_view()
336 <= static_cast<unsigned long long>(this->size_ - start))); in find_view()
384 bytes = this->size_ - start; in do_read()
475 gold_assert(start <= this->size_ in make_view()
477 <= static_cast<unsigned long long>(this->size_ - start))); in make_view()
483 if (poff + static_cast<off_t>(psize) >= this->size_) in make_view()
[all …]
H A Dnacl.h45 : offset_(file_offset), size_(data_size) in Location()
52 { return this->size_; } in size()
56 section_size_type size_; variable
H A Dtarget-select.h124 { return this->size_; } in get_size()
227 const int size_; variable
H A Dbinary.cc57 : elf_machine_(machine), size_(size), big_endian_(big_endian), in Binary_to_elf()
76 if (this->size_ == 32) in convert()
95 else if (this->size_ == 64) in convert()
H A Darm-reloc-property.h108 { return this->size_; } in size()
258 size_t size_; variable
H A Ddwp.cc451 : name_(name), machine_(0), size_(0), big_endian_(false), osabi_(0), in Dwp_output_file()
648 int size_; member in gold::Dwp_output_file
1554 if (this->size_ > 0) in record_target_info()
1558 this->size_ = size; in record_target_info()
1650 gold_assert(this->size_ > 0 && file_offset > 0); in add_contribution()
1899 file_offset = align_offset(file_offset, this->size_ == 32 ? 4 : 8); in finalize()
2080 if (this->size_ == 32) in write_ehdr()
2087 else if (this->size_ == 64) in write_ehdr()
2154 if (this->size_ == 32) in write_shdr()
2165 else if (this->size_ == 64) in write_shdr()
H A Dbinary.h104 int size_; variable
H A Dgdb-index.cc55 : size_(0), capacity_(0), hashtab_(NULL) in Gdb_hashtab()
71 if (4 * this->size_ / 3 >= this->capacity_) in add()
77 ++this->size_; in add()
87 { return this->size_; } in size()
150 size_t size_; member in gold::Gdb_hashtab
H A Daarch64-reloc-property.h162 size_t size_; variable
H A Dtarget-select.cc59 : machine_(machine), size_(size), is_big_endian_(is_big_endian), in Target_selector()
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dvec.h686 (VEC(T,base) *vec_, unsigned size_ VEC_CHECK_DECL) \
688 VEC_ASSERT (vec_ ? vec_->prefix.num >= size_ : !size_, "truncate", T, base); \
690 vec_->prefix.num = size_; \
850 (VEC(T,A) **vec_, int size_ VEC_CHECK_DECL MEM_STAT_DECL) \
852 VEC_ASSERT (size_ >= 0 \
853 && VEC_OP(T,base,length) VEC_BASE(*vec_) <= (unsigned)size_, \
856 size_ - (int)(*vec_ ? VEC_BASE(*vec_)->prefix.num : 0) \
858 VEC_BASE (*vec_)->prefix.num = size_; \
862 (VEC(T,A) **vec_, int size_ VEC_CHECK_DECL MEM_STAT_DECL) \
865 VEC_OP (T,A,safe_grow) (vec_, size_ VEC_CHECK_PASS PASS_MEM_STAT); \
[all …]
H A Dsbitmap.h177 unsigned int size_ = (SBITMAP)->size; \
180 for (word_num_ = size_; word_num_ > 0; word_num_--) \
/dflybsd-src/contrib/binutils-2.34/gold/
H A Dstringpool.h102 : chunks_(), size_(0) in Chunked_vector()
110 this->size_ = 0; in clear()
131 { return this->size_; } in size()
137 size_t chunk_index = this->size_ / chunk_size; in push_back()
145 this->size_++; in push_back()
164 size_t size_; variable
H A Dfileread.h74 size_(0), token_(false), views_(), saved_views_(), mapped_bytes_(0), in File_read()
138 { return this->size_; } in filesize()
268 : start_(start), size_(size), data_(data), lock_count_(0), in View()
281 { return this->size_; } in size()
337 section_size_type size_; variable
425 off_t size_; variable
H A Dfileread.cc139 if (::munmap(const_cast<unsigned char*>(this->data_), this->size_) != 0) in ~View()
145 File_read::current_mapped_bytes -= this->size_; in ~View()
210 this->size_ = s.st_size; in open()
233 this->size_ = size; in open()
334 gold_assert(start <= this->size_ in find_view()
336 <= static_cast<unsigned long long>(this->size_ - start))); in find_view()
384 bytes = this->size_ - start; in do_read()
475 gold_assert(start <= this->size_ in make_view()
477 <= static_cast<unsigned long long>(this->size_ - start))); in make_view()
483 if (poff + static_cast<off_t>(psize) >= this->size_) in make_view()
[all …]
H A Dnacl.h45 : offset_(file_offset), size_(data_size) in Location()
52 { return this->size_; } in size()
56 section_size_type size_; variable
H A Dtarget-select.h124 { return this->size_; } in get_size()
227 const int size_; variable
H A Dbinary.cc57 : elf_machine_(machine), size_(size), big_endian_(big_endian), in Binary_to_elf()
76 if (this->size_ == 32) in convert()
95 else if (this->size_ == 64) in convert()
H A Dbinary.h104 int size_; variable
H A Dgdb-index.cc55 : size_(0), capacity_(0), hashtab_(NULL) in Gdb_hashtab()
71 if (4 * this->size_ / 3 >= this->capacity_) in add()
77 ++this->size_; in add()
87 { return this->size_; } in size()
150 size_t size_; member in gold::Gdb_hashtab
H A Dtarget-select.cc59 : machine_(machine), size_(size), is_big_endian_(is_big_endian), in Target_selector()

12