Home
last modified time | relevance | path

Searched refs:EL (Results 1 – 25 of 134) sorted by relevance

123456

/third_party/boost/boost/numeric/ublas/tensor/
Dexpression.hpp70 template<class T, class EL, class ER, class OP>
72 : public tensor_expression <T, binary_tensor_expression<T,EL,ER,OP>>
74 using self_type = binary_tensor_expression<T,EL,ER,OP>;
77 using expression_type_left = EL;
99 template<class T, class EL, class ER, class OP>
100 auto make_binary_tensor_expression( tensor_expression<T,EL> const& el, tensor_expression<T,ER> cons… in make_binary_tensor_expression()
102 return binary_tensor_expression<T,EL,ER,OP>( el(), er(), op) ; in make_binary_tensor_expression()
105 template<class T, class EL, class ER, class OP>
106 auto make_binary_tensor_expression( matrix_expression<EL> const& el, tensor_expression<T,ER> const&… in make_binary_tensor_expression()
108 return binary_tensor_expression<T,EL,ER,OP>( el(), er(), op) ; in make_binary_tensor_expression()
[all …]
Dexpression_evaluation.hpp34 template<class T, class EL, class ER, class OP>
57 template<class T, class EL, class ER, class OP>
58 struct has_tensor_types<T, binary_tensor_expression<T,EL,ER,OP>>
59 …tatic constexpr bool value = std::is_same<T,EL>::value || std::is_same<T,ER>::value || has_tensor_…
109 template<class T, class EL, class ER, class OP>
110 auto retrieve_extents(binary_tensor_expression<T,EL,ER,OP> const& expr) in retrieve_extents() argument
112 static_assert(detail::has_tensor_types<T,binary_tensor_expression<T,EL,ER,OP>>::value, in retrieve_extents()
115 if constexpr ( std::is_same<T,EL>::value ) in retrieve_extents()
121 else if constexpr ( detail::has_tensor_types<T,EL>::value ) in retrieve_extents()
181 template<class T, class EL, class ER, class OP, class S>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/
DLineEditor.cpp102 EditLine *EL; member
112 const char *ElGetPromptFn(EditLine *EL) { in ElGetPromptFn() argument
114 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) in ElGetPromptFn()
123 unsigned char ElCompletionFn(EditLine *EL, int ch) { in ElCompletionFn() argument
125 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) { in ElCompletionFn()
137 ::el_push(EL, const_cast<char *>(Prevs.c_str())); in ElCompletionFn()
144 const LineInfo *LI = ::el_line(EL); in ElCompletionFn()
150 ::el_insertstr(EL, Action.Text.c_str()); in ElCompletionFn()
164 ::el_push(EL, const_cast<char *>("\05\t")); in ElCompletionFn()
211 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor()
[all …]
/third_party/boost/boost/graph/
Dadj_list_serialize.hpp31 class EL >
32 struct tracking_level< boost::adjacency_list< OEL, VL, D, VP, EP, GP, EL > >
40 class GP, class EL >
42 const boost::adjacency_list< OEL, VL, D, VP, EP, GP, EL >& graph, in save()
46 typedef adjacency_list< OEL, VL, D, VP, EP, GP, EL > Graph; in save()
78 class GP, class EL >
80 Archive& ar, boost::adjacency_list< OEL, VL, D, VP, EP, GP, EL >& graph, in load()
84 typedef adjacency_list< OEL, VL, D, VP, EP, GP, EL > Graph; in load()
119 class GP, class EL >
121 boost::adjacency_list< OEL, VL, D, VP, EP, GP, EL >& graph, in serialize()
Dadjacency_list_io.hpp358 template < class EL, class VL, class D, class VP, class EP, class GP, class VPS,
360 GraphParser< adjacency_list< EL, VL, D, VP, EP, GP >, VP, EP, VPS, EPS > read( in read() argument
361 adjacency_list< EL, VL, D, VP, EP, GP >& g, VPS vps, EPS eps) in read()
363 return GraphParser< adjacency_list< EL, VL, D, VP, EP, GP >, VP, EP, VPS, in read()
368 template < class EL, class VL, class D, class VP, class EP, class GP >
369 GraphParser< adjacency_list< EL, VL, D, VP, EP, GP >, VP, EP, VP, EP > read( in read() argument
370 adjacency_list< EL, VL, D, VP, EP, GP >& g) in read()
372 return GraphParser< adjacency_list< EL, VL, D, VP, EP, GP >, VP, EP, VP, in read()
386 template < class EL, class VL, class D, class VP, class EP, class GP, class VPS,
388 GraphPrinter< adjacency_list< EL, VL, D, VP, EP, GP >, VPS, EPS > write( in write() argument
[all …]
Dadjacency_list.hpp413 typename GP, typename EL
414 #define ADJLIST adjacency_list< OEL, VL, D, VP, EP, GP, EL >
465 typename EL >
466 struct graph_mutability_traits< adjacency_list< OEL, vecS, D, VP, EP, GP, EL > >
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DDirectedGraph.h110 bool findEdgesTo(const NodeType &N, SmallVectorImpl<EdgeType *> &EL) const { in findEdgesTo() argument
111 assert(EL.empty() && "Expected the list of edges to be empty."); in findEdgesTo()
114 EL.push_back(E); in findEdgesTo()
115 return !EL.empty(); in findEdgesTo()
219 bool findIncomingEdgesToNode(const NodeType &N, SmallVectorImpl<EdgeType*> &EL) const { in findIncomingEdgesToNode() argument
220 assert(EL.empty() && "Expected the list of edges to be empty."); in findIncomingEdgesToNode()
226 EL.insert(EL.end(), TempList.begin(), TempList.end()); in findIncomingEdgesToNode()
229 return !EL.empty(); in findIncomingEdgesToNode()
241 EdgeListTy EL; in removeNode() local
245 Node->findEdgesTo(N, EL); in removeNode()
[all …]
/third_party/iowow/src/utils/
Diwarr.c16 #define EL(idx_) (elsptr + (idx_) * elsize) in iwarr_sorted_insert() macro
29 cr = cmp(EL(idx), eptr); in iwarr_sorted_insert()
48 memmove(EL(idx + 1), EL(idx), (nels - idx) * elsize); in iwarr_sorted_insert()
49 memcpy(EL(idx), eptr, elsize); in iwarr_sorted_insert()
51 #undef EL in iwarr_sorted_insert()
60 #define EL(idx_) (elsptr + (idx_) * elsize) in iwarr_sorted_remove() macro
72 cr = cmp(EL(idx), eptr); in iwarr_sorted_remove()
75 memmove(EL(idx), EL(idx + 1), (nels - idx - 1) * elsize); in iwarr_sorted_remove()
91 #undef EL in iwarr_sorted_remove()
100 #define EL(idx_) (elsptr + (idx_) * elsize) in iwarr_sorted_find() macro
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DEmulatedIntrinsics.cpp59 template<typename T, typename EL = UnderlyingTypeT<T>>
60 void gather(T &out, RValue<Pointer<EL>> base, RValue<Int4> offsets, RValue<Int4> mask, unsigned int… in gather()
73 auto el = Load(Pointer<EL>(&baseBytePtr[offset]), alignment, atomic, order); in gather()
78 out = Insert(out, EL(0), i); in gather()
83 template<typename T, typename EL = UnderlyingTypeT<T>>
84 void scatter(RValue<Pointer<EL>> base, RValue<T> val, RValue<Int4> offsets, RValue<Int4> mask, unsi… in scatter()
96 Store(Extract(val, i), Pointer<EL>(&baseBytePtr[offset]), alignment, atomic, order); in scatter()
/third_party/boost/libs/graph/test/
Dbundled_properties.cpp124 template < class EL, class VL, class D, class VP, class EP, class GP >
125 void test_io(adjacency_list< EL, VL, D, VP, EP, GP >& map, int) in test_io() argument
127 typedef adjacency_list< EL, VL, D, VP, EP, GP > Map; in test_io()
134 adjacency_list< EL, VL, D, VP, EP, GP > map2; in test_io()
137 adjacency_list< EL, VL, D, VP, EP, GP > >::vertex_iterator v2 in test_io()
143 adjacency_list< EL, VL, D, VP, EP, GP > >::out_edge_iterator e2 in test_io()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DShaderCore.hpp318 using EL = typename Element<T>::type; in Load() typedef
334 return T(*rr::Pointer<EL>(base + staticOffsets[0], alignment)); in Load()
364 EL el = *rr::Pointer<EL>(base + staticOffsets[0], alignment); in Load()
385 return rr::Gather(rr::Pointer<EL>(base), offs, mask, alignment, zeroMaskedLanes); in Load()
395 out = T(rr::Load(rr::Pointer<EL>(&base[offset]), alignment, atomic, order)); in Load()
412 auto el = rr::Load(rr::Pointer<EL>(&base[offset]), alignment, atomic, order); in Load()
424 using EL = typename Element<T>::type; in Store() typedef
454 *rr::Pointer<EL>(base + staticOffsets[0], alignment) = As<EL>(scalarVal); in Store()
469 rr::Scatter(rr::Pointer<EL>(base), val, offs, mask, alignment); in Store()
489 rr::Store(Extract(val, i), rr::Pointer<EL>(&base[offset]), alignment, atomic, order); in Store()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceGraphBuilder.cpp191 SmallVector<EdgeType *, 10> EL; in createPiBlocks() local
192 Src->findEdgesTo(*Dst, EL); in createPiBlocks()
193 for (EdgeType *OldEdge : EL) { in createPiBlocks()
/third_party/icu/icu4c/source/data/translit/
Dsr_sr_Latn_BGN.txt84 Л → L ; # CYRILLIC CAPITAL LETTER EL
85 л → l ; # CYRILLIC SMALL LETTER EL
Dmk_mk_Latn_BGN.txt113 Л → L ; # CYRILLIC CAPITAL LETTER EL
114 л → l ; # CYRILLIC SMALL LETTER EL
Daz_Cyrl_az_BGN.txt120 Л → L ; # CYRILLIC CAPITAL LETTER EL
121 л → l ; # CYRILLIC SMALL LETTER EL
/third_party/skia/third_party/externals/icu/source/data/translit/
Dsr_sr_Latn_BGN.txt84 Л → L ; # CYRILLIC CAPITAL LETTER EL
85 л → l ; # CYRILLIC SMALL LETTER EL
Dmk_mk_Latn_BGN.txt113 Л → L ; # CYRILLIC CAPITAL LETTER EL
114 л → l ; # CYRILLIC SMALL LETTER EL
Daz_Cyrl_az_BGN.txt120 Л → L ; # CYRILLIC CAPITAL LETTER EL
121 л → l ; # CYRILLIC SMALL LETTER EL
Dky_ky_Latn_BGN.txt90 Л → L ; # CYRILLIC CAPITAL LETTER EL
91 л → l ; # CYRILLIC SMALL LETTER EL
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
Dsr_sr_Latn_BGN.txt83 Л → L ; # CYRILLIC CAPITAL LETTER EL
84 л → l ; # CYRILLIC SMALL LETTER EL
Dmk_mk_Latn_BGN.txt112 Л → L ; # CYRILLIC CAPITAL LETTER EL
113 л → l ; # CYRILLIC SMALL LETTER EL
Daz_Cyrl_az_BGN.txt119 Л → L ; # CYRILLIC CAPITAL LETTER EL
120 л → l ; # CYRILLIC SMALL LETTER EL
Dky_ky_Latn_BGN.txt89 Л → L ; # CYRILLIC CAPITAL LETTER EL
90 л → l ; # CYRILLIC SMALL LETTER EL
/third_party/jerryscript/targets/esp8266/
DMakefile58 -Wl,-EL \
DMakefile.esp826635 ESP_CFLAGS += -Wl,-EL -fno-inline-functions

123456