Home
last modified time | relevance | path

Searched refs:rank (Results 1 – 25 of 61) sorted by relevance

123

/freebsd/tools/regression/geom/ConfCmp/
H A Da1.conf10 <rank>4</rank>
22 <rank>4</rank>
34 <rank>4</rank>
46 <rank>4</rank>
58 <rank>4</rank>
70 <rank>4</rank>
82 <rank>4</rank>
94 <rank>4</rank>
106 <rank>4</rank>
118 <rank>3</rank>
[all …]
H A Da1a.conf10 <rank>4</rank>
22 <rank>4</rank>
34 <rank>4</rank>
46 <rank>4</rank>
58 <rank>4</rank>
70 <rank>4</rank>
82 <rank>4</rank>
94 <rank>4</rank>
106 <rank>4</rank>
118 <rank>3</rank>
[all …]
H A Da1d.conf10 <rank>4</rank>
22 <rank>4</rank>
34 <rank>4</rank>
46 <rank>4</rank>
58 <rank>4</rank>
70 <rank>4</rank>
82 <rank>4</rank>
94 <rank>4</rank>
106 <rank>4</rank>
118 <rank>3</rank>
[all …]
H A Da1b.conf10 <rank>4</rank>
22 <rank>4</rank>
34 <rank>4</rank>
46 <rank>4</rank>
58 <rank>4</rank>
70 <rank>4</rank>
82 <rank>4</rank>
94 <rank>4</rank>
106 <rank>4</rank>
118 <rank>3</rank>
[all …]
H A Da1c.conf10 <rank>4</rank>
22 <rank>4</rank>
34 <rank>4</rank>
46 <rank>4</rank>
58 <rank>4</rank>
70 <rank>4</rank>
82 <rank>4</rank>
94 <rank>4</rank>
106 <rank>4</rank>
118 <rank>3</rank>
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dwitness.h69 # define WITNESS_INITIALIZER(name, rank) {name, rank, NULL, NULL, {NULL, NULL}} argument
71 # define WITNESS_INITIALIZER(name, rank) argument
88 witness_rank_t rank; member
143 void witness_init(witness_t *witness, const char *name, witness_rank_t rank,
194 if (witness->rank == WITNESS_RANK_OMIT) { in witness_assert_owner()
219 if (witness->rank == WITNESS_RANK_OMIT) { in witness_assert_not_owner()
253 if (w->rank < rank_inclusive) { in witness_assert_depth_to_rank()
288 if (witness->rank == WITNESS_RANK_OMIT) { in witness_lock()
298 } else if (witness_tsd->forking && w->rank <= witness->rank) { in witness_lock()
300 } else if (w->rank > witness->rank) { in witness_lock()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dlayout_left.h58 if constexpr (extents_type::rank() == 0) in __required_span_size_is_representable()
62 for (rank_type __r = 1; __r < extents_type::rank(); __r++) { in __required_span_size_is_representable()
98 requires(is_constructible_v<extents_type, _OtherExtents> && _OtherExtents::rank() <= 1)
115 _LIBCPP_HIDE_FROM_ABI constexpr explicit(extents_type::rank() > 0) in requires()
118 if constexpr (extents_type::rank() > 0) { in requires()
122 for (rank_type __r = 0; __r < extents_type::rank(); __r++) in requires()
142 for (size_t __r = 0; __r < extents_type::rank(); __r++) in required_span_size()
148 …requires((sizeof...(_Indices) == extents_type::rank()) && (is_convertible_v<_Indices, index_type> …
157 array<index_type, extents_type::rank()> __idx_a{static_cast<index_type>(__idx)...}; in operator()
160 …((__res = __idx_a[extents_type::rank() - 1 - _Pos] + __extents_.extent(extents_type::rank() - 1 - … in operator()
[all …]
H A Dlayout_right.h57 if constexpr (extents_type::rank() == 0) in __required_span_size_is_representable()
61 for (rank_type __r = 1; __r < extents_type::rank(); __r++) { in __required_span_size_is_representable()
97 requires(is_constructible_v<extents_type, _OtherExtents> && _OtherExtents::rank() <= 1)
114 _LIBCPP_HIDE_FROM_ABI constexpr explicit(extents_type::rank() > 0) in requires()
117 if constexpr (extents_type::rank() > 0) { in requires()
121 for (rank_type __r = 0; __r < extents_type::rank(); __r++) in requires()
141 for (size_t __r = 0; __r < extents_type::rank(); __r++) in required_span_size()
147 …requires((sizeof...(_Indices) == extents_type::rank()) && (is_convertible_v<_Indices, index_type> …
172 requires(extents_type::rank() > 0) in stride()
177 __r < extents_type::rank(), "layout_right::mapping::stride(): invalid rank index"); in stride()
[all …]
H A Dmdspan.h91 _LIBCPP_HIDE_FROM_ABI static constexpr rank_type rank() noexcept { return extents_type::rank(); } in rank() function
114 … ((sizeof...(_OtherIndexTypes) == rank()) || (sizeof...(_OtherIndexTypes) == rank_dynamic())) &&
122 …((_Size == rank()) || (_Size == rank_dynamic())) && is_constructible_v<mapping_type, extents_type>…
131 …((_Size == rank()) || (_Size == rank_dynamic())) && is_constructible_v<mapping_type, extents_type>…
166 if constexpr (rank() > 0) { in requires()
167 for (size_t __r = 0; __r < rank(); __r++) { in requires()
188 (sizeof...(_OtherIndexTypes) == rank()))
200 …_LIBCPP_HIDE_FROM_ABI constexpr reference operator[](const array< _OtherIndexType, rank()>& __indi… in requires()
203 }(make_index_sequence<rank()>())); in requires()
209 …_LIBCPP_HIDE_FROM_ABI constexpr reference operator[](span<_OtherIndexType, rank()> __indices) cons… in requires()
[all …]
H A Dextents.h300 _LIBCPP_HIDE_FROM_ABI static constexpr rank_type rank() noexcept { return __rank_; }
394 if constexpr (rank() > 0) {
395 for (size_t __r = 0; __r < rank(); __r++) {
419 if constexpr (rank() != sizeof...(_OtherExtents)) {
521 make_index_sequence<_Extents::rank()>(), __ext, __values...);
H A Dlayout_stride.h77 static constexpr rank_type __rank_ = extents_type::rank();
123 if constexpr (_StridedMapping::extents_type::rank() == 0) { in __offset()
339 (_OtherMapping::extents_type::rank() == __rank_) && _OtherMapping::is_always_strided())
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Drank.h26 struct rank : integral_constant<size_t, __array_rank(_Tp)> {}; struct
31 struct _LIBCPP_TEMPLATE_VIS rank : public integral_constant<size_t, 0> {};
33 struct _LIBCPP_TEMPLATE_VIS rank<_Tp[]> : public integral_constant<size_t, rank<_Tp>::value + 1> {};
35 struct _LIBCPP_TEMPLATE_VIS rank<_Tp[_Np]> : public integral_constant<size_t, rank<_Tp>::value + 1>…
41 inline constexpr size_t rank_v = rank<_Tp>::value;
/freebsd/contrib/jemalloc/src/
H A Dwitness.c9 witness_init(witness_t *witness, const char *name, witness_rank_t rank, in witness_init() argument
12 witness->rank = rank; in witness_init()
24 malloc_printf(" %s(%u)", w->name, w->rank); in witness_lock_error_impl()
26 malloc_printf(" %s(%u)\n", witness->name, witness->rank); in witness_lock_error_impl()
34 witness->rank); in witness_owner_error_impl()
43 witness->rank); in witness_not_owner_error_impl()
57 malloc_printf(" %s(%u)", w->name, w->rank); in witness_depth_error_impl()
H A Dmutex_pool.c10 mutex_pool_init(mutex_pool_t *pool, const char *name, witness_rank_t rank) { in mutex_pool_init() argument
12 if (malloc_mutex_init(&pool->mutexes[i], name, rank, in mutex_pool_init()
H A Dmutex.c157 witness_rank_t rank, malloc_mutex_lock_order_t lock_order) { in malloc_mutex_init() argument
196 witness_init(&mutex->witness, name, rank, in malloc_mutex_init()
199 witness_init(&mutex->witness, name, rank, NULL, NULL); in malloc_mutex_init()
221 mutex->witness.rank, mutex->lock_order)) { in malloc_mutex_postfork_child()
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_ucast_dnup.c78 unsigned rank; member
156 next_dir = dnup_get_dir(u->rank, rem_u->rank); in dnup_bfs_by_node()
240 if (u->rank == 0) in dnup_subn_rank()
274 if (remote_u->rank > u->rank + 1) { in dnup_subn_rank()
275 remote_u->rank = u->rank + 1; in dnup_subn_rank()
276 max_rank = remote_u->rank; in dnup_subn_rank()
282 remote_u->rank); in dnup_subn_rank()
398 u->rank = 0xffffffff; in create_dnup_node()
445 u->rank = 0; in dnup_lid_matrices()
H A Dosm_ucast_updn.c78 unsigned rank; member
161 next_dir = updn_get_dir(u->rank, rem_u->rank, in updn_bfs_by_node()
229 if (!u->rank) in updn_subn_rank()
263 if (remote_u->rank > u->rank + 1) { in updn_subn_rank()
264 remote_u->rank = u->rank + 1; in updn_subn_rank()
265 max_rank = remote_u->rank; in updn_subn_rank()
271 remote_u->rank); in updn_subn_rank()
295 rank != 0) in updn_clear_non_root_hops()
397 u->rank = 0xffffffff; in create_updn_node()
500 ((struct updn_node *)p_sw->priv)->rank = 0; in updn_find_root_nodes_by_min_hop()
[all …]
H A Dosm_ucast_ftree.c170 uint32_t rank; member
561 p_sw->rank = 0xFFFFFFFF; in sw_create()
684 return (p_sw->rank != 0xFFFFFFFF); in sw_ranked()
1196 if (p_sw->rank == i) in fabric_dump()
1236 if (p_sw->rank == i) in fabric_dump_general_info()
1259 if (p_sw->rank == 0) in fabric_dump_general_info()
1381 new_tuple[0] = (uint8_t) p_sw->rank; in fabric_assign_first_tuple()
1386 if (p_sw->rank == 0) { in fabric_assign_first_tuple()
1503 if (p_sw->rank != p_ftree->leaf_switch_rank) { in fabric_mark_leaf_switches()
1511 sw_get_guid_ho(p_sw), p_sw->rank, in fabric_mark_leaf_switches()
[all …]
H A Dosm_mesh.c389 static int determinant(lash_t *p_lash, int n, int rank, int ***m, int *p);
404 int rank = l - 1; in sub_determinant() local
411 if (rank <= 0) { in sub_determinant()
417 if (!(m = pm_alloc(p_lash, rank, n))) { in sub_determinant()
441 if (determinant(p_lash, n, rank, m, p)) { in sub_determinant()
450 pm_free(m, rank); in sub_determinant()
461 static int determinant(lash_t *p_lash, int deg, int rank, int ***m, int *p) in determinant() argument
470 if (rank == 1) { in determinant()
478 else if (rank == 2) { in determinant()
508 for (i = 0; i < rank; i++) { in determinant()
[all …]
/freebsd/usr.sbin/lpr/common_source/
H A Ddisplayq.c78 static int rank; /* order to be printed (-1=none, 0=active) */ variable
104 rank = -1; in displayq()
392 if (rank < 0) in inform()
393 rank = 0; in inform()
395 rank++; in inform()
422 prank(rank); in inform()
427 prank(rank); in inform()
/freebsd/contrib/libdivsufsort/lib/
H A Dtrsort.c294 saidx_t rank, lastrank, newrank = -1; in tr_partialcopy() local
301 rank = ISA[s + depth]; in tr_partialcopy()
302 if(lastrank != rank) { lastrank = rank; newrank = d - SA; } in tr_partialcopy()
309 rank = ISA[*e]; in tr_partialcopy()
310 if(lastrank != rank) { lastrank = rank; newrank = e - SA; } in tr_partialcopy()
311 if(newrank != rank) { ISA[*e] = newrank; } in tr_partialcopy()
318 rank = ISA[s + depth]; in tr_partialcopy()
319 if(lastrank != rank) { lastrank = rank; newrank = d - SA; } in tr_partialcopy()
/freebsd/contrib/llvm-project/lld/ELF/
H A DWriter.cpp648 unsigned rank = osec.partition * RF_PARTITION; in getSectionRank() local
653 return rank; in getSectionRank()
654 rank |= RF_NOT_ADDR_SET; in getSectionRank()
659 return rank | RF_NOT_ALLOC; in getSectionRank()
682 rank |= config->zLrodataAfterBss ? RF_LARGE_ALT : 0; in getSectionRank()
684 rank |= config->zLrodataAfterBss ? 0 : RF_LARGE; in getSectionRank()
689 rank |= 1; in getSectionRank()
691 rank |= 2; in getSectionRank()
696 rank |= 3; in getSectionRank()
701 rank |= 4; in getSectionRank()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassManagerInternal.h162 check(rank<2>);
172 static decltype(NonceFunction(&Checker<T>::invalidate)) check(rank<1>);
177 static EnabledType check(rank<0>);
180 enum { Value = sizeof(check<ResultT>(rank<2>())) == sizeof(EnabledType) };
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmdspan53 static constexpr rank_type rank() noexcept { return sizeof...(_Extents); }
54 static constexpr rank_type rank_dynamic() noexcept { return dynamic-index(rank()); }
112 constexpr explicit(extents_type::rank() > 0)
166 constexpr explicit(extents_type::rank() > 0)
210 static constexpr rank_type rank_ = extents_type::rank(); // exposition only
291 static constexpr rank_type rank() noexcept { return extents_type::rank(); }
327 constexpr reference operator[](span<OtherIndexType, rank()> indices) const;
329 constexpr reference operator[](const array<OtherIndexType, rank()>& indices) const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h250 return rank(a_data) > rank(b_data); in operator()
255 int rank(const uint32_t data) const { in rank() function

123