Home
last modified time | relevance | path

Searched refs:blocks_ (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dchar-buffer.h27 : blocks_(std::move(that.blocks_)), bytes_{that.bytes_}, in CharBuffer()
32 blocks_ = std::move(that.blocks_);
43 blocks_.clear(); in clear()
66 std::list<Block> blocks_; variable
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_clock.cpp280 dst->blocks_ = cached_blocks_; in ReleaseStore()
333 cached_blocks_ = dst->blocks_; in ReleaseStore()
411 CHECK_EQ(blocks_, 0); in ~SyncClock()
426 blocks_ = 0; in ResetImpl()
442 CHECK_EQ(blocks_, 0); in Resize()
505 old.blocks_ = blocks_; in Unshare()
545 DCHECK_LE(block, blocks_); in elem()
547 if (block == blocks_) in elem()
566 DCHECK_LT(bi, blocks_); in get_block()
571 uptr bi = blocks_++; in append_block()
[all …]
H A Dtsan_clock.h120 u16 blocks_; // Number of second level blocks. variable
/llvm-project-15.0.7/flang/lib/Parser/
H A Dchar-buffer.cpp19 if (blocks_.empty()) { in FreeSpace()
20 blocks_.emplace_front(); in FreeSpace()
23 blocks_.emplace_back(); in FreeSpace()
27 return blocks_.back().data + offset; in FreeSpace()
56 for (const Block &block : blocks_) { in Marshal()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp49 *pack += blocks_[GetBlockIdx(idx)].Stored(h.size + 1); in Store()
58 CHECK_LT(block_idx, ARRAY_SIZE(blocks_)); in Load()
59 const uptr *stack_trace = blocks_[block_idx].GetOrUnpack(this); in Load()
80 CHECK_LT(block_idx, ARRAY_SIZE(blocks_)); in Alloc()
82 return blocks_[block_idx].GetOrCreate(this) + GetInBlockIdx(start); in Alloc()
90 *pack += blocks_[block_idx].Stored(in_first); in Alloc()
91 *pack += blocks_[last_idx].Stored(count - in_first); in Alloc()
107 for (BlockInfo &b : blocks_) res += b.Pack(type, this); in Pack()
112 for (BlockInfo &b : blocks_) b.Lock(); in LockAll()
116 for (BlockInfo &b : blocks_) b.Unlock(); in UnlockAll()
[all …]
H A Dsanitizer_stack_store.h116 BlockInfo blocks_[kBlockCount] = {}; variable
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stack_store_test.cpp54 for (BlockInfo& b : store_.blocks_) res += b.Stored(0); in CountReadyToPackBlocks()
60 for (const BlockInfo& b : store_.blocks_) res += b.IsPacked(); in CountPackedBlocks()
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dsymbol.h755 std::list<blockType *> blocks_; variable
761 blocks_.push_back(new blockType()); in Get()
762 currBlock_ = blocks_.back(); in Get()