HomeSort by: relevance | last modified time | path
    Searched defs:up (Results 1 - 17 of 17) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_gfx_cs.c 120 struct si_sdma_upload *up = &ctx->sdma_uploads[i]; local
123 assert(up->src_offset % 4 == 0 && up->dst_offset % 4 == 0 &&
124 up->size % 4 == 0);
126 u_box_1d(up->src_offset, up->size, &box);
127 ctx->dma_copy(&ctx->b, &up->dst->b.b, 0, up->dst_offset, 0, 0,
128 &up->src->b.b, 0, &box);
si_buffer.c 556 struct si_sdma_upload *up = &sctx->sdma_uploads[i]; local
558 if (up->dst != buf)
561 assert(up->src == stransfer->staging);
562 assert(box->x > up->dst_offset);
563 up->size = box->x + box->width - up->dst_offset;
577 struct si_sdma_upload *up = local
579 up->dst = up->src = NULL;
580 si_resource_reference(&up->dst, buf)
    [all...]
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
monotonizer.h 55 enum dir { down, same, up, none }; enumerator in enum:Monotonizer::dir
subdivider.h 105 enum dir { down, same, up, none }; enumerator in enum:Subdivider::dir
  /xsrc/external/mit/glu/dist/src/libtess/
tessmono.c 74 GLUhalfEdge *up, *lo; local
81 up = face->anEdge;
82 assert( up->Lnext != up && up->Lnext->Lnext != up );
84 for( ; VertLeq( up->Dst, up->Org ); up = up->Lprev
    [all...]
  /xsrc/external/mit/glu/dist/src/libutil/
project.c 112 float forward[3], side[3], up[3]; local
119 up[0] = upx;
120 up[1] = upy;
121 up[2] = upz;
125 /* Side = forward x up */
126 cross(forward, up, side);
129 /* Recompute up as: up = side x forward */
130 cross(side, forward, up);
137 m[0][1] = up[0]
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/redbook/
shadowmap.c 64 GLfloat up[] = { 0.0, 0.0, 1.0 }; variable
256 up[0], up[1], up[2] );
287 * Set up projective texture matrix. We use the GL_MODELVIEW matrix
297 up[0], up[1], up[2] );
325 up[0], up[1], up[2] ) local
    [all...]
  /xsrc/external/mit/xf86-input-keyboard/dist/src/
hurd_kbd.c 62 boolean_t up; /* MOUSE_LEFT .. MOUSE_RIGHT */ member in union:__anon6661::__anon6662
71 #define MOUSE_LEFT 1 /* mouse left button up/down */
75 #define KEYBD_EVENT 5 /* key up/down */
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_build_util.h 143 DataArray(BuildUtil *bld) : up(bld), array(0), arrayIdx(0), baseAddr(0),
164 BuildUtil *up; member in class:nv50_ir::BuildUtil::DataArray
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_build_util.h 140 DataArray(BuildUtil *bld) : up(bld) { }
159 BuildUtil *up; member in class:nv50_ir::BuildUtil::DataArray
  /xsrc/external/mit/xf86-input-mouse/dist/src/
hurd_mouse.c 63 boolean_t up; /* MOUSE_LEFT .. MOUSE_RIGHT */ member in union:__anon6669::__anon6670
72 #define MOUSE_LEFT 1 /* mouse left button up/down */
76 #define KEYBD_EVENT 5 /* key up/down */
112 buttons = (buttons & 6) |(event->value.up ? 0 : 1);
115 buttons = (buttons & 5) |(event->value.up ? 0 : 2);
118 buttons = (buttons & 3) |(event->value.up ? 0 : 4) ;
  /xsrc/external/mit/xf86-input-synaptics/dist/src/
synproto.h 68 Bool up; member in struct:SynapticsHwState
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xf86Cursor.c 60 xf86EdgePtr left, right, up, down; member in struct:__anon9921
399 if ((edge = xf86ScreenLayout[(*pScreen)->myNum].up))
626 pLayout->up = AddEdge(pLayout->up,
811 pLayout->up = AddEdge(pLayout->up, min, max,
832 if (pLayout->up)
833 FillOutEdge(pLayout->up, pScreen->width);
853 free(sl->up);
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/
xf86Cursor.c 62 xf86EdgePtr left, right, up, down; member in struct:__anon10517
405 if((edge = xf86ScreenLayout[(*pScreen)->myNum].up))
590 /* need to have this set up with a config file option */
642 pLayout->up = AddEdge(pLayout->up,
814 pLayout->up = AddEdge(pLayout->up, min, max,
835 if(pLayout->up)
836 FillOutEdge(pLayout->up, pScreen->width);
853 free(sl->up);
    [all...]
  /xsrc/external/mit/libX11/dist/src/xcms/
LRGB.c 1126 long target, up, down;
1139 up = ((target >> shift) * 0xFFFF) / max_color;
1140 if (up < target) {
1141 down = up;
1142 up = (MIN((down >> shift) + 1, max_color) * 0xFFFF) / max_color;
1144 down = (MAX((up >> shift) - 1, 0) * 0xFFFF) / max_color;
1146 answer->value = ((up - target) < (target - down) ? up : down);
1118 long target, up, down; local
  /xsrc/external/mit/bitmap/dist/
Graphics.c 608 bit first, up, down=0; local
628 first = up = GetBit(BW->bitmap.image, x, to_y);
631 if (up != down)
633 up =down;
654 bit first, down, up=0; local
676 up = GetBit(BW->bitmap.image, x, y);
677 if (down != up)
679 down = up;
681 if(first != up)
  /xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
vmwgfx_tex_video.c 379 * vmwgfx_video_setup_comp - Set up port priv members for a composite
385 * Tries to allocate and set up port priv resources to perform a composite
439 * vmwgfx_video_setup_coord_matrix - Set up a bounce - to destination
630 unsigned char *yp, *up, *vp; local
636 up = buf + offsets[2];
643 memcpy(umap + w * i / 2, up, w / 2);
645 up += pitches[2];
724 * For redirected windows, we need to fix up the destination coordinates.
770 * scale up a dimenstion that was previously downscaled in the color
1027 /* Add the adaptors supported by our hardware. First, set up the atom
    [all...]

Completed in 16 milliseconds