Home
last modified time | relevance | path

Searched refs:L2 (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/openssl/crypto/ec/curve448/
Df_generic.c174 gf L0, L1, L2; in gf_isr() local
177 gf_mul(L2, x, L1); in gf_isr()
178 gf_sqr(L1, L2); in gf_isr()
179 gf_mul(L2, x, L1); in gf_isr()
180 gf_sqrn(L1, L2, 3); in gf_isr()
181 gf_mul(L0, L2, L1); in gf_isr()
183 gf_mul(L0, L2, L1); in gf_isr()
184 gf_sqrn(L2, L0, 9); in gf_isr()
185 gf_mul(L1, L0, L2); in gf_isr()
187 gf_mul(L2, x, L0); in gf_isr()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dilist.h258 template <class Cloner> void cloneFrom(const iplist_impl &L2, Cloner clone) {
260 for (const_reference V : L2)
299 void transfer(iterator position, iplist_impl &L2, iterator first, iterator last) {
303 if (this != &L2) // Notify traits we moved the nodes...
304 this->transferNodesFromList(L2, first, last);
306 base_list_type::splice(position, L2, first, last);
342 void splice(iterator where, iplist_impl &L2) {
343 if (!L2.empty())
344 transfer(where, L2, L2.begin(), L2.end());
346 void splice(iterator where, iplist_impl &L2, iterator first) {
[all …]
Dsimple_ilist.h169 void cloneFrom(const simple_ilist &L2, Cloner clone, Disposer dispose) { in cloneFrom() argument
171 for (const_reference V : L2) in cloneFrom()
234 void splice(iterator I, simple_ilist &L2) { in splice() argument
235 splice(I, L2, L2.begin(), L2.end()); in splice()
239 void splice(iterator I, simple_ilist &L2, iterator Node) { in splice() argument
240 splice(I, L2, Node, std::next(Node)); in splice()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Dilist.h243 template <class Cloner> void cloneFrom(const iplist_impl &L2, Cloner clone) {
245 for (const_reference V : L2)
284 void transfer(iterator position, iplist_impl &L2, iterator first, iterator last) {
289 this->transferNodesFromList(L2, first, last);
291 base_list_type::splice(position, L2, first, last);
327 void splice(iterator where, iplist_impl &L2) {
328 if (!L2.empty())
329 transfer(where, L2, L2.begin(), L2.end());
331 void splice(iterator where, iplist_impl &L2, iterator first) {
334 transfer(where, L2, first, last);
[all …]
Dsimple_ilist.h173 void cloneFrom(const simple_ilist &L2, Cloner clone, Disposer dispose) { in cloneFrom() argument
175 for (const_reference V : L2) in cloneFrom()
238 void splice(iterator I, simple_ilist &L2) { in splice() argument
239 splice(I, L2, L2.begin(), L2.end()); in splice()
243 void splice(iterator I, simple_ilist &L2, iterator Node) { in splice() argument
244 splice(I, L2, Node, std::next(Node)); in splice()
DEquivalenceClasses.h221 member_iterator unionSets(member_iterator L1, member_iterator L2) { in unionSets() argument
222 assert(L1 != member_end() && L2 != member_end() && "Illegal inputs!"); in unionSets()
223 if (L1 == L2) return L1; // Unifying the same two sets, noop. in unionSets()
227 const ECValue &L1LV = *L1.Node, &L2LV = *L2.Node; in unionSets()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dgreedyh.c60 const guint8 * L2, const guint8 * L1, const guint8 * L3, const guint8 * L2P,
75 const guint8 * L2, const guint8 * L3, const guint8 * L2P, guint8 * Dest, in greedyh_scanline_C_ayuv() argument
128 l2 = L2[0]; in greedyh_scanline_C_ayuv()
177 L2 += 1; in greedyh_scanline_C_ayuv()
186 const guint8 * L2, const guint8 * L3, const guint8 * L2P, guint8 * Dest, in greedyh_scanline_C_yuy2() argument
251 l2_l = L2[0]; in greedyh_scanline_C_yuy2()
252 l2_c = L2[1]; in greedyh_scanline_C_yuy2()
322 L2 += 2; in greedyh_scanline_C_yuy2()
330 const guint8 * L2, const guint8 * L3, const guint8 * L2P, guint8 * Dest, in greedyh_scanline_C_uyvy() argument
395 l2_l = L2[1]; in greedyh_scanline_C_uyvy()
[all …]
Dgreedyh.asm33 FUNCT_NAME_YUY2 (GstDeinterlaceMethodGreedyH *self, const guint8 * L1, const guint8 * L2, const gui…
54 C_FUNCT_YUY2 (self, L1, L2, L3, L2P, Dest, width);
231 [L2] "m" (L2),
252 FUNCT_NAME_UYVY (GstDeinterlaceMethodGreedyH *self, const guint8 * L1, const guint8 * L2, const gui…
273 C_FUNCT_UYVY (self, L1, L2, L3, L2P, Dest, width);
453 [L2] "m" (L2),
/third_party/openssl/crypto/whrlpool/
Dwp_block.c538 u64 L0, L1, L2, L3, L4, L5, L6, L7; in whirlpool_block()
571 L2 = C0(K, 2) ^ C1(K, 1) ^ C2(K, 0) ^ C3(K, 7) ^ in whirlpool_block()
586 K.q[2] = L2; in whirlpool_block()
597 L2 ^= C0(S, 2) ^ C1(S, 1) ^ C2(S, 0) ^ C3(S, 7) ^ in whirlpool_block()
612 S.q[2] = L2; in whirlpool_block()
621 L2 = C2(K, 0); in whirlpool_block()
630 L2 ^= C1(K, 1); in whirlpool_block()
638 L2 ^= C0(K, 2); in whirlpool_block()
654 L2 ^= C7(K, 3); in whirlpool_block()
662 L2 ^= C6(K, 4); in whirlpool_block()
[all …]
/third_party/typescript/tests/baselines/reference/
DoptionalParamArgsTest.js51 var L2 = function (L2A1:number) { return L2A1; } class
66 var l2v1=L2(1);
106 L2();
110 L2(1,2);
188 var L2 = function (L2A1) { return L2A1; };
205 var l2v1 = L2(1);
239 L2();
243 L2(1, 2);
Dcf.js30 L2: try {
32 break L2;
88 L2: try {
90 break L2;
Dcf.types91 L2: try {
92 >L2 : any
100 break L2;
101 >L2 : any
DoptionalParamArgsTest.types142 var L2 = function (L2A1:number) { return L2A1; }
143 >L2 : (L2A1: number) => number
218 var l2v1=L2(1);
220 >L2(1) : number
221 >L2 : (L2A1: number) => number
404 L2();
405 >L2() : number
406 >L2 : (L2A1: number) => number
430 L2(1,2);
431 >L2(1,2) : number
[all …]
DoptionalParamArgsTest.symbols125 var L2 = function (L2A1:number) { return L2A1; }
126 >L2 : Symbol(L2, Decl(optionalParamArgsTest.ts, 49, 3))
184 var l2v1=L2(1);
186 >L2 : Symbol(L2, Decl(optionalParamArgsTest.ts, 49, 3))
313 L2();
314 >L2 : Symbol(L2, Decl(optionalParamArgsTest.ts, 49, 3))
329 L2(1,2);
330 >L2 : Symbol(L2, Decl(optionalParamArgsTest.ts, 49, 3))
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dsemantics_4_test.dart32 label: 'L2',
60 label: 'L2',
94 label: 'L2',
120 label: 'L2',
139 label: 'L2',
160 label: 'L2',
/third_party/typescript/tests/cases/compiler/
DoptionalParamArgsTest.ts50 var L2 = function (L2A1:number) { return L2A1; } variable
65 var l2v1=L2(1);
105 L2();
109 L2(1,2);
Dcf.ts30 L2: try {
32 break L2;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dext_inst.cldebug100_test.cpp258 #define CASE_IIILLIFL(Enum, L0, L1, Fstr, Fnum, L2) \ argument
261 " %4 %5 %6 " #L0 " " #L1 " %7 " Fstr " " #L2, { \
262 4, 5, 6, L0, L1, 7, Fnum, L2 \
266 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
269 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
270 4, 5, 6, L0, L1, 7, L2 \
281 #define CASE_IEIILLI(Enum, E0, L1, L2) \ argument
284 " %4 " #E0 " %5 %6 " #L1 " " #L2 " %7", { \
285 4, uint32_t(OpenCLDebugInfo100##E0), 5, 6, L1, L2, 7 \
489 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
[all …]
Dext_inst.debuginfo_test.cpp134 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
137 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
138 4, 5, 6, L0, L1, 7, L2 \
334 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
337 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9", { \
338 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9 \
342 #define CASE_IIILLIIFLII(Enum, L0, L1, Fstr, Fnum, L2) \ argument
345 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9 %10", { \
346 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9, 10 \
/third_party/spirv-tools/test/
Dext_inst.cldebug100_test.cpp258 #define CASE_IIILLIFL(Enum, L0, L1, Fstr, Fnum, L2) \ argument
261 " %4 %5 %6 " #L0 " " #L1 " %7 " Fstr " " #L2, { \
262 4, 5, 6, L0, L1, 7, Fnum, L2 \
266 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
269 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
270 4, 5, 6, L0, L1, 7, L2 \
281 #define CASE_IEIILLI(Enum, E0, L1, L2) \ argument
284 " %4 " #E0 " %5 %6 " #L1 " " #L2 " %7", { \
285 4, uint32_t(OpenCLDebugInfo100##E0), 5, 6, L1, L2, 7 \
489 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
[all …]
Dext_inst.debuginfo_test.cpp134 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
137 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
138 4, 5, 6, L0, L1, 7, L2 \
334 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
337 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9", { \
338 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9 \
342 #define CASE_IIILLIIFLII(Enum, L0, L1, Fstr, Fnum, L2) \ argument
345 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9 %10", { \
346 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9, 10 \
/third_party/skia/third_party/externals/spirv-tools/test/
Dext_inst.cldebug100_test.cpp258 #define CASE_IIILLIFL(Enum, L0, L1, Fstr, Fnum, L2) \ argument
261 " %4 %5 %6 " #L0 " " #L1 " %7 " Fstr " " #L2, { \
262 4, 5, 6, L0, L1, 7, Fnum, L2 \
266 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
269 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
270 4, 5, 6, L0, L1, 7, L2 \
281 #define CASE_IEIILLI(Enum, E0, L1, L2) \ argument
284 " %4 " #E0 " %5 %6 " #L1 " " #L2 " %7", { \
285 4, uint32_t(OpenCLDebugInfo100##E0), 5, 6, L1, L2, 7 \
489 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
[all …]
Dext_inst.debuginfo_test.cpp134 #define CASE_IIILLIL(Enum, L0, L1, L2) \ argument
137 " %4 %5 %6 " #L0 " " #L1 " %7 " #L2, { \
138 4, 5, 6, L0, L1, 7, L2 \
334 #define CASE_IIILLIIFLI(Enum, L0, L1, Fstr, Fnum, L2) \ argument
337 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9", { \
338 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9 \
342 #define CASE_IIILLIIFLII(Enum, L0, L1, Fstr, Fnum, L2) \ argument
345 " %4 %5 %6 " #L0 " " #L1 " %7 %8 " Fstr " " #L2 " %9 %10", { \
346 4, 5, 6, L0, L1, 7, 8, Fnum, L2, 9, 10 \
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dcgoto01.c10 label = &&L2; in foo()
13 L2: abort(); in foo()
/third_party/python/Lib/test/
Dtest_tuple.py236 L2 = list(product(A, repeat=2))
237 L3 = L2 + list(product(A, repeat=3))
245 T += product(L2, repeat=2)
247 T += product(B, B, L2)
248 T += product(B, L2, B)
249 T += product(L2, B, B)

12345678