Home
last modified time | relevance | path

Searched refs:pm (Results 1 – 25 of 761) sorted by relevance

12345678910>>...31

/external/llvm/bindings/go/llvm/
Dtransforms_scalar.go21 func (pm PassManager) AddAggressiveDCEPass() { C.LLVMAddAggressiveDCEPass(pm.C) }
22 func (pm PassManager) AddCFGSimplificationPass() { C.LLVMAddCFGSimplificationPass(pm.C) }
23 func (pm PassManager) AddDeadStoreEliminationPass() { C.LLVMAddDeadStoreEliminationPass(pm.C) }
24 func (pm PassManager) AddGVNPass() { C.LLVMAddGVNPass(pm.C) }
25 func (pm PassManager) AddIndVarSimplifyPass() { C.LLVMAddIndVarSimplifyPass(pm.C) }
26 func (pm PassManager) AddInstructionCombiningPass() { C.LLVMAddInstructionCombiningPass(pm.C) }
27 func (pm PassManager) AddJumpThreadingPass() { C.LLVMAddJumpThreadingPass(pm.C) }
28 func (pm PassManager) AddLICMPass() { C.LLVMAddLICMPass(pm.C) }
29 func (pm PassManager) AddLoopDeletionPass() { C.LLVMAddLoopDeletionPass(pm.C) }
30 func (pm PassManager) AddLoopRotatePass() { C.LLVMAddLoopRotatePass(pm.C) }
[all …]
Dtransforms_ipo.go29 func (pm PassManager) AddArgumentPromotionPass() { C.LLVMAddArgumentPromotionPass(pm.C) }
30 func (pm PassManager) AddConstantMergePass() { C.LLVMAddConstantMergePass(pm.C) }
31 func (pm PassManager) AddDeadArgEliminationPass() { C.LLVMAddDeadArgEliminationPass(pm.C) }
32 func (pm PassManager) AddFunctionAttrsPass() { C.LLVMAddFunctionAttrsPass(pm.C) }
33 func (pm PassManager) AddFunctionInliningPass() { C.LLVMAddFunctionInliningPass(pm.C) }
34 func (pm PassManager) AddGlobalDCEPass() { C.LLVMAddGlobalDCEPass(pm.C) }
35 func (pm PassManager) AddGlobalOptimizerPass() { C.LLVMAddGlobalOptimizerPass(pm.C) }
36 func (pm PassManager) AddIPConstantPropagationPass() { C.LLVMAddIPConstantPropagationPass(pm.C) }
37 func (pm PassManager) AddPruneEHPass() { C.LLVMAddPruneEHPass(pm.C) }
38 func (pm PassManager) AddIPSCCPPass() { C.LLVMAddIPSCCPPass(pm.C) }
[all …]
Dtransforms_instrumentation.go23 func (pm PassManager) AddAddressSanitizerFunctionPass() {
24 C.LLVMAddAddressSanitizerFunctionPass(pm.C)
27 func (pm PassManager) AddAddressSanitizerModulePass() {
28 C.LLVMAddAddressSanitizerModulePass(pm.C)
31 func (pm PassManager) AddThreadSanitizerPass() {
32 C.LLVMAddThreadSanitizerPass(pm.C)
35 func (pm PassManager) AddMemorySanitizerPass() {
36 C.LLVMAddMemorySanitizerPass(pm.C)
39 func (pm PassManager) AddDataFlowSanitizerPass(abilist []string) {
45 C.LLVMAddDataFlowSanitizerPass(pm.C, C.int(len(abilist)), &abiliststrs[0])
/external/drm_gralloc/
Dgralloc_drm_pipe.c110 static struct pipe_buffer *get_pipe_buffer_locked(struct pipe_manager *pm, in get_pipe_buffer_locked() argument
122 !pm->screen->is_format_supported(pm->screen, templ.format, in get_pipe_buffer_locked()
144 buf->resource = pm->screen->resource_from_handle(pm->screen, in get_pipe_buffer_locked()
151 pm->screen->resource_create(pm->screen, &templ); in get_pipe_buffer_locked()
156 if (!pm->screen->resource_get_handle(pm->screen, in get_pipe_buffer_locked()
167 if (!pm->screen->resource_get_handle(pm->screen, in get_pipe_buffer_locked()
188 struct pipe_manager *pm = (struct pipe_manager *) drv; in pipe_alloc() local
191 pthread_mutex_lock(&pm->mutex); in pipe_alloc()
192 buf = get_pipe_buffer_locked(pm, handle); in pipe_alloc()
193 pthread_mutex_unlock(&pm->mutex); in pipe_alloc()
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/
DMANIFEST21 lib/ANTLR/Runtime.pm
22 lib/ANTLR/Runtime/ANTLRFileStream.pm
23 lib/ANTLR/Runtime/ANTLRStringStream.pm
24 lib/ANTLR/Runtime/BaseRecognizer.pm
25 lib/ANTLR/Runtime/BitSet.pm
26 lib/ANTLR/Runtime/CharStream.pm
27 lib/ANTLR/Runtime/CharStreamState.pm
28 lib/ANTLR/Runtime/CommonToken.pm
29 lib/ANTLR/Runtime/CommonTokenStream.pm
30 lib/ANTLR/Runtime/DFA.pm
[all …]
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_parenmatch.py42 pm = ParenMatch(self.editwin)
43 pm.bell = lambda: None
44 return pm
51 pm = self.get_parenmatch()
52 pm.set_style('expression')
55 pm.flash_paren_event('event')
60 pm.restore_event()
65 pm.paren_closed_event('event')
74 pm = self.get_parenmatch()
75 pm.set_style('default')
[all …]
/external/libpng/contrib/libtests/
Dpngvalid.c2500 static int fail(png_modifier *pm) in fail() argument
2502 return !pm->log && !pm->this.verbose && (pm->this.nerrors > 0 || in fail()
2503 (pm->this.treat_warnings_as_errors && pm->this.nwarnings > 0)); in fail()
2507 modifier_init(png_modifier *pm) in modifier_init() argument
2509 memset(pm, 0, sizeof *pm); in modifier_init()
2510 store_init(&pm->this); in modifier_init()
2511 pm->modifications = NULL; in modifier_init()
2512 pm->state = modifier_start; in modifier_init()
2513 pm->sbitlow = 1U; in modifier_init()
2514 pm->ngammas = 0; in modifier_init()
[all …]
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_parenmatch.py55 pm = ParenMatch(self.editwin)
56 pm.set_style('expression')
59 pm.flash_paren_event('event')
64 pm.restore_event()
69 pm.paren_closed_event('event')
78 pm = ParenMatch(self.editwin)
79 pm.set_style('default')
82 pm.flash_paren_event('event')
87 pm.restore_event()
98 pm = ParenMatch(self.editwin)
[all …]
/external/selinux/python/sepolgen/tests/
Dtest_objectmodel.py30 pm = info.get("filesystem", "mount")
31 self.assertEqual(pm.perm, "mount")
32 self.assertEqual(pm.dir, sepolgen.objectmodel.FLOW_WRITE)
33 self.assertEqual(pm.weight, 1)
37 pm = info.getdefault("filesystem", "foo")
38 self.assertEqual(pm.perm, "foo")
39 self.assertEqual(pm.dir, sepolgen.objectmodel.FLOW_BOTH)
40 self.assertEqual(pm.weight, 5)
42 pm = info.getdefault("foo", "bar")
43 self.assertEqual(pm.perm, "bar")
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageManager.java3 import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
4 import static android.content.pm.PackageManager.GET_ACTIVITIES;
5 import static android.content.pm.PackageManager.GET_CONFIGURATIONS;
6 import static android.content.pm.PackageManager.GET_GIDS;
7 import static android.content.pm.PackageManager.GET_INSTRUMENTATION;
8 import static android.content.pm.PackageManager.GET_INTENT_FILTERS;
9 import static android.content.pm.PackageManager.GET_META_DATA;
10 import static android.content.pm.PackageManager.GET_PERMISSIONS;
11 import static android.content.pm.PackageManager.GET_PROVIDERS;
12 import static android.content.pm.PackageManager.GET_RECEIVERS;
[all …]
DLegacyManifestParser.java3 import static android.content.pm.ApplicationInfo.FLAG_ALLOW_BACKUP;
4 import static android.content.pm.ApplicationInfo.FLAG_ALLOW_CLEAR_USER_DATA;
5 import static android.content.pm.ApplicationInfo.FLAG_ALLOW_TASK_REPARENTING;
6 import static android.content.pm.ApplicationInfo.FLAG_DEBUGGABLE;
7 import static android.content.pm.ApplicationInfo.FLAG_HAS_CODE;
8 import static android.content.pm.ApplicationInfo.FLAG_KILL_AFTER_RESTORE;
9 import static android.content.pm.ApplicationInfo.FLAG_PERSISTENT;
10 import static android.content.pm.ApplicationInfo.FLAG_RESIZEABLE_FOR_SCREENS;
11 import static android.content.pm.ApplicationInfo.FLAG_RESTORE_ANY_VERSION;
12 import static android.content.pm.ApplicationInfo.FLAG_SUPPORTS_LARGE_SCREENS;
[all …]
/external/clang/test/CXX/expr/expr.mptr.oper/
Dp5.cpp10 void test_object_cvquals(void (X0::*pm)(), in test_object_cvquals() argument
22 (p->*pm)(); in test_object_cvquals()
27 …(pc->*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attrib… in test_object_cvquals()
32 …(pv->*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attrib… in test_object_cvquals()
37 …(pcv->*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attri… in test_object_cvquals()
42 (o.*pm)(); in test_object_cvquals()
47 …(oc.*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attribu… in test_object_cvquals()
52 …(ov.*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attribu… in test_object_cvquals()
57 …(ocv.*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attrib… in test_object_cvquals()
/external/skia/tools/sk_app/unix/
DRasterWindowContext_unix.cpp64 SkPixmap pm; in swapBuffers() local
65 if (!fBackbufferSurface->peekPixels(&pm)) { in swapBuffers()
68 int bitsPerPixel = pm.info().bytesPerPixel() * 8; in swapBuffers()
71 image.width = pm.width(); in swapBuffers()
72 image.height = pm.height(); in swapBuffers()
74 image.data = (char*) pm.addr(); in swapBuffers()
80 image.bytes_per_line = pm.rowBytes() - pm.width() * pm.info().bytesPerPixel(); in swapBuffers()
85 XPutImage(fDisplay, fWindow, fGC, &image, 0, 0, 0, 0, pm.width(), pm.height()); in swapBuffers()
/external/skqp/tools/sk_app/unix/
DRasterWindowContext_unix.cpp64 SkPixmap pm; in swapBuffers() local
65 if (!fBackbufferSurface->peekPixels(&pm)) { in swapBuffers()
68 int bitsPerPixel = pm.info().bytesPerPixel() * 8; in swapBuffers()
71 image.width = pm.width(); in swapBuffers()
72 image.height = pm.height(); in swapBuffers()
74 image.data = (char*) pm.addr(); in swapBuffers()
80 image.bytes_per_line = pm.rowBytes() - pm.width() * pm.info().bytesPerPixel(); in swapBuffers()
85 XPutImage(fDisplay, fWindow, fGC, &image, 0, 0, 0, 0, pm.width(), pm.height()); in swapBuffers()
/external/swiftshader/third_party/LLVM/lib/Support/
DRegex.cpp59 SmallVector<llvm_regmatch_t, 8> pm; in match() local
60 pm.resize(nmatch > 0 ? nmatch : 1); in match()
61 pm[0].rm_so = 0; in match()
62 pm[0].rm_eo = String.size(); in match()
64 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND); in match()
80 if (pm[i].rm_so == -1) { in match()
85 assert(pm[i].rm_eo >= pm[i].rm_so); in match()
86 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match()
87 pm[i].rm_eo-pm[i].rm_so)); in match()
/external/selinux/python/sepolgen/src/sepolgen/
Dobjectmodel.py130 pm = PermMap(fields[0], str_to_dir[fields[1]], int(fields[2]))
131 cur[pm.perm] = pm
151 pm = self.classes[obj][perm]
154 return pm
159 pm = self.getdefault(obj, perm)
160 dir = dir | pm.dir
166 pm = self.getdefault(obj, perm)
167 total += pm.weight
/external/python/cpython2/Mac/Modules/qdoffs/
D_Qdoffsmodule.c237 PixMapHandle pm; in Qdoffs_LockPixels() local
242 ResObj_Convert, &pm)) in Qdoffs_LockPixels()
244 _rv = LockPixels(pm); in Qdoffs_LockPixels()
253 PixMapHandle pm; in Qdoffs_UnlockPixels() local
258 ResObj_Convert, &pm)) in Qdoffs_UnlockPixels()
260 UnlockPixels(pm); in Qdoffs_UnlockPixels()
402 PixMapHandle pm; in Qdoffs_AllowPurgePixels() local
407 ResObj_Convert, &pm)) in Qdoffs_AllowPurgePixels()
409 AllowPurgePixels(pm); in Qdoffs_AllowPurgePixels()
418 PixMapHandle pm; in Qdoffs_NoPurgePixels() local
[all …]
/external/llvm/lib/Support/
DRegex.cpp63 SmallVector<llvm_regmatch_t, 8> pm; in match() local
64 pm.resize(nmatch > 0 ? nmatch : 1); in match()
65 pm[0].rm_so = 0; in match()
66 pm[0].rm_eo = String.size(); in match()
68 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND); in match()
84 if (pm[i].rm_so == -1) { in match()
89 assert(pm[i].rm_eo >= pm[i].rm_so); in match()
90 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match()
91 pm[i].rm_eo-pm[i].rm_so)); in match()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DRegex.cpp75 SmallVector<llvm_regmatch_t, 8> pm; in match() local
76 pm.resize(nmatch > 0 ? nmatch : 1); in match()
77 pm[0].rm_so = 0; in match()
78 pm[0].rm_eo = String.size(); in match()
80 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND); in match()
96 if (pm[i].rm_so == -1) { in match()
101 assert(pm[i].rm_eo >= pm[i].rm_so); in match()
102 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match()
103 pm[i].rm_eo-pm[i].rm_so)); in match()
/external/skia/tools/
Dsk_pixel_iter.h20 SkPixmap pm; in PixelIter() local
21 if (!surf->peekPixels(&pm)) { in PixelIter()
22 pm.reset(); in PixelIter()
24 this->reset(pm); in PixelIter()
27 void reset(const SkPixmap& pm) { in reset() argument
28 fPM = pm; in reset()
/external/skqp/tools/
Dsk_pixel_iter.h20 SkPixmap pm; in PixelIter() local
21 if (!surf->peekPixels(&pm)) { in PixelIter()
22 pm.reset(); in PixelIter()
24 this->reset(pm); in PixelIter()
27 void reset(const SkPixmap& pm) { in reset() argument
28 fPM = pm; in reset()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DMutablePatternModifier.java166 ParameterizedModifier pm = new ParameterizedModifier(); in createImmutableAndChain() local
169 pm.setModifier(false, plural, createConstantModifier(a, b)); in createImmutableAndChain()
171 pm.setModifier(true, plural, createConstantModifier(a, b)); in createImmutableAndChain()
173 pm.freeze(); in createImmutableAndChain()
174 return new ImmutablePatternModifier(pm, rules, parent); in createImmutableAndChain()
181 ParameterizedModifier pm = new ParameterizedModifier(positive, negative); in createImmutableAndChain() local
182 return new ImmutablePatternModifier(pm, null, parent); in createImmutableAndChain()
208 final ParameterizedModifier pm; field in MutablePatternModifier.ImmutablePatternModifier
212 …ImmutablePatternModifier(ParameterizedModifier pm, PluralRules rules, MicroPropsGenerator parent) { in ImmutablePatternModifier() argument
213 this.pm = pm; in ImmutablePatternModifier()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DMutablePatternModifier.java168 ParameterizedModifier pm = new ParameterizedModifier(); in createImmutableAndChain() local
171 pm.setModifier(false, plural, createConstantModifier(a, b)); in createImmutableAndChain()
173 pm.setModifier(true, plural, createConstantModifier(a, b)); in createImmutableAndChain()
175 pm.freeze(); in createImmutableAndChain()
176 return new ImmutablePatternModifier(pm, rules, parent); in createImmutableAndChain()
183 ParameterizedModifier pm = new ParameterizedModifier(positive, negative); in createImmutableAndChain() local
184 return new ImmutablePatternModifier(pm, null, parent); in createImmutableAndChain()
210 final ParameterizedModifier pm; field in MutablePatternModifier.ImmutablePatternModifier
214 …ImmutablePatternModifier(ParameterizedModifier pm, PluralRules rules, MicroPropsGenerator parent) { in ImmutablePatternModifier() argument
215 this.pm = pm; in ImmutablePatternModifier()
[all …]
/external/icu/icu4c/source/i18n/
Dnumber_patternmodifier.cpp68 auto pm = new ParameterizedModifier(); in createImmutableAndChain() local
69 if (pm == nullptr) { in createImmutableAndChain()
78 pm->adoptSignPluralModifier(false, plural, createConstantModifier(status)); in createImmutableAndChain()
80 pm->adoptSignPluralModifier(true, plural, createConstantModifier(status)); in createImmutableAndChain()
83 delete pm; in createImmutableAndChain()
86 return new ImmutablePatternModifier(pm, rules, parent); // adopts pm in createImmutableAndChain()
93 pm->adoptPositiveNegativeModifiers(positive, negative); in createImmutableAndChain()
95 delete pm; in createImmutableAndChain()
98 return new ImmutablePatternModifier(pm, nullptr, parent); // adopts pm in createImmutableAndChain()
114 ImmutablePatternModifier::ImmutablePatternModifier(ParameterizedModifier *pm, const PluralRules *ru… in ImmutablePatternModifier() argument
[all …]
/external/skqp/tests/
DFloat16Test.cpp44 SkAutoPixmapStorage pm; in DEF_TEST() local
45 pm.alloc(info); in DEF_TEST()
46 REPORTER_ASSERT(reporter, pm.computeByteSize() == SkToSizeT(w * h * sizeof(uint64_t))); in DEF_TEST()
49 pm.erase(c4); in DEF_TEST()
52 for (int y = 0; y < pm.height(); ++y) { in DEF_TEST()
53 for (int x = 0; x < pm.width(); ++x) { in DEF_TEST()
54 SkPM4f pm4 = SkPM4f::FromF16(pm.addrF16(x, y)); in DEF_TEST()

12345678910>>...31