Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 7846) sorted by relevance

12345678910>>...314

/external/rust/crates/bstr/src/unicode/fsm/
Dgrapheme_break_fwd.littleendian.dfa1 rust-regex-automata-sparse-dfa�������#�������������l�������
9 l
10 …�������� �����l�����������h�lh�lh����������h�lh�l�������������h�l
Dgrapheme_break_fwd.bigendian.dfa1 rust-regex-automata-sparse-dfa������������#��������������l�
5 �`������������������������������������������������������j��4r"����������������…
6 � � �
7 
8 @
9 N
10 l���������%��%����������������������������������������������#��!�!�!�!�!T!j!�!�!�!�!�!T!j!�…
/external/python/cpython2/Tools/pybench/
DLists.py11 l = []
12 append = l.append
23 l[0] = 3
24 l[1] = 4
25 l[2] = 5
26 l[3] = 3
27 l[4] = 4
28 l[5] = 5
30 x = l[0]
31 x = l[1]
[all …]
/external/e2fsprogs/intl/
Dconfig.charset130 for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \
138 echo "$l ISO-8859-1"
139 echo "$l.iso-8859-1 ISO-8859-1"
140 echo "$l.iso-8859-15 ISO-8859-15"
141 echo "$l.iso-8859-15@euro ISO-8859-15"
142 echo "$l@euro ISO-8859-15"
143 echo "$l.cp-437 CP437"
144 echo "$l.cp-850 CP850"
145 echo "$l.cp-1252 CP1252"
146 echo "$l.cp-1252@euro CP1252"
[all …]
/external/bc/src/
Dbc_lex.c45 static void bc_lex_identifier(BcLex *l) { in bc_lex_identifier() argument
48 const char *buf = l->buf + l->i - 1; in bc_lex_identifier()
57 l->t = BC_LEX_KW_AUTO + (BcLexType) i; in bc_lex_identifier()
60 bc_lex_verr(l, BC_ERR_POSIX_KW, kw->name); in bc_lex_identifier()
63 l->i += n - 1; in bc_lex_identifier()
68 bc_lex_name(l); in bc_lex_identifier()
70 if (BC_ERR(l->str.len - 1 > 1)) in bc_lex_identifier()
71 bc_lex_verr(l, BC_ERR_POSIX_NAME_LEN, l->str.v); in bc_lex_identifier()
74 static void bc_lex_string(BcLex *l) { in bc_lex_string() argument
76 size_t len, nlines = 0, i = l->i; in bc_lex_string()
[all …]
Dlex.c45 void bc_lex_invalidChar(BcLex *l, char c) { in bc_lex_invalidChar() argument
46 l->t = BC_LEX_INVALID; in bc_lex_invalidChar()
47 bc_lex_verr(l, BC_ERR_PARSE_CHAR, c); in bc_lex_invalidChar()
50 void bc_lex_lineComment(BcLex *l) { in bc_lex_lineComment() argument
51 l->t = BC_LEX_WHITESPACE; in bc_lex_lineComment()
52 while (l->i < l->len && l->buf[l->i] != '\n') l->i += 1; in bc_lex_lineComment()
55 void bc_lex_comment(BcLex *l) { in bc_lex_comment() argument
58 const char *buf = l->buf; in bc_lex_comment()
62 l->i += 1; in bc_lex_comment()
63 l->t = BC_LEX_WHITESPACE; in bc_lex_comment()
[all …]
Ddc_lex.c43 bool dc_lex_negCommand(BcLex *l) { in dc_lex_negCommand() argument
44 char c = l->buf[l->i]; in dc_lex_negCommand()
48 static void dc_lex_register(BcLex *l) { in dc_lex_register() argument
50 if (DC_X && isspace(l->buf[l->i - 1])) { in dc_lex_register()
54 bc_lex_whitespace(l); in dc_lex_register()
55 c = l->buf[l->i]; in dc_lex_register()
58 bc_lex_verr(l, BC_ERR_PARSE_CHAR, c); in dc_lex_register()
60 l->i += 1; in dc_lex_register()
61 bc_lex_name(l); in dc_lex_register()
64 bc_vec_popAll(&l->str); in dc_lex_register()
[all …]
/external/brotli/c/enc/
Dstatic_dict.c86 const size_t l = w.len & 0x1F; in BrotliFindAllStaticDictionaryMatches() local
87 const size_t n = (size_t)1 << dictionary->words->size_bits_by_length[l]; in BrotliFindAllStaticDictionaryMatches()
90 w.len = (uint8_t)l; in BrotliFindAllStaticDictionaryMatches()
93 DictMatchLength(dictionary->words, data, id, l, max_length); in BrotliFindAllStaticDictionaryMatches()
99 if (matchlen == l) { in BrotliFindAllStaticDictionaryMatches()
100 AddMatch(id, l, l, matches); in BrotliFindAllStaticDictionaryMatches()
105 if (matchlen >= l - 1) { in BrotliFindAllStaticDictionaryMatches()
106 AddMatch(id + 12 * n, l - 1, l, matches); in BrotliFindAllStaticDictionaryMatches()
107 if (l + 2 < max_length && in BrotliFindAllStaticDictionaryMatches()
108 data[l - 1] == 'i' && data[l] == 'n' && data[l + 1] == 'g' && in BrotliFindAllStaticDictionaryMatches()
[all …]
/external/llvm-project/lldb/unittests/Utility/
DStringLexerTest.cpp15 StringLexer l("foo"); in TEST() local
16 EXPECT_EQ("foo", l.GetUnlexed()); in TEST()
17 l.Next(); in TEST()
18 EXPECT_EQ("oo", l.GetUnlexed()); in TEST()
19 l.Next(); in TEST()
20 l.Next(); in TEST()
21 EXPECT_EQ("", l.GetUnlexed()); in TEST()
25 StringLexer l("foo"); in TEST() local
26 EXPECT_FALSE(l.HasAtLeast(5)); in TEST()
27 EXPECT_FALSE(l.HasAtLeast(4)); in TEST()
[all …]
/external/mesa3d/src/panfrost/util/
Dlcra.c46 struct lcra_state *l = calloc(1, sizeof(*l)); in lcra_alloc_equations() local
48 l->node_count = node_count; in lcra_alloc_equations()
49 l->class_count = class_count; in lcra_alloc_equations()
51 l->alignment = calloc(sizeof(l->alignment[0]), node_count); in lcra_alloc_equations()
52 l->linear = calloc(sizeof(l->linear[0]), node_count * node_count); in lcra_alloc_equations()
53 l->modulus = calloc(sizeof(l->modulus[0]), node_count); in lcra_alloc_equations()
54 l->class = calloc(sizeof(l->class[0]), node_count); in lcra_alloc_equations()
55 l->class_start = calloc(sizeof(l->class_start[0]), class_count); in lcra_alloc_equations()
56 l->class_disjoint = calloc(sizeof(l->class_disjoint[0]), class_count * class_count); in lcra_alloc_equations()
57 l->class_size = calloc(sizeof(l->class_size[0]), class_count); in lcra_alloc_equations()
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cpp25 static void SetList(List *l, ListItem *x = 0, in SetList() argument
27 l->clear(); in SetList()
28 if (x) l->push_back(x); in SetList()
29 if (y) l->push_back(y); in SetList()
30 if (z) l->push_back(z); in SetList()
33 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0, in CheckList() argument
36 CHECK_EQ(l->front(), i1); in CheckList()
37 l->pop_front(); in CheckList()
40 CHECK_EQ(l->front(), i2); in CheckList()
41 l->pop_front(); in CheckList()
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cc26 static void SetList(List *l, ListItem *x = 0, in SetList() argument
28 l->clear(); in SetList()
29 if (x) l->push_back(x); in SetList()
30 if (y) l->push_back(y); in SetList()
31 if (z) l->push_back(z); in SetList()
34 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0, in CheckList() argument
37 CHECK_EQ(l->front(), i1); in CheckList()
38 l->pop_front(); in CheckList()
41 CHECK_EQ(l->front(), i2); in CheckList()
42 l->pop_front(); in CheckList()
[all …]
/external/libxml2/
Dlist.c59 xmlLinkDeallocator(xmlListPtr l, xmlLinkPtr lk) in xmlLinkDeallocator() argument
63 if(l->linkDeallocator) in xmlLinkDeallocator()
64 l->linkDeallocator(lk); in xmlLinkDeallocator()
98 xmlListLowerSearch(xmlListPtr l, void *data) in xmlListLowerSearch() argument
102 if (l == NULL) in xmlListLowerSearch()
104 … for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next); in xmlListLowerSearch()
118 xmlListHigherSearch(xmlListPtr l, void *data) in xmlListHigherSearch() argument
122 if (l == NULL) in xmlListHigherSearch()
124 … for(lk = l->sentinel->prev;lk != l->sentinel && l->linkCompare(lk->data, data) >0 ;lk = lk->prev); in xmlListHigherSearch()
138 xmlListLinkSearch(xmlListPtr l, void *data) in xmlListLinkSearch() argument
[all …]
/external/exoplayer/tree/testdata/src/test/assets/ts/
Dsample_eac3.ts2l����l� EAC3���0Z������������������������������������������������������������������������������…
/external/llvm-project/libcxx/test/std/containers/sequences/list/list.capacity/
Dresize_size.pass.cpp22 std::list<int> l(5, 2); in main() local
23 l.resize(2); in main()
24 assert(l.size() == 2); in main()
25 assert(std::distance(l.begin(), l.end()) == 2); in main()
26 assert(l == std::list<int>(2, 2)); in main()
29 std::list<int> l(5, 2); in main() local
30 l.resize(10); in main()
31 assert(l.size() == 10); in main()
32 assert(std::distance(l.begin(), l.end()) == 10); in main()
33 assert(l.front() == 2); in main()
[all …]
/external/libcxx/test/std/containers/sequences/list/list.capacity/
Dresize_size.pass.cpp22 std::list<int> l(5, 2); in main() local
23 l.resize(2); in main()
24 assert(l.size() == 2); in main()
25 assert(std::distance(l.begin(), l.end()) == 2); in main()
26 assert(l == std::list<int>(2, 2)); in main()
29 std::list<int> l(5, 2); in main() local
30 l.resize(10); in main()
31 assert(l.size() == 10); in main()
32 assert(std::distance(l.begin(), l.end()) == 10); in main()
33 assert(l.front() == 2); in main()
[all …]
/external/swiftshader/tests/regres/cov/
Dspan_test.go25 l := cov.SpanList{}
26 l.Add(span(3, 1, 3, 5))
27 checkSpanList(t, l, span(3, 1, 3, 5))
29 l.Add(span(4, 1, 4, 5))
30 checkSpanList(t, l, span(3, 1, 3, 5), span(4, 1, 4, 5))
32 l.Add(span(2, 1, 2, 5))
33 checkSpanList(t, l, span(2, 1, 2, 5), span(3, 1, 3, 5), span(4, 1, 4, 5))
37 l := cov.SpanList{span(1, 1, 1, 5), span(5, 4, 5, 7), span(9, 1, 9, 5)}
40 l.Add(span(5, 1, 5, 5))
41 checkSpanList(t, l, span(1, 1, 1, 5), span(5, 1, 5, 7), span(9, 1, 9, 5))
[all …]
/external/rust/crates/serde/src/
Dmacros.rs125 ($func:ident<$l:tt, $v:ident>($($arg:ident : $ty:ty),*)) => {
129 $v: $crate::de::Visitor<$l>,
142 (bool<$l:tt, $v:ident>) => {
143 forward_to_deserialize_any_method!{deserialize_bool<$l, $v>()}
145 (i8<$l:tt, $v:ident>) => {
146 forward_to_deserialize_any_method!{deserialize_i8<$l, $v>()}
148 (i16<$l:tt, $v:ident>) => {
149 forward_to_deserialize_any_method!{deserialize_i16<$l, $v>()}
151 (i32<$l:tt, $v:ident>) => {
152 forward_to_deserialize_any_method!{deserialize_i32<$l, $v>()}
[all …]
/external/libffi/src/or1k/
Dsysv.S45 l.sw -4(r1), r9 /* return address */
46 l.sw -8(r1), r1 /* stack address */
47 l.sw -12(r1), r14 /* callee saved registers */
48 l.sw -16(r1), r16
49 l.sw -20(r1), r18
50 l.sw -24(r1), r20
52 l.ori r14, r1, 0x0 /* save stack pointer */
53 l.addi r1, r1, -24
55 l.ori r16, r7, 0x0 /* save function address */
56 l.ori r18, r6, 0x0 /* save ret address */
[all …]
/external/llvm-project/compiler-rt/lib/tsan/tests/rtl/
Dtsan_mop.cpp20 MemLoc l; in TEST() local
21 t.Write1(l); in TEST()
33 MemLoc l; in TEST() local
34 t1.Write1(l); in TEST()
35 t2.Write1(l, true); in TEST()
40 MemLoc l; in TEST() local
41 t1.Read1(l); in TEST()
42 t2.Write1(l, true); in TEST()
47 MemLoc l; in TEST() local
48 t1.Write1(l); in TEST()
[all …]
/external/compiler-rt/lib/tsan/tests/rtl/
Dtsan_mop.cc21 MemLoc l; in TEST() local
22 t.Write1(l); in TEST()
34 MemLoc l; in TEST() local
35 t1.Write1(l); in TEST()
36 t2.Write1(l, true); in TEST()
41 MemLoc l; in TEST() local
42 t1.Read1(l); in TEST()
43 t2.Write1(l, true); in TEST()
48 MemLoc l; in TEST() local
49 t1.Write1(l); in TEST()
[all …]
/external/tensorflow/tensorflow/lite/g3doc/images/convert/
Dworkflow.svg1l-720.0 0l0 -540.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000"…
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DVoidVisitorAdapter.java47 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
52 n.getDefaultValue().ifPresent(l -> l.accept(this, arg)); in visit()
57 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
64 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
70 n.getInitializer().ifPresent(l -> l.accept(this, arg)); in visit()
72 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
78 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
84 n.getMessage().ifPresent(l -> l.accept(this, arg)); in visit()
85 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
92 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit()
[all …]
/external/python/cpython3/PC/icons/
Dpyd.svg1l-.026-.056.892-1.236-.595-.827-1.45.453c-.069-.061-.141-.118-.213-.175l.151-1.511-.929-.418-1.032…
/external/tensorflow/tensorflow/lite/g3doc/r1/images/convert/
Dworkflow.svg1l-720.0 0l0 -540.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000"…

12345678910>>...314