| /xsrc/external/mit/libX11/dist/src/ |
| H A D | SetTxtProp.c | 63 XTextProperty *tp, 66 XChangeProperty (dpy, w, property, tp->encoding, tp->format, 67 PropModeReplace, tp->value, tp->nitems); 73 XTextProperty *tp) 75 XSetTextProperty (dpy, w, tp, XA_WM_NAME); 81 XTextProperty *tp) 83 XSetTextProperty (dpy, w, tp, XA_WM_ICON_NAME); 89 XTextProperty *tp) 60 XSetTextProperty(Display * dpy,Window w,XTextProperty * tp,Atom property) argument 70 XSetWMName(Display * dpy,Window w,XTextProperty * tp) argument 78 XSetWMIconName(Display * dpy,Window w,XTextProperty * tp) argument 86 XSetWMClientMachine(Display * dpy,Window w,XTextProperty * tp) argument [all...] |
| H A D | GetTxtProp.c | 63 XTextProperty *tp, 76 tp->value = prop; 77 tp->encoding = actual_type; 78 tp->format = actual_format; 79 tp->nitems = nitems; 83 tp->value = NULL; 84 tp->encoding = None; 85 tp->format = 0; 86 tp->nitems = 0; 93 XTextProperty *tp) 60 XGetTextProperty(Display * display,Window window,XTextProperty * tp,Atom property) argument 90 XGetWMName(Display * dpy,Window w,XTextProperty * tp) argument 98 XGetWMIconName(Display * dpy,Window w,XTextProperty * tp) argument 106 XGetWMClientMachine(Display * dpy,Window w,XTextProperty * tp) argument [all...] |
| H A D | TextToStr.c | 42 XTextProperty *tp, 51 int datalen = (int) tp->nitems; /* for convenience */ 56 if (tp->encoding != XA_STRING || tp->format != 8) return False; 68 for (cp = (char *) tp->value, i = datalen; i > 0; cp++, i--) { 87 memcpy (start, (char *) tp->value, tp->nitems); 41 XTextPropertyToStringList(XTextProperty * tp,char *** list_return,int * count_return) argument
|
| H A D | LiHosts.c | 127 char *tp = (char *) (bp + SIZEOF(xHostEntry)); local in function:XListHosts 129 if (tp > (char *) (buf + nbytes - op->length)) 131 vp = memchr(tp, 0, op->length); 134 sip->type = tp; 135 sip->typelength = vp - tp;
|
| H A D | GetHints.c | 235 XTextProperty tp; local in function:XGetCommand 239 if (!XGetTextProperty (dpy, w, &tp, XA_WM_COMMAND)) return 0; 241 if (tp.encoding != XA_STRING || tp.format != 8) { 242 Xfree (tp.value); 250 if (tp.nitems && (tp.value[tp.nitems - 1] == '\0')) tp.nitems--; 256 if (!XTextPropertyToStringList (&tp, [all...] |
| /xsrc/external/mit/xkeyboard-config/dist/scripts/ |
| H A D | pull_translations.sh | 15 rsync -Lrtvz translationproject.org::tp/latest/$project/ po
|
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/ |
| H A D | dmxprop.c | 125 XTextProperty tp; local in function:dmxPropertyCheckOtherServers 147 if (XGetTextProperty(dpy, win, &tp, atom) && tp.nitems) { 148 if (!strncmp((char *)tp.value, DMX_IDENT, strlen(DMX_IDENT))) { 151 if (!strcmp(list[i], (char *)tp.value)) { 159 tp.value, dmxScreen->name); 161 list[count-1] = malloc(tp.nitems + 2); 162 strncpy(list[count-1], (char *)tp.value, tp.nitems + 1); 164 XFree(tp 187 XTextProperty tp; local in function:dmxPropertyCheckOtherWindows [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/perf/ |
| H A D | u_trace_priv.h | 58 void * u_trace_append(struct u_trace *ut, void *cs, const struct u_tracepoint *tp);
|
| H A D | u_trace.c | 62 const struct u_tracepoint *tp; member in struct:u_trace_event 335 if (!evt->tp) 356 if (evt->tp->print) { 357 fprintf(utctx->out, "%016"PRIu64" %+9d: %s: ", ns, delta, evt->tp->name); 358 evt->tp->print(utctx->out, evt->payload); 360 fprintf(utctx->out, "%016"PRIu64" %+9d: %s\n", ns, delta, evt->tp->name); 364 if (evt->tp->perfetto) { 365 evt->tp->perfetto(utctx->pctx, ns, chunk->flush_data, evt->payload); 550 * Append a trace event, returning pointer to buffer of tp->payload_sz 555 u_trace_append(struct u_trace *ut, void *cs, const struct u_tracepoint *tp) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_reg_type.h | 104 brw_reg_type_is_unsigned_integer(enum brw_reg_type tp) argument 106 return tp == BRW_REGISTER_TYPE_UB || 107 tp == BRW_REGISTER_TYPE_UW || 108 tp == BRW_REGISTER_TYPE_UD || 109 tp == BRW_REGISTER_TYPE_UQ;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/ |
| H A D | nvc0_shader_state.c | 172 struct nvc0_program *tp = nvc0->tctlprog; local in function:nvc0_tctlprog_validate 174 if (tp && nvc0_program_validate(nvc0, tp)) { 175 if (tp->tp.tess_mode != ~0) { 177 PUSH_DATA (push, tp->tp.tess_mode); 181 PUSH_DATA (push, tp->code_base); 183 PUSH_DATA (push, tp->num_gprs); 185 tp 200 struct nvc0_program *tp = nvc0->tevlprog; local in function:nvc0_tevlprog_validate [all...] |
| H A D | nvc0_program.c | 288 nvc0_tp_get_tess_mode(struct nvc0_program *tp, struct nv50_ir_prog_info *info) argument 290 if (info->prop.tp.outputPrim == PIPE_PRIM_MAX) { 291 tp->tp.tess_mode = ~0; 294 switch (info->prop.tp.domain) { 296 tp->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_ISOLINES; 299 tp->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_TRIANGLES; 302 tp [all...] |
| H A D | nvc0_program.h | 58 } tp; member in struct:nvc0_program
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/ |
| H A D | nvc0_shader_state.c | 199 struct nvc0_program *tp = nvc0->tctlprog; local in function:nvc0_tctlprog_validate 201 if (tp && nvc0_program_validate(nvc0, tp)) { 202 if (tp->tp.tess_mode != ~0) { 204 PUSH_DATA (push, tp->tp.tess_mode); 208 nvc0_program_sp_start_id(nvc0, 2, tp); 210 PUSH_DATA (push, tp->num_gprs); 212 tp 227 struct nvc0_program *tp = nvc0->tevlprog; local in function:nvc0_tevlprog_validate [all...] |
| H A D | nvc0_program.c | 291 nvc0_tp_get_tess_mode(struct nvc0_program *tp, struct nv50_ir_prog_info_out *info) argument 293 if (info->prop.tp.outputPrim == PIPE_PRIM_MAX) { 294 tp->tp.tess_mode = ~0; 297 switch (info->prop.tp.domain) { 299 tp->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_ISOLINES; 302 tp->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_TRIANGLES; 305 tp [all...] |
| H A D | nvc0_program.h | 46 bool layer_viewport_relative; /* also applies go gp and tp */ 61 } tp; member in struct:nvc0_program
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | win32_util.c | 29 gettimeofday(struct timeval* tp, void* tzp) argument 34 tp->tv_sec = tb.time; 35 tp->tv_usec = tb.millitm * 1000;
|
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | mapdescv.cc | 124 REAL *tp = &tmp[0][0][0]; local in function:Mapdesc::calcPartialVelocity 143 REAL *ti = tp; 145 REAL *til = tp + idist; 164 REAL *til = tp + idist - istride; 167 for( REAL *ti = tp; ti != til; ti += istride ) 175 REAL *tjl = tp + jdist - jstride; 178 for( REAL *tj = tp; tj != tjl; tj += jstride ) 189 for( REAL *ti = tp, *mi = mp, *til = tp + id; ti != til; ti += istride, mi += mistride )
|
| /xsrc/external/mit/xterm/dist/ |
| H A D | xutf8.c | 184 const XTextProperty * tp, 195 size_t datalen = tp->nitems; 198 if (tp->format != 8) 201 if (tp->encoding == XA_STRING) 203 else if (tp->encoding == XA_UTF8_STRING(dpy)) 215 for (cp = (char *) tp->value, i = datalen; i != 0; cp++, i--) { 227 len = l1countUtf8Bytes((char *) tp->value, datalen); 236 memcpy(start, (char *) tp->value, datalen); 238 l1utf8copy(start, (char *) tp->value, datalen); 183 Xutf8TextPropertyToTextList(Display * dpy,const XTextProperty * tp,char *** list_return,int * count_return) argument
|
| /xsrc/external/mit/xtrans/dist/ |
| H A D | Xtransint.h | 416 struct timeval tp; local in function:prmsg 417 gettimeofday(&tp, 0); 419 tp.tv_sec * 1000 + tp.tv_usec / 1000);
|
| /xsrc/external/mit/ctwm/dist/ |
| H A D | animate.c | 57 struct timeval tp; local in function:TryToAnimate 66 gettimeofday(&tp, NULL); 67 gap = ((tp.tv_sec - lastsec) * 1000000) + (tp.tv_usec - lastusec); 70 lastusec, (long)tp.tv_sec, (long)tp.tv_usec, gap); 82 lastsec = tp.tv_sec; 83 lastusec = tp.tv_usec;
|
| /xsrc/external/mit/mesa-demos/dist/src/xdemos/ |
| H A D | xdemo.c | 37 XTextProperty tp; local in function:make_window 148 XStringListToTextProperty(&title, 1, &tp); 150 XSetWMProperties(dpy, win, &tp, &tp, 0, 0, &sh, 0, 0);
|
| /xsrc/external/mit/libdrm/dist/tests/amdgpu/ |
| H A D | syncobj_tests.c | 232 struct timespec tp; local in function:amdgpu_syncobj_timeline_test 273 clock_gettime(CLOCK_MONOTONIC, &tp); 274 timeout = tp.tv_sec * 1000000000ULL + tp.tv_nsec;
|
| /xsrc/external/mit/xf86dga/dist/ |
| H A D | dga.c | 23 struct timeval tp; local in function:GetTimeInMillis 25 gettimeofday(&tp, NULL); 26 return(tp.tv_sec * 1000) + (tp.tv_usec / 1000);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/ |
| H A D | iris_context.c | 44 struct timespec tp; local in function:get_time 46 clock_gettime(CLOCK_MONOTONIC, &tp); 48 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
|