Searched refs:size_ (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cpp19 : size_() {
23 if (size_ == kMaxSize)
25 for (uptr i = 0; i < size_; i++) {
29 stacks_[size_++] = stack_id;
33 size_ = 0;
37 return size_;
41 CHECK_LT(i, size_);
42 CHECK_LE(size_, kMaxSize);
H A Dtsan_mutexset.cpp20 size_ = 0;
26 for (uptr i = 0; i < size_; i++) {
34 if (size_ == kMaxSize) {
37 for (uptr i = 0; i < size_; i++) {
44 CHECK_EQ(size_, kMaxSize - 1);
47 descs_[size_].id = id;
48 descs_[size_].write = write;
49 descs_[size_].epoch = epoch;
50 descs_[size_].count = 1;
51 size_
[all...]
H A Dtsan_ignoreset.h31 uptr size_; member in class:__tsan::IgnoreSet
H A Dtsan_clock.cpp131 DCHECK_LE(src->size_, kMaxTid);
135 const uptr nclk = src->size_;
182 DCHECK_LE(dst->size_, kMaxTid);
184 if (dst->size_ == 0) {
193 if (dst->size_ < nclk_)
223 if (nclk_ < dst->size_)
225 for (uptr i = nclk_; i < dst->size_; i++)
237 DCHECK_LE(dst->size_, kMaxTid);
240 if (dst->size_ == 0 && cached_idx_ != 0) {
250 dst->size_
[all...]
H A Dtsan_mutexset.h46 uptr size_; member in class:__tsan::MutexSet
H A Dtsan_clock.h75 // If size_ is 0, tab_ is nullptr.
109 u16 size_;
197 return size_;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h33 size_ = 0;
36 bool empty() const { return size_ == 0; }
37 uptr size() const { return size_; }
43 size_ = 1;
48 size_++;
56 size_ = 1;
60 size_++;
69 size_--;
80 size_--;
97 size_
159 uptr size_; member in struct:__sanitizer::IntrusiveList
[all...]
H A Dsanitizer_common.h150 uptr size() const { return size_; }
154 uptr size_; member in class:__sanitizer::ReservedAddressRange
447 size_ = 0;
453 CHECK_LT(i, size_);
457 CHECK_LT(i, size_);
461 CHECK_LE(size_, capacity());
462 if (size_ == capacity()) {
463 uptr new_capacity = RoundUpToPowerOfTwo(size_ + 1);
466 internal_memcpy(&data_[size_++], &element, sizeof(T));
469 CHECK_GT(size_,
536 uptr size_; member in class:__sanitizer::InternalMmapVectorNoCtor
[all...]
H A Dsanitizer_quarantine.h207 : size_() {
213 return atomic_load_relaxed(&size_);
237 atomic_store_relaxed(&from_cache->size_, 0);
305 atomic_uintptr_t size_; member in class:__sanitizer::QuarantineCache
308 atomic_store_relaxed(&size_, Size() + add);
311 atomic_store_relaxed(&size_, Size() - sub);
H A Dsanitizer_posix_libcdep.cpp346 size_ = size;
365 CHECK_LE(size, size_);
368 base_ = (size == size_) ? nullptr : reinterpret_cast<void*>(addr + size);
370 CHECK_EQ(addr + size, reinterpret_cast<uptr>(base_) + size_);
371 size_ -= size;
H A Dsanitizer_fuchsia.cpp224 size_ = init_size;
243 DCHECK_GE(base + size_, map_size + offset);
288 CHECK_LE(size, size_);
291 if (size == size_) {
300 CHECK_EQ(addr + size, reinterpret_cast<uptr>(base_) + size_);
H A Dsanitizer_win.cpp274 CHECK((addr == reinterpret_cast<uptr>(base_)) && (size == size_));
277 size_ = 0;
300 size_ = size;
H A Dsanitizer_syscalls_netbsd.inc530 (void *samples_, long long size_, long long offset_, long long scale_) {
532 PRE_WRITE(samples_, size_);
536 (long long res, void *samples_, long long size_, long long offset_,
540 POST_WRITE(samples_, size_);
749 (long long op_, void *where_, void *size_, long long arg_) {
753 (long long res, long long op_, void *where_, void *size_, long long arg_) {
1731 PRE_SYSCALL(shmget)(long long key_, long long size_, long long shmflg_) {
1735 (long long res, long long key_, long long size_, long long shmflg_) {
2414 (long long pid_, long long lid_, long long size_, void *cpuset_) {
2416 PRE_READ(cpuset_, size_);
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.h159 uptr size_)
163 size(size_) {}
174 uptr size_)
178 size(size_) {}
187 ErrorPvallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr size_) argument
190 size(size_) {}
214 uptr size_, uptr alignment_)
217 size(size_),
307 uptr addr, uptr size_)
311 size(size_) {}
158 ErrorCallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, uptr size_) argument
173 ErrorReallocArrayOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, uptr size_) argument
213 ErrorInvalidAlignedAllocAlignment(u32 tid, BufferedStackTrace *stack_, uptr size_, uptr alignment_) argument
306 ErrorStringFunctionSizeOverflow(u32 tid, BufferedStackTrace *stack_, uptr addr, uptr size_) argument
[all...]
H A Dasan_allocator.h107 uptr size() { return size_; }
110 size_ = 0;
113 uptr size_; member in class:__asan::AsanChunkFifoList
/freebsd-11-stable/contrib/gcc/
H A Dvec.h602 (VEC(T,base) *vec_, unsigned size_ VEC_CHECK_DECL) \
604 VEC_ASSERT (vec_ ? vec_->num >= size_ : !size_, "truncate", T, base); \
606 vec_->num = size_; \
764 (VEC(T,A) **vec_, int size_ VEC_CHECK_DECL MEM_STAT_DECL) \
766 VEC_ASSERT (size_ >= 0 \
767 && VEC_OP(T,base,length) VEC_BASE(*vec_) <= (unsigned)size_, \
770 size_ - (int)(*vec_ ? VEC_BASE(*vec_)->num : 0) \
772 VEC_BASE (*vec_)->num = size_; \
884 (VEC(T,base) *vec_, unsigned size_ VEC_CHECK_DEC
[all...]
H A Dsbitmap.h144 unsigned int size_ = (SBITMAP)->size; \
147 for (word_num_ = size_; word_num_ > 0; word_num_--) \
H A Ddefaults.h224 HOST_WIDE_INT size_ = (SIZE); \
227 fprintf (STREAM, ", " HOST_WIDE_INT_PRINT_DEC "\n", size_); \
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbss_bio.c186 static int bio_read(BIO *bio, char *buf, int size_) argument
188 size_t size = size_;
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dcgen.h1313 void (*set_fields_bitsize) (CGEN_FIELDS *fields_, int size_);
/freebsd-11-stable/contrib/apr/memory/unix/
H A Dapr_pools.c66 #define APR_VALGRIND_NOACCESS(addr_, size_) \
67 APR_IF_VALGRIND(VALGRIND_MAKE_MEM_NOACCESS(addr_, size_))
68 #define APR_VALGRIND_UNDEFINED(addr_, size_) \
69 APR_IF_VALGRIND(VALGRIND_MAKE_MEM_UNDEFINED(addr_, size_))
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp886 Formatter(char *str_, const char *fmt_, size_t size_) argument
887 : str(str_), str_off(0), size(size_), fmt_start(fmt_), fmt_cur(fmt_),

Completed in 186 milliseconds