Home
last modified time | relevance | path

Searched refs:parent_idx (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrameExtensions.i21 parent_idx = self.idx + 1
22 if parent_idx >= 0 and parent_idx < len(self.thread.frame):
23 return self.thread.frame[parent_idx]
/freebsd/sys/dev/clk/
H A Dclk.c102 int parent_idx; /* Parent index or -1 */ member
493 clknode->name, clknode->parent_idx, in clkdom_finit()
636 clknode->parent_idx = CLKNODE_IDX_NONE; in clknode_create()
765 clknode->parent_idx = idx; in clknode_adjust_parent()
778 clknode->parent_idx = CLKNODE_IDX_NONE; in clknode_init_parent_idx()
787 clknode->parent_idx = idx; in clknode_init_parent_idx()
803 if (clknode->parent_idx == idx) in clknode_set_parent_by_idx()
806 oldidx = clknode->parent_idx; in clknode_set_parent_by_idx()
853 if (clknode->parent_idx == idx) in clknode_set_parent_by_name()
856 oldidx = clknode->parent_idx; in clknode_set_parent_by_name()
[all …]
/freebsd/contrib/libevent/test/
H A Dregress_minheap.c48 unsigned parent_idx = (i-1)/2; in check_heap() local
50 &heap->p[parent_idx]->ev_timeout, >=)); in check_heap()
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dregress_minheap.c48 unsigned parent_idx = (i-1)/2; in check_heap() local
50 &heap->p[parent_idx]->ev_timeout, >=)); in check_heap()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dbtree.c1031 ASSERT3U(parent_idx, >, 0); in zfs_btree_bulk_finish()
1490 uint32_t parent_idx = zfs_btree_find_parent_idx(tree, hdr); in zfs_btree_remove_from_node() local
1492 zfs_btree_hdr_t *l_hdr = (parent_idx == 0 ? NULL : in zfs_btree_remove_from_node()
1493 parent->btc_children[parent_idx - 1]); in zfs_btree_remove_from_node()
1528 NULL : parent->btc_children[parent_idx + 1]); in zfs_btree_remove_from_node()
1591 parent_idx++; in zfs_btree_remove_from_node()
1609 uint8_t *separator = parent->btc_elems + (parent_idx - 1) * in zfs_btree_remove_from_node()
1742 zfs_btree_hdr_t *l_hdr = (parent_idx == 0 ? NULL : in zfs_btree_remove_idx()
1743 parent->btc_children[parent_idx - 1]); in zfs_btree_remove_idx()
1772 NULL : parent->btc_children[parent_idx + 1]); in zfs_btree_remove_idx()
[all …]
/freebsd/sys/dev/qcom_clk/
H A Dqcom_clk_rcg2.c201 const struct qcom_clk_freq_tbl *f, int parent_idx) in qcom_clk_rcg2_set_config_locked() argument
248 reg = reg | (((parent_idx << QCOM_CLK_RCG2_CFG_SRC_SEL_SHIFT) in qcom_clk_rcg2_set_config_locked()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp1584 TypeIndex parent_idx = fir.getParentScope(); in ParseInlineSite() local
1585 if (!parent_idx.isNoneType()) { in ParseInlineSite()
1587 inlinee_name.append(std::string(ids.getTypeName(parent_idx))); in ParseInlineSite()
2268 TypeIndex parent_idx = m_parent_types[fwd]; in BuildParentMap() local
2269 m_parent_types[full] = parent_idx; in BuildParentMap()