HomeSort by relevance Sort by last modified time
    Searched defs:IndexList (Results 1 - 4 of 4) sorted by null

  /build/soong/android/
util.go 64 func IndexList(s string, list []string) int {
75 return IndexList(s, list) != -1
110 i := IndexList(s, list)
  /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 383 milliseconds