Home
last modified time | relevance | path

Searched refs:ml (Results 1 - 25 of 113) sorted by relevance

12345

/third_party/backends/backend/genesys/
H A Dtables_memory_layout.cpp33 MemoryLayout ml; in genesys_init_memory_layout_tables() local
34 ml.models = { ModelId::CANON_IMAGE_FORMULA_101 }; in genesys_init_memory_layout_tables()
36 ml.regs = { in genesys_init_memory_layout_tables()
41 s_memory_layout->push_back(ml); in genesys_init_memory_layout_tables()
44 ml = MemoryLayout(); in genesys_init_memory_layout_tables()
45 ml.models = { ModelId::PLUSTEK_OPTICBOOK_3800 }; in genesys_init_memory_layout_tables()
47 ml.regs = { in genesys_init_memory_layout_tables()
52 s_memory_layout->push_back(ml); in genesys_init_memory_layout_tables()
54 ml = MemoryLayout(); in genesys_init_memory_layout_tables()
55 ml in genesys_init_memory_layout_tables()
[all...]
/third_party/toybox/porting/liteos_a/toys/lsb/
H A Dumount.c79 struct mtab_list *mlsave = 0, *mlrev = 0, *ml; in umount_main() local
99 for (ml = mlrev; ml; ml = ml->prev) in umount_main()
100 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags); in umount_main()
109 for (ml = abs ? mlrev : 0; ml; m in umount_main()
[all...]
/third_party/toybox/toys/lsb/
H A Dumount.c110 struct mtab_list *mlsave = 0, *mlrev = 0, *ml; in umount_main() local
130 for (ml = mlrev; ml; ml = ml->prev) in umount_main()
131 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags); in umount_main()
140 for (ml = abs ? mlrev : 0; ml; m in umount_main()
[all...]
/third_party/pulseaudio/src/tests/
H A Dsrbchannel-test.c50 static void packet_test(unsigned npackets, size_t plength, pa_mainloop *ml, pa_pstream *p1, pa_pstream *p2) { in packet_test() argument
72 pa_mainloop_iterate(ml, 0, NULL); in packet_test()
76 pa_mainloop_iterate(ml, 1, NULL); in packet_test()
87 pa_mainloop *ml = pa_mainloop_new(); in START_TEST() local
96 io1 = pa_iochannel_new(pa_mainloop_get_api(ml), pipefd[2], pipefd[1]); in START_TEST()
97 io2 = pa_iochannel_new(pa_mainloop_get_api(ml), pipefd[0], pipefd[3]); in START_TEST()
98 p1 = pa_pstream_new(pa_mainloop_get_api(ml), io1, mp); in START_TEST()
99 p2 = pa_pstream_new(pa_mainloop_get_api(ml), io2, mp); in START_TEST()
103 packet_test(250, 5, ml, p1, p2); in START_TEST()
104 packet_test(10, 1234567, ml, p in START_TEST()
[all...]
/third_party/lz4/lib/
H A Dlz4hc.c577 int ml0, ml, ml2, ml3; in LZ4HC_compress_hashChain() local
593 ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict); in LZ4HC_compress_hashChain()
594 if (ml<MINMATCH) { ip++; continue; } in LZ4HC_compress_hashChain()
597 start0 = ip; ref0 = ref; ml0 = ml; in LZ4HC_compress_hashChain()
600 if (ip+ml <= mflimit) { in LZ4HC_compress_hashChain()
602 ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, in LZ4HC_compress_hashChain()
605 ml2 = ml; in LZ4HC_compress_hashChain()
608 if (ml2 == ml) { /* No better match => encode ML1 */ in LZ4HC_compress_hashChain()
610 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, re in LZ4HC_compress_hashChain()
782 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, notLimited, oend); LZ4HC_compress_hashChain() local
1481 int ml = MINMATCH; LZ4HC_compress_optimal() local
1553 int const ml = opt[rPos].mlen; LZ4HC_compress_optimal() local
[all...]
H A Dlz4.c1836 { size_t ml = token & 15; in LZ4_decompress_unsafe_generic() local
1840 if (ml==15) { in LZ4_decompress_unsafe_generic()
1842 ml += read_long_length_no_check(&ip); in LZ4_decompress_unsafe_generic()
1844 ml += MINMATCH; in LZ4_decompress_unsafe_generic()
1846 if ((size_t)(oend-op) < ml) return -1; /* output buffer overflow */ in LZ4_decompress_unsafe_generic()
1862 if (extml > ml) { in LZ4_decompress_unsafe_generic()
1864 LZ4_memmove(op, extMatch, ml); in LZ4_decompress_unsafe_generic()
1865 op += ml; in LZ4_decompress_unsafe_generic()
1866 ml = 0; in LZ4_decompress_unsafe_generic()
1871 ml in LZ4_decompress_unsafe_generic()
[all...]
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_getmaps/
H A Drpc_pmap_getmaps.c50 struct pmaplist *ml = NULL; in main() local
62 ml = pmap_getmaps(&sin); in main()
65 printf("List. %p\n", ml); in main()
69 test_status = (ml == NULL); in main()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dsqrtl.c181 u128 ix, ml; in sqrtl() local
202 ml = lsh(ix, 15); in sqrtl()
203 ml.hi |= 0x8000000000000000; in sqrtl()
204 if (even) ml = rsh(ml, 1); in sqrtl()
213 s = mul32(ml.hi>>32, r); in sqrtl()
219 s = mul64(ml.hi, r); in sqrtl()
234 sl = mul128(ml, rl); in sqrtl()
244 d0 = sub128(lsh(ml, 2*(LDBL_MANT_DIG-1)-126), mul128_tail(sl,sl)); in sqrtl()
/third_party/musl/src/math/
H A Dsqrtl.c181 u128 ix, ml; in sqrtl() local
202 ml = lsh(ix, 15); in sqrtl()
203 ml.hi |= 0x8000000000000000; in sqrtl()
204 if (even) ml = rsh(ml, 1); in sqrtl()
213 s = mul32(ml.hi>>32, r); in sqrtl()
219 s = mul64(ml.hi, r); in sqrtl()
234 sl = mul128(ml, rl); in sqrtl()
244 d0 = sub128(lsh(ml, 2*(LDBL_MANT_DIG-1)-126), mul128_tail(sl,sl)); in sqrtl()
/third_party/benchmark/src/
H A Dmutex.h107 MutexLock ml(lock_); in EXCLUDES()
108 last_thread = createBarrier(ml); in EXCLUDES()
115 MutexLock ml(lock_); in EXCLUDES()
132 bool createBarrier(MutexLock& ml) REQUIRES(lock_) { in REQUIRES()
142 phase_condition_.wait(ml.native_handle(), cb); in REQUIRES()
/third_party/libwebsockets/minimal-examples/gtk/minimal-gtk/
H A Dmain.c140 GMainLoop *ml; in t1_main() local
146 ml = g_main_loop_new(t1_mc, FALSE); in t1_main()
156 foreign_loops[0] = (void *)ml; in t1_main()
179 g_main_loop_run(ml); in t1_main()
180 g_main_loop_unref(ml); in t1_main()
/third_party/python/Objects/
H A Dmethodobject.c32 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() argument
34 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
38 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() argument
40 return PyCMethod_New(ml, self, module, NULL); in PyCFunction_NewEx()
44 PyCMethod_New(PyMethodDef *ml, PyObject *self, PyObject *module, PyTypeObject *cls) in PyCMethod_New() argument
48 switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS | in PyCMethod_New()
74 "%s() method: bad call flags", ml->ml_name); in PyCMethod_New()
80 if (ml->ml_flags & METH_METHOD) { in PyCMethod_New()
108 op->m_ml = ml; in PyCMethod_New()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_asm.c860 BN_ULONG c0, c1, ml, *tp, n0; in bn_mul_mont() local
877 ml = bp[0]; in bn_mul_mont()
879 mh = HBITS(ml); in bn_mul_mont()
880 ml = LBITS(ml); in bn_mul_mont()
882 mul(tp[j], ap[j], ml, mh, c0); in bn_mul_mont()
885 mul(tp[j], ap[j], ml, c0); in bn_mul_mont()
894 ml = bp[i]; in bn_mul_mont()
896 mh = HBITS(ml); in bn_mul_mont()
897 ml in bn_mul_mont()
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_asm.c860 BN_ULONG c0, c1, ml, *tp, n0; in bn_mul_mont() local
877 ml = bp[0]; in bn_mul_mont()
879 mh = HBITS(ml); in bn_mul_mont()
880 ml = LBITS(ml); in bn_mul_mont()
882 mul(tp[j], ap[j], ml, mh, c0); in bn_mul_mont()
885 mul(tp[j], ap[j], ml, c0); in bn_mul_mont()
894 ml = bp[i]; in bn_mul_mont()
896 mh = HBITS(ml); in bn_mul_mont()
897 ml in bn_mul_mont()
[all...]
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_prn.c25 int ml) in X509V3_EXT_val_prn()
31 if (!ml || !sk_CONF_VALUE_num(val)) { in X509V3_EXT_val_prn()
37 if (ml) { in X509V3_EXT_val_prn()
24 X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) X509V3_EXT_val_prn() argument
/third_party/openssl/crypto/x509/
H A Dv3_prn.c25 int ml) in X509V3_EXT_val_prn()
31 if (!ml || !sk_CONF_VALUE_num(val)) { in X509V3_EXT_val_prn()
37 if (ml) { in X509V3_EXT_val_prn()
24 X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) X509V3_EXT_val_prn() argument
/third_party/skia/fuzz/
H A DFuzzSkParagraph.cpp240 size_t ml; in BuildParagraphStyle() local
241 fuzz->next(&ml); in BuildParagraphStyle()
242 ps.setMaxLines(ml); in BuildParagraphStyle()
/third_party/toybox/lib/
H A Dportability.c122 int mountlist_istype(struct mtab_list *ml, char *typelist) in mountlist_istype() argument
136 if (!strncmp(t+2, ml->type, len-2)) { in mountlist_istype()
140 } else if (!strncmp(t, ml->type, len) && !ml->type[len]) { in mountlist_istype()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Denum-min-size.c20 enum ml { ML = -1L }; enum
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-tag-table.py153 'mal': 'ml',
477 ml = original_ot_from_bcp_47[language]
478 if ml:
479 ot_macrolanguages &= ml
619 macrolanguages.sort (key=lambda ml: len (self.macrolanguages[ml]))
/third_party/zlib/watcom/
H A Dwatcom_l.mak19 CFLAGS = -zq -ml -s -bt=dos -oilrtfm -fr=nul -wx
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Doptimizer_test.cpp139 spv_message_level_t ml, const char* f, in TEST()
141 msg_level = ml; in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Doptimizer_test.cpp139 spv_message_level_t ml, const char* f, in TEST()
141 msg_level = ml; in TEST()
/third_party/spirv-tools/test/opt/
H A Doptimizer_test.cpp139 spv_message_level_t ml, const char* f, in TEST()
141 msg_level = ml; in TEST()
/third_party/ffmpeg/libavdevice/
H A Dpulse_audio_enc.c125 pa_mainloop *ml = NULL; in pulse_update_sink_input_info() local
129 if ((ret = ff_pulse_audio_connect_context(&ml, &ctx, s->server, "Update sink input information")) < 0) in pulse_update_sink_input_info()
139 pa_mainloop_iterate(ml, 1, NULL); in pulse_update_sink_input_info()
147 ff_pulse_audio_disconnect_context(&ml, &ctx); in pulse_update_sink_input_info()

Completed in 18 milliseconds

12345