| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| H A D | tsan_clock.h | 51 SyncClock *parent_; 202 : parent_(parent) in Iter() 218 return parent_ != other.parent_;
|
| H A D | tsan_clock.cc | 579 if (block_ < parent_->blocks_) { in Next() 581 u32 idx = parent_->get_block(block_); in Next() 584 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 588 if (block_ == parent_->blocks_ && in Next() 589 parent_->size_ > parent_->blocks_ * ClockBlock::kClockCount) { in Next() 591 pos_ = &parent_->tab_->clock[0]; in Next() 592 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 596 parent_ = nullptr; // denotes end in Next()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| H A D | tsan_clock.h | 49 SyncClock *parent_; 200 : parent_(parent) in Iter() 216 return parent_ != other.parent_;
|
| H A D | tsan_clock.cc | 577 if (block_ < parent_->blocks_) { in Next() 579 u32 idx = parent_->get_block(block_); in Next() 582 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 586 if (block_ == parent_->blocks_ && in Next() 587 parent_->size_ > parent_->blocks_ * ClockBlock::kClockCount) { in Next() 589 pos_ = &parent_->tab_->clock[0]; in Next() 590 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 594 parent_ = nullptr; // denotes end in Next()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| H A D | tsan_clock.cpp | 606 if (block_ < parent_->blocks_) { in Next() 608 u32 idx = parent_->get_block(block_); in Next() 611 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 615 if (block_ == parent_->blocks_ && in Next() 616 parent_->size_ > parent_->blocks_ * ClockBlock::kClockCount) { in Next() 618 pos_ = &parent_->tab_->clock[0]; in Next() 619 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next() 623 parent_ = nullptr; // denotes end in Next()
|
| H A D | tsan_clock.h | 50 SyncClock *parent_; 269 : parent_(parent) in Iter() 285 return parent_ != other.parent_;
|
| /netbsd-src/sys/altq/ |
| H A D | altq_rmclass.c | 241 cl->parent_ = parent; in rmc_newclass() 326 if (cl->parent_) { in rmc_newclass() 472 p = t->parent_; in rmc_depth_compute() 515 p = p->parent_; in rmc_depth_recompute() 567 if (cl->parent_ != NULL) { in rmc_delete_class() 568 head = cl->parent_->children_; in rmc_delete_class() 572 cl->parent_->children_ = NULL; in rmc_delete_class() 573 cl->parent_->leaf_ = 1; in rmc_delete_class() 577 cl->parent_->children_ = cl->next_; in rmc_delete_class() 623 rmc_depth_recompute(cl->parent_); in rmc_delete_class() [all...] |
| H A D | altq_rmclass.h | 148 rm_class_t *parent_; /* Parent class */ member
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/config/ |
| H A D | parser.cpp | 73 impl(parser* const parent_, tree& config_tree_) : in impl() 74 _parent(parent_), _tree(config_tree_), _syntax_called(false) in impl()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/ |
| H A D | benchmark.h | 697 StateIterator() : cached_(0), parent_() {} in StateIterator() 701 : cached_(st->error_occurred_ ? 0 : st->max_iterations), parent_(st) {} in StateIterator() 717 parent_->FinishKeepRunning(); 723 State* const parent_; member
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/ |
| H A D | benchmark.h | 732 StateIterator() : cached_(0), parent_() {} in StateIterator() 736 : cached_(st->error_occurred_ ? 0 : st->max_iterations), parent_(st) {} in StateIterator() 752 parent_->FinishKeepRunning(); 758 State* const parent_; member
|
| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | dwarf_reader.h | 613 { return this->parent_; } in parent() 656 Dwarf_die* parent_; variable
|
| H A D | dwarf_reader.cc | 786 : dwinfo_(dwinfo), parent_(parent), die_offset_(die_offset), in Dwarf_die()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | dwarf_reader.h | 613 { return this->parent_; } in parent() 656 Dwarf_die* parent_; variable
|
| H A D | dwarf_reader.cc | 786 : dwinfo_(dwinfo), parent_(parent), die_offset_(die_offset), in Dwarf_die()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | genmatch.cc | 1621 dt_node (enum dt_type type_, dt_node *parent_) in dt_node() argument 1622 : type (type_), level (0), parent (parent_), kids (vNULL) {} in dt_node() 1654 dt_operand *parent_, unsigned pos_) in dt_operand() argument 1655 : dt_node (type, parent_), op (op_), match_dop (match_dop_), in dt_operand() 1857 dt_operand *parent_ = safe_as_a<dt_operand *> (parent); in append_op() local 1858 dt_operand *n = new dt_operand (DT_OPERAND, op, 0, parent_, pos); in append_op() 1867 dt_operand *parent_ = safe_as_a<dt_operand *> (parent); in append_true_op() local 1868 dt_operand *n = new dt_operand (DT_TRUE, op, 0, parent_, pos); in append_true_op() 1878 dt_operand *parent_ = as_a<dt_operand *> (parent); in append_match_op() local 1879 dt_operand *n = new dt_operand (DT_MATCH, op, match_dop, parent_, pos); in append_match_op()
|
| H A D | omp-oacc-neuter-broadcast.cc | 109 parallel_g::parallel_g (parallel_g *parent_, unsigned mask_) in parallel_g() argument 110 :parent (parent_), next (0), inner (0), mask (mask_), inner_mask (0) in parallel_g()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | genmatch.c | 1614 dt_node (enum dt_type type_, dt_node *parent_) in dt_node() argument 1615 : type (type_), level (0), parent (parent_), kids (vNULL) {} in dt_node() 1646 dt_operand *parent_, unsigned pos_) in dt_operand() argument 1647 : dt_node (type, parent_), op (op_), match_dop (match_dop_), in dt_operand() 1849 dt_operand *parent_ = safe_as_a<dt_operand *> (parent); in append_op() local 1850 dt_operand *n = new dt_operand (DT_OPERAND, op, 0, parent_, pos); in append_op() 1859 dt_operand *parent_ = safe_as_a<dt_operand *> (parent); in append_true_op() local 1860 dt_operand *n = new dt_operand (DT_TRUE, op, 0, parent_, pos); in append_true_op() 1870 dt_operand *parent_ = as_a<dt_operand *> (parent); in append_match_op() local 1871 dt_operand *n = new dt_operand (DT_MATCH, op, match_dop, parent_, pos); in append_match_op()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| H A D | gtest.cc | 5000 : parent_(parent), in UnitTestImpl() 5286 repeater->OnTestProgramStart(*parent_); in RunAllTests() 5310 repeater->OnTestIterationStart(*parent_, i); in RunAllTests() 5315 repeater->OnEnvironmentsSetUpStart(*parent_); in RunAllTests() 5317 repeater->OnEnvironmentsSetUpEnd(*parent_); in RunAllTests() 5343 repeater->OnEnvironmentsTearDownStart(*parent_); in RunAllTests() 5346 repeater->OnEnvironmentsTearDownEnd(*parent_); in RunAllTests() 5352 repeater->OnTestIterationEnd(*parent_, i); in RunAllTests() 5373 repeater->OnTestProgramEnd(*parent_); in RunAllTests()
|
| H A D | gtest-internal-inl.h | 838 UnitTest* const parent_; variable
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nvptx/ |
| H A D | nvptx.c | 3052 parallel::parallel (parallel *parent_, unsigned mask_) in parallel() argument 3053 :parent (parent_), next (0), inner (0), mask (mask_), inner_mask (0) in parallel()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/nvptx/ |
| H A D | nvptx.cc | 3520 parallel::parallel (parallel *parent_, unsigned mask_) in parallel() argument 3521 :parent (parent_), next (0), inner (0), mask (mask_), inner_mask (0) in parallel()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
| H A D | ranges | 2861 // V models forward_range, and parent_->current_ otherwise.
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| H A D | ranges | 3117 // V models forward_range, and parent_->current_ otherwise.
|