Home
last modified time | relevance | path

Searched refs:node_stats (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dbtree.h1129 struct node_stats {
1132 node_stats(size_type l, size_type i) : leaf_nodes(l), internal_nodes(i) {}
1134 node_stats &operator+=(const node_stats &other) {
1395 node_stats stats = internal_stats(root());
1401 node_stats stats = internal_stats(root());
1552 node_stats internal_stats(const node_type *node) const {
1555 return node_stats(0, 0);
1558 return node_stats(1, 0);
1560 node_stats res(0, 1);
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ir.cpp449 void container_node::collect_stats(node_stats& s) { in collect_stats()
512 void node_stats::dump() { in dump()
Dsb_if_conversion.cpp126 node_stats s; in check_and_convert()
Dsb_ir.h737 struct node_stats { struct
752 node_stats() : alu_count(), alu_kill_count(), alu_copy_mov_count(), in node_stats() argument
963 void collect_stats(node_stats &s);