Home
last modified time | relevance | path

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

123

/freebsd-13-stable/contrib/llvm-project/libcxx/include/__tuple/
HDtuple_size.h26 struct _LIBCPP_TEMPLATE_VIS tuple_size; variable
33 struct _LIBCPP_TEMPLATE_VIS tuple_size<__enable_if_tuple_size_imp< const _Tp,
35 … integral_constant<size_t, sizeof(tuple_size<_Tp>)>>>
36 : public integral_constant<size_t, tuple_size<_Tp>::value> {};
39 struct _LIBCPP_TEMPLATE_VIS tuple_size<__enable_if_tuple_size_imp< volatile _Tp,
41 … integral_constant<size_t, sizeof(tuple_size<_Tp>)>>>
42 : public integral_constant<size_t, tuple_size<_Tp>::value> {};
46 tuple_size<__enable_if_tuple_size_imp<const volatile _Tp, integral_constant<size_t, sizeof(tuple_si…
47 : public integral_constant<size_t, tuple_size<_Tp>::value> {};
51 struct _LIBCPP_TEMPLATE_VIS tuple_size<const _Tp> : public tuple_size<_Tp> {};
[all …]
HDmake_tuple_types.h56 size_t _Ep = tuple_size<__libcpp_remove_reference_t<_Tp> >::value,
58 bool _SameSize = (_Ep == tuple_size<__libcpp_remove_reference_t<_Tp> >::value)>
HDtuple_like_no_subrange.h55 concept __pair_like_no_subrange = __tuple_like_no_subrange<_Tp> && tuple_size<remove_cvref_t<_Tp>>:…
/freebsd-13-stable/sys/arm/mv/
HDmv_localbus.c167 int tuple_size, tuples; in fdt_localbus_reg_decode() local
173 tuple_size = sizeof(pcell_t) * (addr_cells + size_cells); in fdt_localbus_reg_decode()
174 tuples = OF_getprop_alloc_multi(node, "reg", tuple_size, (void **)&reg); in fdt_localbus_reg_decode()
176 debugf("tuples = %d, tuple size = %d\n", tuples, tuple_size); in fdt_localbus_reg_decode()
387 uint32_t tuple_size, bank; in fdt_localbus_devmap() local
404 tuple_size = (addr_cells + par_addr_cells + size_cells); in fdt_localbus_devmap()
405 if (tuple_size > MV_LOCALBUS_MAX_BANK_CELLS) in fdt_localbus_devmap()
408 tuple_size *= sizeof(pcell_t); in fdt_localbus_devmap()
415 dev_num = dev_num / tuple_size; in fdt_localbus_devmap()
HDmv_armv7_machdep.c161 int tuple_size, rv, pins, i, j; in platform_mpp_init() local
193 tuple_size = sizeof(pcell_t) * (par_addr_cells + par_size_cells); in platform_mpp_init()
195 if (tuple_size <= 0) in platform_mpp_init()
216 tuple_size = sizeof(pcell_t) * pin_cells; in platform_mpp_init()
222 if (len % tuple_size) in platform_mpp_init()
224 pins = len / tuple_size; in platform_mpp_init()
HDmv_common.c2522 int len, tuple_size, tuples_count; in fdt_get_ranges() local
2535 tuple_size = sizeof(pcell_t) * (addr_cells + par_addr_cells + in fdt_get_ranges()
2545 tuples_count = len / tuple_size; in fdt_get_ranges()
2553 *tuplesize = tuple_size; in fdt_get_ranges()
2562 int i, entry_size, err, t, tuple_size, tuples; in win_cpu_from_dt() local
2568 &tuples, &tuple_size)) == 0) { in win_cpu_from_dt()
2574 entry_size = tuple_size / sizeof(pcell_t); in win_cpu_from_dt()
2819 int len, tuple_size, tuples_count; in fdt_fixup_ranges() local
2826 tuple_size = sizeof(pcell_t) * (par_addr_cells + in fdt_fixup_ranges()
2830 tuples_count = len / tuple_size; in fdt_fixup_ranges()
[all …]
/freebsd-13-stable/sys/dev/fdt/
HDfdt_common.c79 int err, i, len, tuple_size, tuples; in fdt_get_range_by_busaddr() local
110 tuple_size = addr_cells + par_addr_cells + size_cells; in fdt_get_range_by_busaddr()
111 tuples = len / (tuple_size * sizeof(cell_t)); in fdt_get_range_by_busaddr()
120 rangesptr = &ranges[i * tuple_size]; in fdt_get_range_by_busaddr()
453 int i, res_len, rv, tuple_size, tuples; in fdt_get_reserved_regions() local
471 tuple_size = sizeof(pcell_t) * (addr_cells + size_cells); in fdt_get_reserved_regions()
484 tuples = res_len / tuple_size; in fdt_get_reserved_regions()
552 int i, reg_len, rv, tuple_size, tuples; in fdt_get_mem_regions() local
569 tuple_size = sizeof(pcell_t) * (addr_cells + size_cells); in fdt_get_mem_regions()
582 tuples = reg_len / tuple_size; in fdt_get_mem_regions()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
HDDWARFDebugArangeSet.cpp105 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
106 if (full_length % tuple_size != 0) in extract()
117 first_tuple_offset += tuple_size; in extract()
/freebsd-13-stable/sys/powerpc/mpc85xx/
HDlbc.c367 int tuple_size, tuples; in fdt_lbc_reg_decode() local
373 tuple_size = sizeof(pcell_t) * (addr_cells + size_cells); in fdt_lbc_reg_decode()
374 tuples = OF_getencprop_alloc_multi(node, "reg", tuple_size, in fdt_lbc_reg_decode()
377 debugf("tuples = %d, tuple size = %d\n", tuples, tuple_size); in fdt_lbc_reg_decode()
451 int tuple_size, tuples; in lbc_attach() local
542 tuple_size = sizeof(pcell_t) * (sc->sc_addr_cells + par_addr_cells + in lbc_attach()
545 tuples = OF_getencprop_alloc_multi(node, "ranges", tuple_size, in lbc_attach()
556 sc->sc_addr_cells, sc->sc_size_cells, tuple_size, tuples); in lbc_attach()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
HDxray_fdr_log_writer.h27 Index<std::tuple_size<
40 Index >= std::tuple_size<typename std::remove_reference<
61 AggregateSizesImpl<Tuple, std::tuple_size<Tuple>::value - 1>::value;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFDebugArangeSet.cpp97 const uint32_t tuple_size = m_header.addr_size << 1; in extract() local
100 first_tuple_offset += tuple_size; in extract()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
HDFDRTraceWriter.cpp24 std::tuple_size<std::remove_reference_t<Tuple>>::value),
34 std::tuple_size<std::remove_reference_t<Tuple>>::value),
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDFormatVariadic.h133 std::array<support::detail::format_adapter *, std::tuple_size<Tuple>::value>
145 std::array<support::detail::format_adapter *, std::tuple_size<Tuple>::value>
/freebsd-13-stable/sys/dev/xdma/
HDxdma.c368 int i, reg_len, ret, tuple_size, tuples; in xdma_handle_mem_node() local
378 tuple_size = sizeof(pcell_t) * (addr_cells + size_cells); in xdma_handle_mem_node()
386 tuples = reg_len / tuple_size; in xdma_handle_mem_node()
/freebsd-13-stable/contrib/llvm-project/libcxx/modules/std/
HDarray.inc27 using std::tuple_size;
HDtuple.inc37 using std::tuple_size;
HDcomplex.inc66 using std::tuple_size;
HDutility.inc74 using std::tuple_size;
/freebsd-13-stable/contrib/llvm-project/libcxx/include/__fwd/
HDtuple.h30 struct _LIBCPP_TEMPLATE_VIS tuple_size; variable
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/internal/
HDgmock-internal-utils.h435 std::make_index_sequence<std::tuple_size<
438 std::make_index_sequence<std::tuple_size<
/freebsd-13-stable/contrib/llvm-project/libcxx/include/__mutex/
HDonce_flag.h90 typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 1>::type _Index; in operator()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDStringMapEntry.h165 struct tuple_size<llvm::StringMapEntry<ValueTy>>
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
HDutility151 template <class T> struct tuple_size;
154 template <class T1, class T2> struct tuple_size<pair<T1, T2> >;
293 #include <__tuple/tuple_size.h>
HDranges351 template<class T> struct tuple_size;
355 struct tuple_size<ranges::subrange<I, S, K>>
443 #include <__tuple/tuple_size.h>
HDarray101 template <class T> struct tuple_size;
103 template <class T, size_t N> struct tuple_size<array<T, N>>;
157 #include <__tuple/tuple_size.h>
438 struct _LIBCPP_TEMPLATE_VIS tuple_size<array<_Tp, _Size> > : public integral_constant<size_t, _Size…

123