Searched refs:gcm (Results 1 - 20 of 20) sorted by relevance

/xsrc/external/mit/twm/dist/src/
H A Dgc.c76 unsigned long gcm; local in function:CreateGCs
85 gcm = 0;
86 gcm |= GCFunction; gcv.function = GXxor;
87 gcm |= GCLineWidth; gcv.line_width = 0;
88 gcm |= GCForeground; gcv.foreground = Scr->XORvalue;
89 gcm |= GCSubwindowMode; gcv.subwindow_mode = IncludeInferiors;
91 Scr->DrawGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);
93 gcm = 0;
94 gcm |= GCForeground; gcv.foreground = Scr->MenuC.fore;
95 gcm |
[all...]
/xsrc/external/mit/ctwm/dist/
H A Dgc.c47 unsigned long gcm; local in function:CreateGCs
60 gcm = 0;
61 gcm |= GCFunction;
63 gcm |= GCLineWidth;
65 gcm |= GCForeground;
67 gcm |= GCSubwindowMode;
70 Scr->DrawGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);
72 gcm = 0;
73 gcm |= GCForeground;
75 gcm |
[all...]
H A Ddrawing.c39 unsigned long gcm; local in function:Draw3DBorder
46 gcm = GCFillStyle;
48 XChangeGC(dpy, Scr->BorderGC, gcm, &gcv);
51 gcm = 0;
52 gcm |= GCLineStyle;
54 gcm |= GCFillStyle;
56 XChangeGC(dpy, Scr->BorderGC, gcm, &gcv);
64 gcm = 0;
65 gcm |= GCLineStyle;
67 gcm |
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/
H A Dsb_gcm.cpp44 int gcm::run() {
88 GCM_DUMP( sblog << "\n\n ############## gcm late\n\n"; );
107 void gcm::collect_instructions(container_node *c, bool early_pass) {
131 void gcm::sched_early(container_node *n) {
161 void gcm::td_schedule(bb_node *bb, node *n) {
175 void gcm::td_sched_bb(bb_node* bb) {
190 bool gcm::td_is_ready(node* n) {
194 void gcm::td_release_val(value *v) {
229 void gcm::td_release_uses(vvec& v) {
242 void gcm
[all...]
H A Dsb_core.cpp219 SB_RUN_PASS(gcm, 1);
H A Dsb_pass.h218 class gcm : public pass { class in namespace:r600_sb
265 gcm(shader &sh) : pass(sh), function in class:r600_sb::gcm
H A Dnotes.markdown355 - **gcm** - Global Code Motion [[3]](#references). Also performs
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/
H A Dsb_gcm.cpp44 int gcm::run() {
88 GCM_DUMP( sblog << "\n\n ############## gcm late\n\n"; );
107 void gcm::collect_instructions(container_node *c, bool early_pass) {
131 void gcm::sched_early(container_node *n) {
161 void gcm::td_schedule(bb_node *bb, node *n) {
175 void gcm::td_sched_bb(bb_node* bb) {
190 bool gcm::td_is_ready(node* n) {
194 void gcm::td_release_val(value *v) {
229 void gcm::td_release_uses(vvec& v) {
242 void gcm
[all...]
H A Dsb_core.cpp219 SB_RUN_PASS(gcm, 1);
H A Dsb_pass.h218 class gcm : public pass { class in namespace:r600_sb
265 gcm(shader &sh) : pass(sh), function in class:r600_sb::gcm
H A Dnotes.markdown355 - **gcm** - Global Code Motion [[3]](#references). Also performs
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_nir.c129 static int gcm = -1; local in function:ir3_optimize_loop
130 if (gcm == -1)
131 gcm = env_var_as_unsigned("GCM", 0);
132 if (gcm == 1)
134 else if (gcm == 2)
/xsrc/external/mit/xkbcomp/dist/
H A Dcompat.c345 GroupCompatInfo *gcm; local in function:MergeIncludedCompatMaps
366 for (i = 0, gcm = &from->groupCompat[0]; i < XkbNumKbdGroups; i++, gcm++)
369 gcm->merge = merge;
370 if (!AddGroupCompat(into, i, gcm))
823 GroupCompatInfo *gcm; local in function:CompileCompatMap
857 for (i = 0, gcm = &info.groupCompat[0]; i < XkbNumKbdGroups;
858 i++, gcm++)
860 if ((gcm->fileID != 0) || (gcm
[all...]
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_nir.c216 static int gcm = -1; local in function:ir3_optimize_loop
217 if (gcm == -1)
218 gcm = env_var_as_unsigned("GCM", 0);
219 if (gcm == 1)
221 else if (gcm == 2)
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D21.1.6.rst89 - nir/gcm: Clear out pass_flags before starting
H A D20.1.0.rst2469 - nir/gcm: Loop over blocks in pin_instructions
2470 - nir/gcm: Use an array for storing the early block
2471 - nir/gcm: Move block choosing into a helper function
2472 - nir/gcm: Add a real concept of "progress"
2473 - nir/gcm: Delete dead instructions
2474 - nir/gcm: Prefer the instruction's original block
4140 - nir/gcm: allow derivative dependent intrinisics to be moved earlier
4141 - nir/gcm: be more conservative about moving instructions from loops
4142 - nir/gcm: dont move movs unless we can replace them later with their
H A D21.3.0.rst1776 - nir/gcm: Clear out pass_flags before starting
3564 - nir/gcm: pin some instructions which require uniform sources
4091 - nir/gcm: be less destructive with instruction order
H A D19.0.0.rst1354 - nir/gcm: Support deref instructions
H A D20.3.0.rst2837 - nir/phis_to_scalar,gcm: Use nir_deref_mode_may_be
H A D21.2.0.rst2738 - nir/gcm: Clear out pass_flags before starting

Completed in 35 milliseconds