Home
last modified time | relevance | path

Searched refs:mf (Results 1 - 25 of 145) sorted by relevance

123456

/third_party/backends/backend/pixma/
H A Dpixma_imageclass.c196 iclass_t *mf = (iclass_t *) s->subdriver; in has_paper() local
197 return ((mf->current_status[1] & 0x0f) == 0 /* allow 0x10 as ADF paper OK */ in has_paper()
198 || mf->current_status[1] == 81); /* allow 0x51 as ADF paper OK */ in has_paper()
204 iclass_t *mf = (iclass_t *) s->subdriver; in abort_session() local
205 return pixma_exec_short_cmd (s, &mf->cb, cmd_abort_session); in abort_session()
211 iclass_t *mf = (iclass_t *) s->subdriver; in query_status() local
215 data = pixma_newcmd (&mf->cb, cmd_status, 0, 12); in query_status()
216 error = pixma_exec (s, &mf->cb); in query_status()
219 memcpy (mf->current_status, data, 12); in query_status()
231 iclass_t *mf in activate() local
256 iclass_t *mf = (iclass_t *) s->subdriver; start_session() local
263 iclass_t *mf = (iclass_t *) s->subdriver; select_source() local
289 iclass_t *mf = (iclass_t *) s->subdriver; send_scan_param() local
326 iclass_t *mf = (iclass_t *) s->subdriver; request_image_block() local
372 iclass_t *mf = (iclass_t *) s->subdriver; read_image_block() local
403 iclass_t *mf = (iclass_t *) s->subdriver; read_error_info() local
465 iclass_t *mf = (iclass_t *) s->subdriver; step1() local
539 iclass_t *mf; iclass_open() local
580 iclass_t *mf = (iclass_t *) s->subdriver; iclass_close() local
641 iclass_t *mf = (iclass_t *) s->subdriver; iclass_scan() local
708 iclass_t *mf = (iclass_t *) s->subdriver; iclass_fill_buffer() local
833 iclass_t *mf = (iclass_t *) s->subdriver; iclass_finish_scan() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMessageRegressionTest.java304 MessageFormat mf = new MessageFormat(originalPattern); in Test4114743()
307 mf.applyPattern(illegalPattern); in Test4114743()
310 if (illegalPattern.equals(mf.toPattern())) in Test4114743()
311 errln("pattern after: \"" + mf.toPattern() + "\""); in Test4114743()
322 MessageFormat mf = new MessageFormat(""); in Test4116444()
326 mf.applyPattern(pattern); in Test4116444()
328 Object[] array = mf.parse(null, new ParsePosition(0)); in Test4116444()
359 MessageFormat mf = new MessageFormat("<{0}>"); in Test4114739()
364 logln("pattern: \"" + mf.toPattern() + "\""); in Test4114739()
366 logln("\"" + mf in Test4114739()
[all...]
H A DMeasureUnitTest.java2655 MeasureFormat mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE, nf); in TestFormatPeriodEn()
2656 verifyFormatPeriod("en FULL", mf, fullData); in TestFormatPeriodEn()
2657 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.SHORT, nf); in TestFormatPeriodEn()
2658 verifyFormatPeriod("en SHORT", mf, abbrevData); in TestFormatPeriodEn()
2659 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NARROW, nf); in TestFormatPeriodEn()
2660 verifyFormatPeriod("en NARROW", mf, narrowData); in TestFormatPeriodEn()
2661 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NUMERIC, nf); in TestFormatPeriodEn()
2662 verifyFormatPeriod("en NUMERIC", mf, numericData); in TestFormatPeriodEn()
2666 mf = MeasureFormat.getInstance(ULocale.GERMAN, FormatWidth.WIDE, nf); in TestFormatPeriodEn()
2667 verifyFormatPeriod("de FULL", mf, fullDataD in TestFormatPeriodEn()
2692 verifyFormatPeriod(String desc, MeasureFormat mf, Object[][] testData) verifyFormatPeriod() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DMessageRegressionTest.java307 MessageFormat mf = new MessageFormat(originalPattern); in Test4114743()
310 mf.applyPattern(illegalPattern); in Test4114743()
313 if (illegalPattern.equals(mf.toPattern())) in Test4114743()
314 errln("pattern after: \"" + mf.toPattern() + "\""); in Test4114743()
325 MessageFormat mf = new MessageFormat(""); in Test4116444()
329 mf.applyPattern(pattern); in Test4116444()
331 Object[] array = mf.parse(null, new ParsePosition(0)); in Test4116444()
362 MessageFormat mf = new MessageFormat("<{0}>"); in Test4114739()
367 logln("pattern: \"" + mf.toPattern() + "\""); in Test4114739()
369 logln("\"" + mf in Test4114739()
[all...]
H A DMeasureUnitTest.java1865 MeasureFormat mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE, nf); in TestFormatPeriodEn()
1866 verifyFormatPeriod("en FULL", mf, fullData); in TestFormatPeriodEn()
1867 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.SHORT, nf); in TestFormatPeriodEn()
1868 verifyFormatPeriod("en SHORT", mf, abbrevData); in TestFormatPeriodEn()
1869 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NARROW, nf); in TestFormatPeriodEn()
1870 verifyFormatPeriod("en NARROW", mf, narrowData); in TestFormatPeriodEn()
1871 mf = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.NUMERIC, nf); in TestFormatPeriodEn()
1872 verifyFormatPeriod("en NUMERIC", mf, numericData); in TestFormatPeriodEn()
1876 mf = MeasureFormat.getInstance(ULocale.GERMAN, FormatWidth.WIDE, nf); in TestFormatPeriodEn()
1877 verifyFormatPeriod("de FULL", mf, fullDataD in TestFormatPeriodEn()
1902 verifyFormatPeriod(String desc, MeasureFormat mf, Object[][] testData) verifyFormatPeriod() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/
H A DCustomFormatterGrammarCaseTest.java92 MessageFormatter mf = MessageFormatter.builder() in test()
98 assertEquals("case - genitive", "Cartea Mariei", mf.formatToString(Args.of("owner", "Maria"))); in test()
99 assertEquals("case - genitive", "Cartea Rodicăi", mf.formatToString(Args.of("owner", "Rodica"))); in test()
100 assertEquals("case - genitive", "Cartea Ilenei", mf.formatToString(Args.of("owner", "Ileana"))); in test()
101 assertEquals("case - genitive", "Cartea lui Petre", mf.formatToString(Args.of("owner", "Petre"))); in test()
103 mf = MessageFormatter.builder() in test()
109 assertEquals("case - nominative", "M-a sunat Maria", mf.formatToString(Args.of("owner", "Maria"))); in test()
110 assertEquals("case - nominative", "M-a sunat Rodica", mf.formatToString(Args.of("owner", "Rodica"))); in test()
111 assertEquals("case - nominative", "M-a sunat Ileana", mf.formatToString(Args.of("owner", "Ileana"))); in test()
112 assertEquals("case - nominative", "M-a sunat Petre", mf in test()
[all...]
H A DCustomFormatterMessageRefTest.java58 MessageFormatter mf = MessageFormatter.builder() in format()
61 result = mf.formatToString(options); in format()
88 MessageFormatter mf = MessageFormatter.builder() in testSimpleGrammarSelection()
91 assertEquals("cust-grammar", "Firefox", mf.formatToString(Args.of("gcase", "whatever"))); in testSimpleGrammarSelection()
92 assertEquals("cust-grammar", "Firefoxin", mf.formatToString(Args.of("gcase", "genitive"))); in testSimpleGrammarSelection()
94 mf = MessageFormatter.builder() in testSimpleGrammarSelection()
97 assertEquals("cust-grammar", "Chrome", mf.formatToString(Args.of("gcase", "whatever"))); in testSimpleGrammarSelection()
98 assertEquals("cust-grammar", "Chromen", mf.formatToString(Args.of("gcase", "genitive"))); in testSimpleGrammarSelection()
H A DMf2IcuTest.java80 MessageFormatter mf = MessageFormatter.builder() in testSelectFormatToPattern()
85 mf.formatToString(Args.of("userName", "Charlotte", "userGender", "female"))); in testSelectFormatToPattern()
88 mf.formatToString(Args.of("userName", "Guillaume", "userGender", "male"))); in testSelectFormatToPattern()
91 mf.formatToString(Args.of("userName", "Dominique", "userGender", "unnown"))); in testSelectFormatToPattern()
/third_party/icu/icu4c/source/test/intltest/
H A Dmsfmrgts.cpp459 MessageFormat *mf = new MessageFormat(originalPattern, status); in Test4114743() local
463 mf->applyPattern(illegalPattern, status); in Test4114743()
467 if (!originalPattern.equals(mf.toPattern())) in Test4114743()
468 errln("pattern after: \"" + mf.toPattern() + "\""); in Test4114743()
470 delete mf; in Test4114743()
485 MessageFormat *mf = new MessageFormat("", status); in Test4116444() local
490 mf->applyPattern(pattern, status); in Test4116444()
491 failure(status, "mf->applyPattern", true); in Test4116444()
496 Formattable *array = mf->parse(UnicodeString(""), pp, count); in Test4116444()
522 delete mf; in Test4116444()
533 MessageFormat *mf = new MessageFormat("<{0}>", status); Test4114739() local
567 MessageFormat *mf = new MessageFormat(originalPattern, status); Test4113018() local
701 MessageFormat *mf = new MessageFormat("", status); Test4118592() local
742 MessageFormat *mf = new MessageFormat("{0}, {0}, {0}", status); Test4118594() local
832 MessageFormat *mf = new MessageFormat("pattern", status); Test4120552() local
871 MessageFormat *mf = new MessageFormat(pat, status); Test4142938() local
[all...]
/third_party/lzma/C/
H A DLzFindMt.c464 CMatchFinder *mf = MF(mt); in HashThreadFunc() local
465 if (MatchFinder_NeedMove(mf)) in HashThreadFunc()
470 const Byte *beforePtr = Inline_MatchFinder_GetPointerToCurrentPos(mf); in HashThreadFunc()
472 MatchFinder_MoveBlock(mf); in HashThreadFunc()
473 offset = beforePtr - Inline_MatchFinder_GetPointerToCurrentPos(mf); in HashThreadFunc()
491 MatchFinder_ReadIfRequired(mf); in HashThreadFunc()
494 UInt32 num = Inline_MatchFinder_GetNumAvailableBytes(mf); in HashThreadFunc()
499 if (avail < mf->numHashBytes) : in HashThreadFunc()
513 if (num >= mf->numHashBytes) in HashThreadFunc()
515 num = num - mf in HashThreadFunc()
851 CMatchFinder *mf = MF(p); MatchFinderMt_Create() local
882 CMatchFinder *mf = MF(p); MatchFinderMt_Init() local
[all...]
/third_party/mesa3d/src/mesa/state_tracker/tests/
H A Dst_format.c79 mesa_format mf = st_pipe_format_to_mesa_format(pf); in main() local
80 if (mf != i) { in main()
83 _mesa_get_format_name(mf)); in main()
93 bool mesa_array = (_mesa_get_format_layout(mf) == in main()
104 _mesa_get_format_name(mf), in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
H A D6-1.c100 static long mf; variable
116 if (mf > 0) in threaded()
129 if (mf > 0) { in threaded()
168 if (mf > 0) in threaded()
191 mf = sysconf(_SC_MAPPED_FILES); in main()
198 if (mf > 0) { in main()
/third_party/skia/src/core/
H A DSkMaskFilterBase.h249 inline SkMaskFilterBase* as_MFB(SkMaskFilter* mf) { in as_MFB() argument
250 return static_cast<SkMaskFilterBase*>(mf); in as_MFB()
253 inline const SkMaskFilterBase* as_MFB(const SkMaskFilter* mf) { in as_MFB() argument
254 return static_cast<const SkMaskFilterBase*>(mf); in as_MFB()
257 inline const SkMaskFilterBase* as_MFB(const sk_sp<SkMaskFilter>& mf) { in as_MFB() argument
258 return static_cast<SkMaskFilterBase*>(mf.get()); in as_MFB()
/third_party/typescript/tests/baselines/reference/
H A DtypeMatch2.js37 var mf = function m(n) { return false; };
39 mf=zf;
40 mf(_any);
105 var mf = function m(n) { return false; };
107 mf = zf;
108 mf(_any);
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/getpid/
H A D1-1.c71 long mf; /* Is memory mapping supported? */ in main() local
101 mf = sysconf(_SC_MAPPED_FILES); in main()
106 output(" MF : %li\n", mf); in main()
107 if (mf <= 0) in main()
112 if (mf > 0) { in main()
/third_party/skia/bench/
H A DMorphologyBench.cpp66 sk_sp<SkImageFilter> mf; variable
69 mf = SkImageFilters::Dilate(
73 mf = SkImageFilters::Erode(
77 paint.setImageFilter(std::move(mf));
/third_party/python/Tools/freeze/
H A Dfreeze.py349 mf = modulefinder.ModuleFinder(path, debug, exclude, replace_paths)
353 mod = mf.add_module("servicemanager")
357 mf.import_hook(mod)
364 mf.import_hook(mod[:-2], None, ["*"])
366 mf.import_hook(mod)
368 mf.load_file(mod)
372 mf.run_script(scriptfile)
374 mf.load_file(scriptfile)
377 mf.report()
379 dict = mf
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
H A D4-2.c162 long pshared, mf; in main() local
172 mf = sysconf(_SC_MAPPED_FILES); in main()
178 output(" MF : %li\n", mf); in main()
179 if ((mf < 0) || (pshared < 0)) in main()
188 mf = -1; in main()
194 if (mf < 0) { in main()
H A D1-2.c164 long pshared, mf; in main() local
171 mf = sysconf(_SC_MAPPED_FILES); in main()
177 output(" MF : %li\n", mf); in main()
178 if ((mf < 0) || (pshared < 0)) in main()
187 mf = -1; in main()
193 if (mf < 0) { in main()
H A D2-1.c141 long pshared, mf; in main() local
148 mf = sysconf(_SC_MAPPED_FILES); in main()
154 output(" MF : %li\n", mf); in main()
155 if ((mf < 0) || (pshared < 0)) in main()
162 if (mf < 0) { in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSlotIndexes.cpp23 SlotIndexes::SlotIndexes() : MachineFunctionPass(ID), mf(nullptr) { in SlotIndexes()
63 mf = &fn; in runOnMachineFunction()
75 MBBRanges.resize(mf->getNumBlockIDs()); in runOnMachineFunction()
76 idx2MBBMap.reserve(mf->size()); in runOnMachineFunction()
81 for (MachineBasicBlock &MBB : *mf) { in runOnMachineFunction()
109 LLVM_DEBUG(mf->print(dbgs(), this)); in runOnMachineFunction()
H A DBreakFalseDeps.cpp263 bool BreakFalseDeps::runOnMachineFunction(MachineFunction &mf) { in runOnMachineFunction() argument
264 if (skipFunction(mf.getFunction())) in runOnMachineFunction()
266 MF = &mf; in runOnMachineFunction()
271 RegClassInfo.runOnMachineFunction(mf); in runOnMachineFunction()
276 for (MachineBasicBlock &MBB : mf) { in runOnMachineFunction()
H A DLiveDebugVariables.cpp448 /// \param mf MachineFunction to be scanned.
451 bool collectDebugValues(MachineFunction &mf);
460 bool runOnMachineFunction(MachineFunction &mf);
698 bool LDVImpl::collectDebugValues(MachineFunction &mf) { in collectDebugValues() argument
700 for (MachineFunction::iterator MFI = mf.begin(), MFE = mf.end(); MFI != MFE; in collectDebugValues()
987 bool LDVImpl::runOnMachineFunction(MachineFunction &mf) { in runOnMachineFunction() argument
989 MF = &mf; in runOnMachineFunction()
991 TRI = mf.getSubtarget().getRegisterInfo(); in runOnMachineFunction()
993 << mf in runOnMachineFunction()
1002 removeDebugValues(MachineFunction &mf) removeDebugValues() argument
1014 runOnMachineFunction(MachineFunction &mf) runOnMachineFunction() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_modulefinder.py329 mf = modulefinder_class(path=self.test_path, debug=debug,
331 mf.import_hook(import_this)
333 mf.report()
344 found = sorted(mf.modules)
349 bad, maybe = mf.any_missing_maybe()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64AdvSIMDScalarPass.cpp391 bool AArch64AdvSIMDScalar::runOnMachineFunction(MachineFunction &mf) { in runOnMachineFunction() argument
395 if (skipFunction(mf.getFunction())) in runOnMachineFunction()
398 MRI = &mf.getRegInfo(); in runOnMachineFunction()
399 TII = mf.getSubtarget().getInstrInfo(); in runOnMachineFunction()
402 for (MachineFunction::iterator I = mf.begin(), E = mf.end(); I != E; ++I) in runOnMachineFunction()

Completed in 22 milliseconds

123456