OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IndexList
(Results
1 - 3
of
3
) sorted by null
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h
135
/// \struct
IndexList
139
struct
IndexList
{};
156
typedef
IndexList
<Is...> type;
184
Tuple<Args..., T> append_base(Tuple<Args...> t, T a,
IndexList
<I...>) {
215
Tuple<Args1..., Args2...> append_base(Tuple<Args1...> t1, Tuple<Args2...> t2,
IndexList
<I1...>,
IndexList
<I2...>) {
TensorIndexList.h
300
struct
IndexList
: internal::IndexTuple<FirstType, OtherTypes...> {
311
EIGEN_DEVICE_FUNC constexpr
IndexList
(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTuple<FirstType, OtherTypes...>(other) { }
312
EIGEN_DEVICE_FUNC constexpr
IndexList
(FirstType& first, OtherTypes... other) : internal::IndexTuple<FirstType, OtherTypes...>(first, other...) { }
313
EIGEN_DEVICE_FUNC constexpr
IndexList
() : internal::IndexTuple<FirstType, OtherTypes...>() { }
329
constexpr
IndexList
<FirstType, OtherTypes...> make_index_list(FirstType val1, OtherTypes... other_vals) {
330
return
IndexList
<FirstType, OtherTypes...>(val1, other_vals...);
353
template<typename FirstType, typename... OtherTypes> size_t array_prod(const
IndexList
<FirstType, OtherTypes...>& sizes) {
355
for (int i = 0; i < array_size<
IndexList
<FirstType, OtherTypes...> >::value; ++i) {
361
template<typename FirstType, typename... OtherTypes> struct array_size<
IndexList
<FirstType, OtherTypes...> > {
364
template<typename FirstType, typename... OtherTypes> struct array_size<const
IndexList
<FirstType, OtherTypes...> >
[
all
...]
/external/llvm/include/llvm/CodeGen/
SlotIndexes.h
343
typedef ilist<IndexListEntry>
IndexList
;
344
IndexList
indexList
;
347
IndexList
graveyardList;
374
void renumberIndexes(
IndexList
::iterator curItr);
384
// The
indexList
's nodes are all allocated in the BumpPtrAllocator.
385
indexList
.clearAndLeakNodesUnsafely();
406
assert(
indexList
.front().getIndex() == 0 && "First index is not 0?");
407
return SlotIndex(&
indexList
.front(), 0);
412
return SlotIndex(&
indexList
.back(), 0)
[
all
...]
Completed in 111 milliseconds