Home
last modified time | relevance | path

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

12345678910>>...210

/third_party/pulseaudio/src/pulsecore/
Dioline.c70 pa_ioline *l; in pa_ioline_new() local
73 l = pa_xnew(pa_ioline, 1); in pa_ioline_new()
74 PA_REFCNT_INIT(l); in pa_ioline_new()
75 l->io = io; in pa_ioline_new()
77 l->wbuf = NULL; in pa_ioline_new()
78 l->wbuf_length = l->wbuf_index = l->wbuf_valid_length = 0; in pa_ioline_new()
80 l->rbuf = NULL; in pa_ioline_new()
81 l->rbuf_length = l->rbuf_index = l->rbuf_valid_length = 0; in pa_ioline_new()
83 l->callback = NULL; in pa_ioline_new()
84 l->userdata = NULL; in pa_ioline_new()
[all …]
Dasyncq.c73 static unsigned reduce(pa_asyncq *l, unsigned value) { in reduce() argument
74 return value & (unsigned) (l->size - 1); in reduce()
78 pa_asyncq *l; in pa_asyncq_new() local
85 l = pa_xmalloc0(PA_ALIGN(sizeof(pa_asyncq)) + (sizeof(pa_atomic_ptr_t) * size)); in pa_asyncq_new()
87 l->size = size; in pa_asyncq_new()
89 PA_LLIST_HEAD_INIT(struct localq, l->localq); in pa_asyncq_new()
90 l->last_localq = NULL; in pa_asyncq_new()
91 l->waiting_for_post = false; in pa_asyncq_new()
93 if (!(l->read_fdsem = pa_fdsem_new())) { in pa_asyncq_new()
94 pa_xfree(l); in pa_asyncq_new()
[all …]
Dshmasyncq.c56 static int reduce(pa_shmasyncq *l, int value) { in reduce() argument
57 return value & (unsigned) (l->n_elements - 1); in reduce()
60 static pa_atomic_t* get_cell(pa_shmasyncq *l, unsigned i) { in get_cell() argument
61 pa_assert(i < l->data->n_elements); in get_cell()
63 …return (pa_atomic_t*) ((uint8*t) l->data + PA_ALIGN(sizeof(pa_shmasyncq_data)) + i * (PA_ALIGN(siz… in get_cell()
71 pa_shmasyncq *l;
79 l = pa_xnew(pa_shmasyncq, 1);
81 l->data = data;
84 l->data->n_elements = n_elements;
85 l->data->element_size = element_size;
[all …]
/third_party/typescript/tests/baselines/reference/
DletDeclarations-scopes.js3 let l = "string"; variable
9 let l = 0;
10 n = l;
13 let l = 0;
14 n = l;
18 let l = 0;
19 n = l;
23 let l = 0;
24 n = l;
29 let l = 0;
[all …]
DletDeclarations-scopes.types3 let l = "string";
4 >l : string
14 let l = 0;
15 >l : number
18 n = l;
19 >n = l : number
21 >l : number
24 let l = 0;
25 >l : number
28 n = l;
[all …]
DletDeclarations-scopes.symbols3 let l = "string";
4 >l : Symbol(l, Decl(letDeclarations-scopes.ts, 1, 3))
11 let l = 0;
12 >l : Symbol(l, Decl(letDeclarations-scopes.ts, 7, 7))
14 n = l;
16 >l : Symbol(l, Decl(letDeclarations-scopes.ts, 7, 7))
19 let l = 0;
20 >l : Symbol(l, Decl(letDeclarations-scopes.ts, 11, 7))
22 n = l;
24 >l : Symbol(l, Decl(letDeclarations-scopes.ts, 11, 7))
[all …]
DletDeclarations-scopes.errors.txt6 let l = "string";
12 let l = 0;
13 n = l;
16 let l = 0;
17 n = l;
21 let l = 0;
22 n = l;
26 let l = 0;
27 n = l;
34 let l = 0;
[all …]
/third_party/typescript/tests/cases/compiler/
DletDeclarations-scopes.ts7 let l = "string"; variable
13 let l = 0; variable
14 n = l;
17 let l = 0; variable
18 n = l;
22 let l = 0; variable
23 n = l;
27 let l = 0; variable
28 n = l;
33 let l = 0; variable
[all …]
/third_party/skia/third_party/externals/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 …]
/third_party/node/deps/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 …]
/third_party/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 …]
/third_party/node/deps/openssl/openssl/crypto/des/
Ddes_enc.c22 register DES_LONG l, r, t, u; in DES_encrypt1() local
26 l = data[1]; in DES_encrypt1()
28 IP(r, l); in DES_encrypt1()
38 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt1()
46 D_ENCRYPT(l, r, 0); /* 1 */ in DES_encrypt1()
47 D_ENCRYPT(r, l, 2); /* 2 */ in DES_encrypt1()
48 D_ENCRYPT(l, r, 4); /* 3 */ in DES_encrypt1()
49 D_ENCRYPT(r, l, 6); /* 4 */ in DES_encrypt1()
50 D_ENCRYPT(l, r, 8); /* 5 */ in DES_encrypt1()
51 D_ENCRYPT(r, l, 10); /* 6 */ in DES_encrypt1()
[all …]
/third_party/openssl/crypto/des/
Ddes_enc.c22 register DES_LONG l, r, t, u; in DES_encrypt1() local
26 l = data[1]; in DES_encrypt1()
28 IP(r, l); in DES_encrypt1()
38 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt1()
46 D_ENCRYPT(l, r, 0); /* 1 */ in DES_encrypt1()
47 D_ENCRYPT(r, l, 2); /* 2 */ in DES_encrypt1()
48 D_ENCRYPT(l, r, 4); /* 3 */ in DES_encrypt1()
49 D_ENCRYPT(r, l, 6); /* 4 */ in DES_encrypt1()
50 D_ENCRYPT(l, r, 8); /* 5 */ in DES_encrypt1()
51 D_ENCRYPT(r, l, 10); /* 6 */ in DES_encrypt1()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/
DTestUnicodeKnownIssues.java26 List<String> l = printToList(uki); in TestBasic() local
27 assertNotNull("no list", l); in TestBasic()
28 assertEquals("message count Of Three", 3, l.size()); in TestBasic()
29 assertTrue(l.get(0) + "#0 says Known Issues", l.get(0).contains("Known Issues")); in TestBasic()
30 assertTrue(l.get(1) + "#1 has atlassian URL", l.get(1).contains("browse/ICU-21756")); in TestBasic()
31 assertTrue(l.get(2) + "#2 says a/b/c", l.get(2).contains("a/b/c")); in TestBasic()
40 List<String> l = printToList(uki); in TestNotCurtailed() local
41 assertNotNull("no list", l); in TestNotCurtailed()
42 assertEquals("message count Of 5", 5, l.size()); in TestNotCurtailed()
43 assertTrue(l.get(0) + "#0 says Known Issues", l.get(0).contains("Known Issues")); in TestNotCurtailed()
[all …]
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/
Dlexer.go28 l := lexer{
33 if err := l.lex(); err != nil {
36 return l.tokens, nil
46 func (l *lexer) lex() error {
48 switch l.peek(0) {
52 l.next()
54 l.next()
56 l.tok(1, tok.Lt)
58 l.tok(1, tok.Gt)
60 l.tok(1, tok.Lparen)
[all …]
/third_party/skia/third_party/externals/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 …]
/third_party/gstreamer/gstreamer/gst/
Dgstpluginloader.c138 static gboolean exchange_packets (GstPluginLoader * l);
139 static gboolean plugin_loader_replay_pending (GstPluginLoader * l);
140 static gboolean plugin_loader_load_and_sync (GstPluginLoader * l,
142 static void plugin_loader_create_blacklist_plugin (GstPluginLoader * l,
145 static gboolean plugin_loader_sync_with_child (GstPluginLoader * l);
150 GstPluginLoader *l = g_slice_new0 (GstPluginLoader); in plugin_loader_new() local
153 l->registry = gst_object_ref (registry); in plugin_loader_new()
154 l->fdset = gst_poll_new (FALSE); in plugin_loader_new()
155 gst_poll_fd_init (&l->fd_w); in plugin_loader_new()
156 gst_poll_fd_init (&l->fd_r); in plugin_loader_new()
[all …]
/third_party/rust/crates/serde/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 …]
/third_party/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 …]
/third_party/python/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…
/third_party/openh264/codec/processing/src/vaacalc/
Dvaacalcfuncs.cpp51 int32_t k, l; in VAACalcSadSsd_c() local
64 for (l = 0; l < 8; l ++) { in VAACalcSadSsd_c()
65 int32_t diff = WELS_ABS (tmp_cur_row[l] - tmp_ref_row[l]); in VAACalcSadSsd_c()
68 l_sum += tmp_cur_row[l]; in VAACalcSadSsd_c()
69 l_sqsum += tmp_cur_row[l] * tmp_cur_row[l]; in VAACalcSadSsd_c()
84 for (l = 0; l < 8; l ++) { in VAACalcSadSsd_c()
85 int32_t diff = WELS_ABS (tmp_cur_row[l] - tmp_ref_row[l]); in VAACalcSadSsd_c()
88 l_sum += tmp_cur_row[l]; in VAACalcSadSsd_c()
89 l_sqsum += tmp_cur_row[l] * tmp_cur_row[l]; in VAACalcSadSsd_c()
104 for (l = 0; l < 8; l ++) { in VAACalcSadSsd_c()
[all …]
/third_party/icu/icu4c/source/tools/pkgdata/
Dpkgtypes.c30 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, i… in pkg_writeCharListWrap() argument
34 while(l != NULL) in pkg_writeCharListWrap()
36 if(l->str) in pkg_writeCharListWrap()
38 uprv_strncpy(buffer, l->str, 1020); in pkg_writeCharListWrap()
49 if(l->str[0] != '"') { in pkg_writeCharListWrap()
51 uprv_strncat(buffer, l->str,1020); in pkg_writeCharListWrap()
53 if(l->str[uprv_strlen(l->str)-1] != '"') { in pkg_writeCharListWrap()
59 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap()
62 if(l->next && delim) in pkg_writeCharListWrap()
70 l = l->next; in pkg_writeCharListWrap()
[all …]
/third_party/node/deps/icu-small/source/tools/pkgdata/
Dpkgtypes.c30 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, i… in pkg_writeCharListWrap() argument
34 while(l != NULL) in pkg_writeCharListWrap()
36 if(l->str) in pkg_writeCharListWrap()
38 uprv_strncpy(buffer, l->str, 1020); in pkg_writeCharListWrap()
49 if(l->str[0] != '"') { in pkg_writeCharListWrap()
51 uprv_strncat(buffer, l->str,1020); in pkg_writeCharListWrap()
53 if(l->str[uprv_strlen(l->str)-1] != '"') { in pkg_writeCharListWrap()
59 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap()
62 if(l->next && delim) in pkg_writeCharListWrap()
70 l = l->next; in pkg_writeCharListWrap()
[all …]
/third_party/skia/third_party/externals/icu/source/tools/pkgdata/
Dpkgtypes.c30 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, i… in pkg_writeCharListWrap() argument
34 while(l != NULL) in pkg_writeCharListWrap()
36 if(l->str) in pkg_writeCharListWrap()
38 uprv_strncpy(buffer, l->str, 1020); in pkg_writeCharListWrap()
49 if(l->str[0] != '"') { in pkg_writeCharListWrap()
51 uprv_strncat(buffer, l->str,1020); in pkg_writeCharListWrap()
53 if(l->str[uprv_strlen(l->str)-1] != '"') { in pkg_writeCharListWrap()
59 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap()
62 if(l->next && delim) in pkg_writeCharListWrap()
70 l = l->next; in pkg_writeCharListWrap()
[all …]
/third_party/ltp/tools/sparse/sparse-src/Documentation/sphinx/
Dcdoc.py88 (n, l) = next(lines)
89 if not l.startswith('//\t'):
91 line += '\n' + l[3:]
103 (n, l) = next(lines)
104 line += ' ' + l.lstrip()
117 (n, l) = lines.memo()
121 m = re.match(r"^///\s+(.+)$", l) # /// ...
128 for (n, l) in lines:
130 if l.startswith('// '):
131 l = l[3:] ## strip leading '// '
[all …]

12345678910>>...210