HomeSort by: relevance | last modified time | path
    Searched refs:tp (Results 1 - 25 of 157) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/libX11/dist/src/
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)
    [all...]
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)
    [all...]
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);
LiHosts.c 127 char *tp = (char *) (bp + SIZEOF(xHostEntry)); local
129 if (tp > (char *) (buf + nbytes - op->length))
131 vp = memchr(tp, 0, op->length);
134 sip->type = tp;
135 sip->typelength = vp - tp;
GetHints.c 235 XTextProperty tp; local
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, &argv, &argc))
    [all...]
  /xsrc/external/mit/xkeyboard-config/dist/scripts/
pull_translations.sh 15 rsync -Lrtvz translationproject.org::tp/latest/$project/ po
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/
dmxprop.c 125 XTextProperty tp; local
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.value)
187 XTextProperty tp; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/perf/
u_trace_priv.h 58 void * u_trace_append(struct u_trace *ut, void *cs, const struct u_tracepoint *tp);
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)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_reg_type.h 104 brw_reg_type_is_unsigned_integer(enum brw_reg_type tp)
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/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_shader_state.c 199 struct nvc0_program *tp = nvc0->tctlprog; local
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 = nvc0->tcp_empty
227 struct nvc0_program *tp = nvc0->tevlprog; local
    [all...]
nvc0_program.c 291 nvc0_tp_get_tess_mode(struct nvc0_program *tp, struct nv50_ir_prog_info_out *info)
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->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_QUADS
    [all...]
nvc0_program.h 46 bool layer_viewport_relative; /* also applies go gp and tp */
61 } tp; member in struct:nvc0_program
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_shader_state.c 172 struct nvc0_program *tp = nvc0->tctlprog; local
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 = nvc0->tcp_empty
200 struct nvc0_program *tp = nvc0->tevlprog; local
    [all...]
nvc0_program.c 288 nvc0_tp_get_tess_mode(struct nvc0_program *tp, struct nv50_ir_prog_info *info)
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->tp.tess_mode = NVC0_3D_TESS_MODE_PRIM_QUADS
    [all...]
nvc0_program.h 58 } tp; member in struct:nvc0_program
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
win32_util.c 29 gettimeofday(struct timeval* tp, void* tzp)
34 tp->tv_sec = tb.time;
35 tp->tv_usec = tb.millitm * 1000;
win32_x11.h 230 #define XSetWMName(display, window, tp) \
231 SetWindowText(window, (const char *)(tp)->value)
235 #define XSetWMIconName(display, window, tp) \
236 XSetWMName(display, window, tp)
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
mapdescv.cc 124 REAL *tp = &tmp[0][0][0]; local
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/
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);
  /xsrc/external/mit/xtrans/dist/
Xtransint.h 416 struct timeval tp; local
417 gettimeofday(&tp, 0);
419 tp.tv_sec * 1000 + tp.tv_usec / 1000);
  /xsrc/external/mit/ctwm/dist/
animate.c 57 struct timeval tp; local
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/MesaLib.old/dist/src/gallium/drivers/iris/
iris_context.c 44 struct timespec tp; local
46 clock_gettime(CLOCK_MONOTONIC, &tp);
48 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
  /xsrc/external/mit/libdrm/dist/tests/amdgpu/
syncobj_tests.c 232 struct timespec tp; local
273 clock_gettime(CLOCK_MONOTONIC, &tp);
274 timeout = tp.tv_sec * 1000000000ULL + tp.tv_nsec;
  /xsrc/external/mit/mesa-demos/dist/src/xdemos/
xdemo.c 37 XTextProperty tp; local
148 XStringListToTextProperty(&title, 1, &tp);
150 XSetWMProperties(dpy, win, &tp, &tp, 0, 0, &sh, 0, 0);

Completed in 31 milliseconds

1 2 3 4 5 6 7