Searched refs:tp (Results 1 - 25 of 159) sorted by relevance

1234567

/xsrc/external/mit/libX11/dist/src/
H A DSetTxtProp.c63 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 DGetTxtProp.c63 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 DTextToStr.c42 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 DLiHosts.c127 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 DGetHints.c235 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 Dpull_translations.sh15 rsync -Lrtvz translationproject.org::tp/latest/$project/ po
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/
H A Ddmxprop.c125 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 Du_trace_priv.h58 void * u_trace_append(struct u_trace *ut, void *cs, const struct u_tracepoint *tp);
H A Du_trace.c62 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 Dbrw_reg_type.h104 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 Dnvc0_shader_state.c172 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 Dnvc0_program.c288 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 Dnvc0_program.h58 } tp; member in struct:nvc0_program
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_shader_state.c199 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 Dnvc0_program.c291 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 Dnvc0_program.h46 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 Dwin32_util.c29 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 Dmapdescv.cc124 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 Dxutf8.c184 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 DXtransint.h416 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 Danimate.c57 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 Dxdemo.c37 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 Dsyncobj_tests.c232 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 Ddga.c23 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 Diris_context.c44 struct timespec tp; local in function:get_time
46 clock_gettime(CLOCK_MONOTONIC, &tp);
48 return tp.tv_sec + tp.tv_nsec / 1000000000.0;

Completed in 12 milliseconds

1234567