| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/ |
| hud_context.c | 312 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1, 327 const struct hud_pane *pane) 333 const unsigned last_line = pane->last_line; 337 pane->x1, pane->y1, 338 pane->x2, pane->y2); 342 unsigned x = pane->x2 + 2; 343 unsigned y = pane->inner_y1 + 344 pane->inner_height * (last_line - i) / last_line 468 struct hud_pane *pane; local 628 struct hud_pane *pane; local 646 struct hud_pane *pane; local 875 struct hud_pane *pane = CALLOC_STRUCT(hud_pane); local 1186 struct hud_pane *pane = NULL; local 1789 struct hud_pane *pane, *pane_tmp; local [all...] |
| hud_private.h | 102 struct hud_pane *pane; member in struct:hud_graph 150 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr); 151 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value); 161 void hud_fps_graph_install(struct hud_pane *pane); 162 void hud_frametime_graph_install(struct hud_pane *pane); 163 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index); 164 void hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main); 165 void hud_thread_counter_install(struct hud_pane *pane, const char *name, 168 struct hud_pane *pane, 177 struct hud_pane *pane, [all...] |
| hud_fps.c | 55 else if (info->last_time + gr->pane->period <= now) { 76 hud_fps_graph_install(struct hud_pane *pane) 99 hud_pane_add_graph(pane, gr); 103 hud_frametime_graph_install(struct hud_pane *pane) 123 hud_pane_add_graph(pane, gr);
|
| hud_cpu.c | 237 if (info->last_time + gr->pane->period <= now) { 267 hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index) 303 hud_pane_add_graph(pane, gr); 304 hud_pane_set_max_value(pane, 100); 332 if (info->last_time + gr->pane->period*1000 <= now) { 338 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; 368 hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main) 392 hud_pane_add_graph(pane, gr); 393 hud_pane_set_max_value(pane, 100); 404 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue [all...] |
| hud_sensors_temp.c | 167 if (sti->last_time + gr->pane->period <= now) { 200 * \param pane parent context. 205 hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name, 235 hud_pane_add_graph(pane, gr); 239 hud_pane_set_max_value(pane, 120); 242 hud_pane_set_max_value(pane, 12); 245 hud_pane_set_max_value(pane, 5000); 248 hud_pane_set_max_value(pane, 5000 /* mW */);
|
| hud_cpufreq.c | 100 if (cfi->last_time + gr->pane->period <= now) { 119 * \param pane parent context. 124 hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, 161 hud_pane_add_graph(pane, gr); 162 hud_pane_set_max_value(pane, 3000000 /* 3 GHz */);
|
| hud_diskstat.c | 130 if (dsi->last_time + gr->pane->period <= now) { 141 (((float) gr->pane->period / 1000) / 1000); 147 (((float) gr->pane->period / 1000) / 1000); 170 * \param pane parent context. 175 hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name, 208 hud_pane_add_graph(pane, gr); 209 hud_pane_set_max_value(pane, 100);
|
| hud_driver_query.c | 320 if (info->num_results && info->last_time + gr->pane->period <= now) { 371 struct hud_pane *pane, 409 hud_pane_add_graph(pane, gr); 410 pane->type = type; /* must be set before updating the max_value */ 412 if (pane->max_value < max_value) 413 hud_pane_set_max_value(pane, max_value); 424 struct hud_pane *pane, struct pipe_screen *screen, 447 hud_pipe_query_install(pbq, pane, query.name, query.query_type, 0,
|
| hud_nic.c | 185 if (nic->last_time + gr->pane->period <= now) { 196 float periodMs = gr->pane->period / 1000.0; 242 * \param pane parent context. 247 hud_nic_graph_install(struct hud_pane *pane, const char *nic_name, 284 hud_pane_add_graph(pane, gr); 285 hud_pane_set_max_value(pane, 100);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/ |
| hud_context.c | 312 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1, 327 const struct hud_pane *pane) 333 const unsigned last_line = pane->last_line; 337 pane->x1, pane->y1, 338 pane->x2, pane->y2); 342 unsigned x = pane->x2 + 2; 343 unsigned y = pane->inner_y1 + 344 pane->inner_height * (last_line - i) / last_line 468 struct hud_pane *pane; local 621 struct hud_pane *pane; local 639 struct hud_pane *pane; local 876 struct hud_pane *pane = CALLOC_STRUCT(hud_pane); local 1187 struct hud_pane *pane = NULL; local 1747 struct hud_pane *pane, *pane_tmp; local [all...] |
| hud_private.h | 100 struct hud_pane *pane; member in struct:hud_graph 148 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr); 149 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value); 159 void hud_fps_graph_install(struct hud_pane *pane); 160 void hud_frametime_graph_install(struct hud_pane *pane); 161 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index); 162 void hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main); 163 void hud_thread_counter_install(struct hud_pane *pane, const char *name, 166 struct hud_pane *pane, 175 struct hud_pane *pane, [all...] |
| hud_fps.c | 55 else if (info->last_time + gr->pane->period <= now) { 76 hud_fps_graph_install(struct hud_pane *pane) 99 hud_pane_add_graph(pane, gr); 103 hud_frametime_graph_install(struct hud_pane *pane) 123 hud_pane_add_graph(pane, gr);
|
| hud_cpu.c | 198 if (info->last_time + gr->pane->period <= now) { 228 hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index) 264 hud_pane_add_graph(pane, gr); 265 hud_pane_set_max_value(pane, 100); 293 if (info->last_time + gr->pane->period*1000 <= now) { 299 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; 329 hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main) 353 hud_pane_add_graph(pane, gr); 354 hud_pane_set_max_value(pane, 100); 365 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue [all...] |
| hud_sensors_temp.c | 166 if (sti->last_time + gr->pane->period <= now) { 199 * \param pane parent context. 204 hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name, 234 hud_pane_add_graph(pane, gr); 238 hud_pane_set_max_value(pane, 120); 241 hud_pane_set_max_value(pane, 12); 244 hud_pane_set_max_value(pane, 5000); 247 hud_pane_set_max_value(pane, 5000 /* mW */);
|
| hud_cpufreq.c | 100 if (cfi->last_time + gr->pane->period <= now) { 119 * \param pane parent context. 124 hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, 161 hud_pane_add_graph(pane, gr); 162 hud_pane_set_max_value(pane, 3000000 /* 3 GHz */);
|
| hud_diskstat.c | 129 if (dsi->last_time + gr->pane->period <= now) { 140 (((float) gr->pane->period / 1000) / 1000); 146 (((float) gr->pane->period / 1000) / 1000); 169 * \param pane parent context. 174 hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name, 207 hud_pane_add_graph(pane, gr); 208 hud_pane_set_max_value(pane, 100);
|
| hud_driver_query.c | 320 if (info->num_results && info->last_time + gr->pane->period <= now) { 371 struct hud_pane *pane, 409 hud_pane_add_graph(pane, gr); 410 pane->type = type; /* must be set before updating the max_value */ 412 if (pane->max_value < max_value) 413 hud_pane_set_max_value(pane, max_value); 424 struct hud_pane *pane, struct pipe_screen *screen, 447 hud_pipe_query_install(pbq, pane, query.name, query.query_type, 0,
|
| hud_nic.c | 184 if (nic->last_time + gr->pane->period <= now) { 195 float periodMs = gr->pane->period / 1000.0; 241 * \param pane parent context. 246 hud_nic_graph_install(struct hud_pane *pane, const char *nic_name, 283 hud_pane_add_graph(pane, gr); 284 hud_pane_set_max_value(pane, 100);
|
| /xsrc/external/mit/libXaw/dist/examples/ |
| pane.c | 36 Widget toplevel,pane,label,command; local 42 pane=XtVaCreateManagedWidget( "paned", panedWidgetClass, toplevel, 47 pane, XtNlabel, "quick", NULL); 53 pane, XtNlabel, "brown", NULL); 57 pane, XtNlabel, "fox", NULL); 60 commandWidgetClass, pane, 67 commandWidgetClass, pane, 75 commandWidgetClass, pane,
|
| /xsrc/external/mit/libXaw/dist/src/ |
| Paned.c | 83 #define PaneInfo(w) ((Pane)(w)->core.constraints) 105 #define SatisfiesRule1(pane, shrink) \ 106 (((shrink) && ((pane)->size != (pane)->min)) \ 107 || (!(shrink) && ((pane)->size != (pane)->max))) 109 #define SatisfiesRule2(pane) \ 110 (!(pane)->skip_adjust || (pane)->paned_adjusted_me) 112 #define SatisfiesRule3(pane, shrink) 604 Pane pane = PaneInfo(*childP); local 666 Pane pane; local 748 Pane pane = PaneInfo(*childP); local 764 Pane pane = PaneInfo(*(pw->composite.children + paneindex)); local 802 Pane pane = PaneInfo(*childP); local 956 Pane pane; local 1175 Pane pane = PaneInfo(pw->paned.whichadd); local 1180 Pane pane = PaneInfo(pw->paned.whichsub); local 1609 Pane pane = PaneInfo(w); local 1763 Pane pane = PaneInfo(w); local 1831 Pane pane = PaneInfo(*childP); local 1981 Pane pane = PaneInfo(widget); local 2003 Pane pane = PaneInfo(widget); local [all...] |
| /xsrc/external/mit/xload/dist/ |
| xload.c | 170 Widget toplevel, load, pane, label_wid, load_parent; local 285 pane = XtCreateManagedWidget ("paned", panedWidgetClass, 289 pane, NULL, ZERO); 300 load_parent = pane;
|
| /xsrc/external/mit/xfd/dist/ |
| xfd.c | 177 Widget toplevel, pane, toplabel, box, form; local 226 /* pane wrapping everything */ 227 pane = XtCreateManagedWidget ("pane", panedWidgetClass, toplevel, 231 toplabel = XtCreateManagedWidget ("fontname", labelWidgetClass, pane, 235 box = XtCreateManagedWidget ("box", boxWidgetClass, pane, NULL, ZERO); 250 pane, NULL, ZERO); 253 pane, NULL, ZERO); 255 rangeLabel = XtCreateManagedWidget ("range", labelWidgetClass, pane, 258 startLabel = XtCreateManagedWidget ("start", labelWidgetClass, pane, [all...] |
| /xsrc/external/mit/libXaw/dist/include/X11/Xaw/ |
| PanedP.h | 85 when it is not the bottom pane */ 90 Dimension preferred_size; /* The Preferred size of the pane. 92 Boolean resize_to_pref; /* resize this pane to its preferred size 104 } PanedConstraintsPart, *Pane; 111 * The Pane Stack Structure 115 Pane pane; /* The pane in this element on the stack */ member in struct:_PaneStack 154 Widget whichadd; /* Which pane to add changes to */ 155 Widget whichsub; /* Which pane to sub changes from * [all...] |
| /xsrc/external/mit/xman/dist/ |
| buttons.c | 219 Widget mytop, pane, hpane, mysections; /* Widgets */ local 246 pane = XtCreateManagedWidget("vertPane", panedWidgetClass, mytop, NULL, 252 pane, NULL, (Cardinal) 0); 297 pane, arglist, num_args); 309 pane, NULL, (Cardinal) 0);
|
| /xsrc/external/mit/editres/dist/ |
| widgets.c | 483 Widget rbox, pane, button, viewport, pane_child; 500 pane = XtCreateManagedWidget("pane", panedWidgetClass, 504 pane, NULL, 0); 505 pane_child = XtCreateManagedWidget("pane", panedWidgetClass, 514 CreateValueWidget(pane, node); 516 XtSetKeyboardFocus(pane, res_box->value_wid); /* send keyboard to value. */ 519 pane, NULL, ZERO); 473 Widget rbox, pane, button, viewport, pane_child; local
|