Home
last modified time | relevance | path

Searched refs:l1 (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/third_party/python/Lib/lib2to3/tests/
Dtest_pytree.py35 l1 = pytree.Leaf(100, "foo")
36 self.assertEqual(l1.type, 100)
37 self.assertEqual(l1.value, "foo")
40 l1 = pytree.Leaf(100, "foo")
41 self.assertEqual(repr(l1), "Leaf(100, 'foo')")
44 l1 = pytree.Leaf(100, "foo")
45 self.assertEqual(str(l1), "foo")
52 l1 = pytree.Leaf(2, 5)
53 l1.prefix = "foo_"
54 self.assertEqual(str(l1), "foo_5")
[all …]
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_cache/
Dmain.c19 struct lws_cache_ttl_lru *l1; in test_just_l1() local
35 l1 = lws_cache_create(&ci); in test_just_l1()
36 if (!l1) in test_just_l1()
41 if (lws_cache_write_through(l1, "a", (const uint8_t *)"is_a", 5, in test_just_l1()
45 if (lws_cache_write_through(l1, "b", (const uint8_t *)"is_b", 5, in test_just_l1()
51 if (lws_cache_item_get(l1, "a", (const void **)&po, &size) || in test_just_l1()
55 if (lws_cache_item_get(l1, "b", (const void **)&po, &size) || in test_just_l1()
81 if (!lws_cache_item_get(l1, "a", (const void **)&po, &size)) { in test_just_l1()
92 lws_cache_destroy(&l1); in test_just_l1()
104 struct lws_cache_ttl_lru *l1; in test_just_l1_limits() local
[all …]
/third_party/openssl/crypto/rc2/
Drc2_local.h18 #define c2ln(c,l1,l2,n) { \ argument
20 l1=l2=0; \
30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
32 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
34 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
36 case 1: l1|=((unsigned long)(*(--(c)))); \
48 #define l2cn(l1,l2,c,n) { \ argument
59 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
61 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
63 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/node/deps/openssl/openssl/crypto/rc2/
Drc2_local.h18 #define c2ln(c,l1,l2,n) { \ argument
20 l1=l2=0; \
30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
32 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
34 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
36 case 1: l1|=((unsigned long)(*(--(c)))); \
48 #define l2cn(l1,l2,c,n) { \ argument
59 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
61 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
63 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/typescript/tests/baselines/reference/
DcapturedLetConstInLoop8_ES6.js5 l1:
15 break l1;
28 continue l1;
44 break l1;
50 continue l1;
68 l1:
78 break l1;
91 continue l1;
107 break l1;
113 continue l1;
[all …]
DcapturedLetConstInLoop8.js5 l1:
15 break l1;
28 continue l1;
44 break l1;
50 continue l1;
68 l1:
78 break l1;
91 continue l1;
107 break l1;
113 continue l1;
[all …]
DcapturedLetConstInLoop8_ES6.types17 l1:
18 >l1 : any
67 break l1;
68 >l1 : any
99 continue l1;
100 >l1 : any
138 break l1;
139 >l1 : any
153 continue l1;
154 >l1 : any
[all …]
DcapturedLetConstInLoop8.types17 l1:
18 >l1 : any
67 break l1;
68 >l1 : any
99 continue l1;
100 >l1 : any
138 break l1;
139 >l1 : any
153 continue l1;
154 >l1 : any
[all …]
DparserAstSpans1.types31 l1: () => void;
32 >l1 : () => void
73 public l1: () => void;
74 >l1 : () => void
127 i1_i.l1();
128 >i1_i.l1() : void
129 >i1_i.l1 : () => void
131 >l1 : () => void
180 c1_i.l1();
181 >c1_i.l1() : void
[all …]
Dinheritance1.types168 var l1: Locations1;
169 >l1 : Locations1
171 sc = l1;
172 >sc = l1 : Locations1
174 >l1 : Locations1
176 c = l1;
177 >c = l1 : Locations1
179 >l1 : Locations1
181 l1 = sc;
182 >l1 = sc : SelectableControl
[all …]
/third_party/node/deps/openssl/openssl/crypto/rc5/
Drc5_local.h20 #define c2ln(c,l1,l2,n) { \ argument
22 l1=l2=0; \
32 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
34 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
36 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
38 case 1: l1|=((unsigned long)(*(--(c)))); \
50 #define l2cn(l1,l2,c,n) { \ argument
61 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
63 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
65 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/openssl/crypto/rc5/
Drc5_local.h20 #define c2ln(c,l1,l2,n) { \ argument
22 l1=l2=0; \
32 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
34 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
36 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
38 case 1: l1|=((unsigned long)(*(--(c)))); \
50 #define l2cn(l1,l2,c,n) { \ argument
61 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
63 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
65 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/openssl/crypto/cast/
Dcast_local.h22 #define c2ln(c,l1,l2,n) { \ argument
24 l1=l2=0; \
30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
31 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
32 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
33 case 1: l1|=((unsigned long)(*(--(c)))); \
45 #define l2cn(l1,l2,c,n) { \ argument
52 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
53 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
54 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/node/deps/openssl/openssl/crypto/cast/
Dcast_local.h22 #define c2ln(c,l1,l2,n) { \ argument
24 l1=l2=0; \
30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
31 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
32 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
33 case 1: l1|=((unsigned long)(*(--(c)))); \
45 #define l2cn(l1,l2,c,n) { \ argument
52 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
53 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
54 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
/third_party/node/deps/openssl/openssl/crypto/bf/
Dbf_local.h15 # define n2ln(c,l1,l2,n) { \ argument
17 l1=l2=0; \
27 case 4: l1 =((unsigned long)(*(--(c)))) ; \
29 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
31 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
33 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
38 # define l2nn(l1,l2,c,n) { \ argument
49 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
51 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
53 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
/third_party/openssl/crypto/bf/
Dbf_local.h15 # define n2ln(c,l1,l2,n) { \ argument
17 l1=l2=0; \
27 case 4: l1 =((unsigned long)(*(--(c)))) ; \
29 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
31 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
33 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
38 # define l2nn(l1,l2,c,n) { \ argument
49 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
51 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
53 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
/third_party/openssl/test/testutil/
Dformat_output.c42 const char *op, const char *m1, size_t l1, in test_fail_string_common() argument
54 l1 = 0; in test_fail_string_common()
57 if (l1 == 0 && l2 == 0) { in test_fail_string_common()
68 if (l1 != l2 || strncmp(m1, m2, l1) != 0) in test_fail_string_common()
71 while (l1 > 0 || l2 > 0) { in test_fail_string_common()
73 if (l1 > 0) { in test_fail_string_common()
74 b1[n1 = l1 > width ? width : l1] = 0; in test_fail_string_common()
115 l1 -= n1; in test_fail_string_common()
131 const char *op, const char *m1, size_t l1, in test_fail_string_message() argument
135 m1, l1, m2, l2); in test_fail_string_message()
[all …]
/third_party/typescript/tests/cases/compiler/
DcapturedLetConstInLoop8.ts4 l1:
14 break l1;
27 continue l1;
43 break l1;
49 continue l1;
67 l1:
77 break l1;
90 continue l1;
106 break l1;
112 continue l1;
DcapturedLetConstInLoop8_ES6.ts5 l1:
15 break l1;
28 continue l1;
44 break l1;
50 continue l1;
68 l1:
78 break l1;
91 continue l1;
107 break l1;
113 continue l1;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
DMf2Parser.java198 l1 = l; b1 = b; e1 = e; in reset()
253 if (l1 != 13) // 'let' in parse_Message()
260 switch (l1) in parse_Message()
274 if (l1 != 15) // 'when' in parse_Message()
313 if (l1 != 16) // '{' in parse_Selector()
331 if (l1 == 16) // '{' in parse_Variant()
344 switch (l1) in parse_VariantKey()
365 if (l1 == 17) // '}' in parse_Pattern()
369 switch (l1) in parse_Pattern()
387 if (l1 != 17) // '}' in parse_Placeholder()
[all …]
/third_party/node/deps/openssl/openssl/crypto/idea/
Didea_local.h21 #define n2ln(c,l1,l2,n) { \ argument
23 l1=l2=0; \
33 case 4: l1 =((unsigned long)(*(--(c)))) ; \
35 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
37 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
39 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
44 #define l2nn(l1,l2,c,n) { \ argument
55 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
57 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
59 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
/third_party/openssl/crypto/idea/
Didea_local.h21 #define n2ln(c,l1,l2,n) { \ argument
23 l1=l2=0; \
33 case 4: l1 =((unsigned long)(*(--(c)))) ; \
35 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
37 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
39 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
44 #define l2nn(l1,l2,c,n) { \ argument
55 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
57 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
59 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleAliasTest.java90 ULocale l1 = c1.getLocale(ULocale.VALID_LOCALE); in TestCalendar() local
92 if (!newLoc.equals(l1)) { in TestCalendar()
93 errln("CalendarTest: newLoc!=l1: newLoc= "+newLoc +" l1= "+l1); in TestCalendar()
95 if (!l1.equals(l2)) { in TestCalendar()
96 errln("CalendarTest: l1!=l2: l1= "+l1 +" l2= "+l2); in TestCalendar()
101 logln("Calendar(getLocale) old:"+l1+" new:"+l2); in TestCalendar()
121 ULocale l1 = df1.getLocale(ULocale.VALID_LOCALE); in TestDateFormat() local
123 if (!newLoc.equals(l1)) { in TestDateFormat()
124 errln("DateFormatTest: newLoc!=l1: newLoc= "+newLoc +" l1= "+l1); in TestDateFormat()
126 if (!l1.equals(l2)) { in TestDateFormat()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DLocaleAliasTest.java93 ULocale l1 = c1.getLocale(ULocale.VALID_LOCALE); in TestCalendar() local
95 if (!newLoc.equals(l1)) { in TestCalendar()
96 errln("CalendarTest: newLoc!=l1: newLoc= "+newLoc +" l1= "+l1); in TestCalendar()
98 if (!l1.equals(l2)) { in TestCalendar()
99 errln("CalendarTest: l1!=l2: l1= "+l1 +" l2= "+l2); in TestCalendar()
104 logln("Calendar(getLocale) old:"+l1+" new:"+l2); in TestCalendar()
124 ULocale l1 = df1.getLocale(ULocale.VALID_LOCALE); in TestDateFormat() local
126 if (!newLoc.equals(l1)) { in TestDateFormat()
127 errln("DateFormatTest: newLoc!=l1: newLoc= "+newLoc +" l1= "+l1); in TestDateFormat()
129 if (!l1.equals(l2)) { in TestDateFormat()
[all …]
/third_party/python/Doc/library/
Dpathlib-inheritance.svg1l1.625 0q0.578125 0 0.8125 0.234375q0.25 0.21875 0.25 0.578125q0 0.34375 -0.25 0.578125q-0.234375 …

12345678910>>...16