Home
last modified time | relevance | path

Searched refs:mc (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift125 func execute(_ mc: DbMethodCall, _ block: @escaping (_: DbMethodCall) throws -> Void) {
128 try block(mc)
130 mc.errorOnMainThread("@ejdb IWRC:\(error.code)", error.message)
132 mc.errorOnMainThread("@ejdb", "\(error)")
149 let mc = DbMethodCall(dbe: dbe, args: args, result: result) in handle() variable
153 execute(mc, get) in handle()
156 execute(mc, put) in handle()
159 execute(mc, patch) in handle()
162 execute(mc, del) in handle()
165 execute(mc, info) in handle()
[all …]
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java128 private static void executeFirst(DbMethodCall mc) throws Exception { in executeFirst() argument
129 executeListImpl(mc, 1L); in executeFirst()
132 private static void executeList(DbMethodCall mc) throws Exception { in executeList() argument
133 executeListImpl(mc, null); in executeList()
136 private static void executeListImpl(DbMethodCall mc, Long limit) throws Exception { in executeListImpl() argument
137 prepareQuery(mc, (q, hook) -> { in executeListImpl()
147 mc.successOnMainThread(res); in executeListImpl()
151 private static void executeScalarInt(DbMethodCall mc) throws Exception { in executeScalarInt() argument
152 prepareQuery(mc, (q, hook) -> { in executeScalarInt()
154 mc.successOnMainThread(res); in executeScalarInt()
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_multicall.py16 cls.mc = multicall.MultiCallCreator(Text)
20 del cls.mc
28 mc = self.mc
29 self.assertIs(multicall._multicall_dict[Text], mc)
30 self.assertTrue(issubclass(mc, Text))
32 self.assertIs(mc, mc2)
35 mctext = self.mc(self.root)
41 mc = self.mc
42 self.assertIs(mc.yview, Text.yview)
43 mctext = self.mc(self.root)
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dmotioncells_wrapper.cpp62 MotionCells *mc; variable
68 mc = new MotionCells (); in motion_cells_init()
71 tmpmc.mc = mc; in motion_cells_init()
96 return motioncellsvector.at (idx).mc->performDetectionMotionCells (p_image, in perform_detection_motion_cells()
113 motioncellsvector.at (idx).mc->setPrevFrame (p_prevFrame); in setPrevFrame()
122 return motioncellsvector.at (idx).mc->getMotionCellsIdx (); in getMotionCellsIdx()
133 return motioncellsvector.at (idx).mc->getMotionCellsIdxCount (); in getMotionCellsIdxCnt()
144 return motioncellsvector.at (idx).mc->getChangedDataFile (); in getChangedDataFile()
168 return motioncellsvector.at (idx).mc->getDatafileInitFailed (); in getInitDataFileFailed()
179 return motioncellsvector.at (idx).mc->getDatafileSaveFailed (); in getSaveDataFileFailed()
[all …]
/third_party/ffmpeg/libavcodec/
Dvp9_mc_template.c58 mc_luma_dir(td, mc[3][b->filter][0], td->dst[0], ls_y, in FN()
61 mc_luma_dir(td, mc[3][b->filter][0], in FN()
69 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][0], in FN()
76 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][0], in FN()
90 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][0], in FN()
99 mc_luma_dir(td, mc[3][b->filter][1], td->dst[0], ls_y, in FN()
102 mc_luma_dir(td, mc[3][b->filter][1], in FN()
110 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][1], in FN()
117 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][1], in FN()
131 mc_chroma_dir(td, mc[3 + s->ss_h][b->filter][1], in FN()
[all …]
Dvorbisenc.c274 vorbis_enc_mapping *mc; in create_vorbis_context() local
417 mc = &venc->mappings[0]; in create_vorbis_context()
418 mc->submaps = 1; in create_vorbis_context()
419 mc->mux = av_malloc(sizeof(int) * venc->channels); in create_vorbis_context()
420 if (!mc->mux) in create_vorbis_context()
423 mc->mux[i] = 0; in create_vorbis_context()
424 mc->floor = av_malloc(sizeof(int) * mc->submaps); in create_vorbis_context()
425 mc->residue = av_malloc(sizeof(int) * mc->submaps); in create_vorbis_context()
426 if (!mc->floor || !mc->residue) in create_vorbis_context()
428 for (i = 0; i < mc->submaps; i++) { in create_vorbis_context()
[all …]
Dvp9recon.c299 static av_always_inline void mc_luma_unscaled(VP9TileData *td, vp9_mc_func (*mc)[2], in mc_luma_unscaled()
332 mc[!!mx][!!my](dst, dst_stride, ref, ref_stride, bh, mx << 1, my << 1); in mc_luma_unscaled()
335 static av_always_inline void mc_chroma_unscaled(VP9TileData *td, vp9_mc_func (*mc)[2], in mc_chroma_unscaled()
369 mc[!!mx][!!my](dst_u, dst_stride, ref_u, 160, bh, mx, my); in mc_chroma_unscaled()
377 mc[!!mx][!!my](dst_v, dst_stride, ref_v, 160, bh, mx, my); in mc_chroma_unscaled()
379 mc[!!mx][!!my](dst_u, dst_stride, ref_u, src_stride_u, bh, mx, my); in mc_chroma_unscaled()
380 mc[!!mx][!!my](dst_v, dst_stride, ref_v, src_stride_v, bh, mx, my); in mc_chroma_unscaled()
384 #define mc_luma_dir(td, mc, dst, dst_ls, src, src_ls, tref, row, col, mv, \ argument
386 mc_luma_unscaled(td, s->dsp.mc, dst, dst_ls, src, src_ls, tref, row, col, \
388 #define mc_chroma_dir(td, mc, dstu, dstv, dst_ls, srcu, srcu_ls, srcv, srcv_ls, tref, \ argument
[all …]
/third_party/alsa-lib/src/topology/
Dctl.c741 struct snd_soc_tplg_mixer_control *mc; in tplg_parse_control_mixer() local
754 mc = elem->mixer_ctrl; in tplg_parse_control_mixer()
755 snd_strlcpy(mc->hdr.name, elem->id, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); in tplg_parse_control_mixer()
756 mc->hdr.type = SND_SOC_TPLG_TYPE_MIXER; in tplg_parse_control_mixer()
757 mc->size = elem->size; in tplg_parse_control_mixer()
762 mc->channel[j].reg = -1; in tplg_parse_control_mixer()
779 if (mc->num_channels >= SND_SOC_TPLG_MAX_CHAN) { in tplg_parse_control_mixer()
785 mc->channel); in tplg_parse_control_mixer()
789 mc->num_channels = tplg->channel_idx; in tplg_parse_control_mixer()
797 mc->max = ival; in tplg_parse_control_mixer()
[all …]
/third_party/pulseaudio/src/tests/
Dlfe-filter-test.c86 pa_memchunk mc; in lfe_filter_rewind_test() local
101 mc.memblock = generate_data_block(lft, i * ONE_BLOCK_SAMPLES * fz); in lfe_filter_rewind_test()
102 mc.length = pa_memblock_get_length(mc.memblock); in lfe_filter_rewind_test()
103 mc.index = 0; in lfe_filter_rewind_test()
104 pa_lfe_filter_process(lft->lf, &mc); in lfe_filter_rewind_test()
105 save_data_block(lft, outptr + i * ONE_BLOCK_SAMPLES * fz, mc.memblock); in lfe_filter_rewind_test()
106 pa_memblock_unref(mc.memblock); in lfe_filter_rewind_test()
111 mc.memblock = generate_data_block(lft, pos); in lfe_filter_rewind_test()
112 mc.length = pa_memblock_get_length(mc.memblock); in lfe_filter_rewind_test()
113 mc.index = 0; in lfe_filter_rewind_test()
[all …]
/third_party/python/Modules/
D_operator.c1487 methodcallerobject *mc; in methodcaller_new() local
1505 mc = PyObject_GC_New(methodcallerobject, (PyTypeObject *)state->methodcaller_type); in methodcaller_new()
1506 if (mc == NULL) { in methodcaller_new()
1513 mc->name = name; in methodcaller_new()
1516 mc->kwds = kwds; in methodcaller_new()
1518 mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in methodcaller_new()
1519 if (mc->args == NULL) { in methodcaller_new()
1520 Py_DECREF(mc); in methodcaller_new()
1524 PyObject_GC_Track(mc); in methodcaller_new()
1525 return (PyObject *)mc; in methodcaller_new()
[all …]
/third_party/node/test/parallel/
Dtest-eventtarget-memoryleakwarning.js55 const mc = new MessageChannel(); constant
56 setMaxListeners(2, mc.port1);
57 mc.port1.addEventListener('foo', () => {});
58 mc.port1.addEventListener('foo', () => {});
59 mc.port1.addEventListener('foo', () => {});
65 const mc = new MessageChannel(); constant
66 mc.port1.addEventListener('foo', () => {});
67 mc.port1.addEventListener('foo', () => {});
68 mc.port1.addEventListener('foo', () => {});
Dtest-perf-hooks-histogram.js40 const mc = new MessageChannel(); constant
41 mc.port1.onmessage = common.mustCall(({ data }) => {
53 mc.port1.close();
55 mc.port2.postMessage(h);
61 const mc = new MessageChannel(); constant
62 mc.port1.onmessage = common.mustCall(({ data }) => {
67 mc.port1.close();
69 setTimeout(() => mc.port2.postMessage(e), 100);
Dtest-blocklist-clone.js20 const mc = new MessageChannel(); constant
22 mc.port1.onmessage = common.mustCall(({ data }) => {
31 mc.port1.close();
34 mc.port2.postMessage(blocklist);
Dtest-socketaddress.js23 const mc = new MessageChannel(); constant
24 mc.port1.onmessage = common.mustCall(({ data }) => {
32 mc.port1.close();
34 mc.port2.postMessage(sa);
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
DScale.java34 final MathContext mc; field in Scale
40 private Scale(int magnitude, BigDecimal arbitrary, MathContext mc) { in Scale() argument
57 this.mc = mc; in Scale()
61 this.reciprocal = BigDecimal.ONE.divide(arbitrary, mc); in Scale()
161 public Scale withMathContext(MathContext mc) { in withMathContext() argument
163 if (this.mc.equals(mc)) { in withMathContext()
166 return new Scale(magnitude, arbitrary, mc); in withMathContext()
190 quantity.roundToMagnitude(quantity.getMagnitude() - mc.getPrecision(), mc); in applyReciprocalTo() local
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DScale.java33 final MathContext mc; field in Scale
39 private Scale(int magnitude, BigDecimal arbitrary, MathContext mc) { in Scale() argument
56 this.mc = mc; in Scale()
60 this.reciprocal = BigDecimal.ONE.divide(arbitrary, mc); in Scale()
165 public Scale withMathContext(MathContext mc) { in withMathContext() argument
167 if (this.mc.equals(mc)) { in withMathContext()
170 return new Scale(magnitude, arbitrary, mc); in withMathContext()
194 quantity.roundToMagnitude(quantity.getMagnitude() - mc.getPrecision(), mc); in applyReciprocalTo() local
/third_party/protobuf/objectivec/DevTools/
Dpddm_tests.py204 mc = pddm.MacroCollection(f)
224 result = mc.Expand(input_str)
235 mc = pddm.MacroCollection(f)
237 self.assertEqual(mc.Expand('bar(xYz)'), 'xYz- -xYz-xyz-XYz-XYZ')
238 self.assertEqual(mc.Expand('bar(MnoP)'), 'MnoP- -mnoP-mnop-MnoP-MNOP')
240 self.assertEqual(mc.Expand('bar()'), '-----')
249 mc = pddm.MacroCollection(f)
269 result = mc.Expand(input_str)
288 mc = pddm.MacroCollection(f)
301 self.assertEqual(mc.Expand('StartIt()'), expected)
[all …]
/third_party/ffmpeg/libavcodec/mips/
Dvp9dsp_init_mips.c86 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
87 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
88 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
89 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_##type##sz##_msa in vp9dsp_mc_init_msa()
109 dsp->mc[idx1][FILTER_BILINEAR ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
111 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
113 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
115 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
176 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_mmi()
178 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = \ in vp9dsp_mc_init_mmi()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_image_load_store.cpp69 uint16_t mc = p & 0x7FF; in lns_to_sf16() local
72 if (mc < 512) in lns_to_sf16()
73 mt = 3 * mc; in lns_to_sf16()
74 else if (mc < 1536) in lns_to_sf16()
75 mt = 4 * mc - 512; in lns_to_sf16()
77 mt = 5 * mc - 2048; in lns_to_sf16()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/specifying_types/this_type_references/
Dthis_type_references_1.ts40 let mc = new myClass(2, 5); variable
42 mc.m = mc0;
43 Assert.equal(mc.m.x, 1);
44 Assert.equal(mc.m.xy(), 2);
/third_party/typescript/tests/baselines/reference/
DdeclFileTypeofInAnonymousType.types48 >d : { m: { mod: typeof m1; }; mc: { cl: typeof m1.c; }; me: { en: typeof m1.e; }; mh: m1.e; }
49 >{ m: { mod: m1 }, mc: { cl: m1.c }, me: { en: m1.e }, mh: m1.e.holiday} : { m: { mod: …
57 mc: { cl: m1.c },
58 >mc : { cl: typeof m1.c; }
DdeclFileTypeofInAnonymousType.js19 mc: { cl: m1.c }, property
48 mc: { cl: m1.c }, property
78 mc: {
/third_party/ffmpeg/libavformat/
Drtpdec_qt.c141 MOVContext *mc = av_mallocz(sizeof(*mc)); in qt_rtp_parse_packet() local
142 if (!mc) in qt_rtp_parse_packet()
144 mc->fc = s; in qt_rtp_parse_packet()
147 av_free(mc); in qt_rtp_parse_packet()
154 ff_mov_read_stsd_entries(mc, &pb, 1); in qt_rtp_parse_packet()
157 av_free(mc); in qt_rtp_parse_packet()
/third_party/ntfs-3g/ntfsprogs/
Dntfscluster.c283 u64 uc = 0, mc = 0, fc = 0; in info() local
314 mc += rl[z].length; in info()
332 fc = vol->nr_clusters-mc-uc; in info()
334 mc <<= cb; in info()
354 r = mc; in info()
355 s = mc >> sb; in info()
356 t = mc >> cb; in info()
357 u = mc * 100 / b / e; in info()
/third_party/flutter/skia/src/svg/
DSkSVGDevice.cpp226 ResourceBucket* bucket, const MxCp& mc, const SkPaint& paint) in AutoElement() argument
230 Resources res = this->addResources(mc, paint); in AutoElement()
243 if (!mc.fMatrix->isIdentity()) { in AutoElement()
244 this->addAttribute("transform", svg_transform(*mc.fMatrix)); in AutoElement()
347 Resources SkSVGDevice::AutoElement::addResources(const MxCp& mc, const SkPaint& paint) { in addResources() argument
351 bool hasClip = !mc.fClipStack->isWideOpen(); in addResources()
358 this->addClipResources(mc, &resources); in addResources()
534 void SkSVGDevice::AutoElement::addClipResources(const MxCp& mc, Resources* resources) { in addClipResources() argument
535 SkASSERT(!mc.fClipStack->isWideOpen()); in addClipResources()
538 (void) mc.fClipStack->asPath(&clipPath); in addClipResources()
[all …]

12345678910>>...13