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

1 2 3 4 5 6 7 8 910

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nv20_state_tnl.c 36 #define LIGHT_MODEL_AMBIENT_R(side) \
37 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
39 #define LIGHT_AMBIENT_R(side, i) \
40 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
42 #define LIGHT_DIFFUSE_R(side, i) \
43 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
45 #define LIGHT_SPECULAR_R(side, i) \
46 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
48 #define MATERIAL_FACTOR_R(side) \
49 ((side) ? NV20_3D_MATERIAL_FACTOR_BACK_R :
239 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT; local
284 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_DIFFUSE; local
309 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SPECULAR; local
330 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SHININESS; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nv20_state_tnl.c 36 #define LIGHT_MODEL_AMBIENT_R(side) \
37 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
39 #define LIGHT_AMBIENT_R(side, i) \
40 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
42 #define LIGHT_DIFFUSE_R(side, i) \
43 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
45 #define LIGHT_SPECULAR_R(side, i) \
46 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
48 #define MATERIAL_FACTOR_R(side) \
49 ((side) ? NV20_3D_MATERIAL_FACTOR_BACK_R :
238 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT; local
282 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_DIFFUSE; local
306 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SPECULAR; local
326 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SHININESS; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/
quartzKeyboard.h 53 DarwinModifierNXKeyToNXKeycode(int key, int side);
quartzKeyboard.c 283 "DarwinBuildModifierMaps: XK_Mode_switch encountered, unable to determine side.\n");
495 // Left and right side have different keycodes but the same key and mask.
501 * side = 0 for left or 1 for right.
502 * Returns 0 if key+side is not a known modifier.
505 DarwinModifierNXKeyToNXKeycode(int key, int side)
509 retval = keyInfo.modifierKeycodes[key][side];
517 * Returns -1 if keycode+side is not a modifier key
523 int key, side; local
527 // search modifierKeycodes for this keycode+side
530 for (side = 0; side <= 1; side++)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/
quartzKeyboard.h 50 int DarwinModifierNXKeyToNXKeycode(int key, int side);
quartzKeyboard.c 280 ErrorF("DarwinBuildModifierMaps: XK_Mode_switch encountered, unable to determine side.\n");
462 // Left and right side have different keycodes but the same key and mask.
468 * side = 0 for left or 1 for right.
469 * Returns 0 if key+side is not a known modifier.
471 int DarwinModifierNXKeyToNXKeycode(int key, int side) {
474 retval = keyInfo.modifierKeycodes[key][side];
482 * Returns -1 if keycode+side is not a modifier key
486 int key, side; local
490 // search modifierKeycodes for this keycode+side
493 for (side = 0; side <= 1; side++)
    [all...]
  /xsrc/external/mit/libX11/dist/src/xlibi18n/
lcCharSet.c 43 /* Returns the charset with the given name (including side suffix).
62 /* Returns the charset with the given encoding (no side suffix) and
63 responsible for at least the given side (XlcGL or XlcGR).
68 XlcSide side)
77 && (list->charset->side == XlcGLGR || list->charset->side == side))
113 XOffsetOf(XlcCharSetRec, side), XlcGetMask },
167 /* Creates a new XlcCharSet, given its name (including side suffix) and
219 /* Fill in side, char_size, set_size. *
    [all...]
lcCT.c 308 * from the ESC sequence. These are side, char_size, set_size.
360 charset->side = XlcGL;
365 charset->side = XlcGR;
369 charset->side = XlcGR;
374 charset->side = XlcGLGR;
452 /* Creates a new XlcCharSet, given its name (including side suffix) and
652 if (charset->side == XlcGL) {
654 } else if (charset->side == XlcGR) {
875 XlcSide side; local
901 side = charset->side
1089 unsigned char side; local
    [all...]
XlcGeneric.h 64 XlcSide side; member in struct:_ExtdSegment
87 XlcSide side; member in struct:_CodeSetRec
XlcPublic.h 47 /* Every character set has a "side". It denotes the range of byte values for
83 #define XlcNSide "side"
88 /* Character set name, including side suffix */
92 /* XLFD encoding name, no side suffix */
97 XlcSide side; member in struct:_XlcCharSetRec
117 /* Returns the charset with the given name (including side suffix).
123 /* Returns the charset with the given encoding (no side suffix) and
124 responsible for at least the given side (XlcGL or XlcGR).
128 XlcSide side
lcGeneric.c 432 XlcSide side = XlcUnknown; local
447 snprintf(name, sizeof(name), "%s.%s", csd , "side");
452 side = XlcGLGR;
454 side = XlcGL;
457 side = XlcGR;
476 /* side */
477 charsetd->side = side ;
667 ret->side = XlcGL;
670 ret->side = XlcGR
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_vb_lighttmp.h 116 GLint side; local
165 /* Which side gets the diffuse & specular terms? */
169 side = 1;
180 side = 0;
185 COPY_3V(contrib, light->_MatAmbient[side]);
186 ACC_SCALE_SCALAR_3V(contrib, n_dot_VP, light->_MatDiffuse[side]);
187 ACC_SCALE_SCALAR_3V(sum[side], attenuation, contrib );
210 GLfloat spec_coef = lookup_shininess(ctx, side, n_dot_h);
213 ACC_SCALE_SCALAR_3V( spec[side], spec_coef,
214 light->_MatSpecular[side]);
296 GLint side; local
    [all...]
t_vb_light.c 89 * for both the front and back side of the primitive. Then, when the
94 * the side or sides which are actually required.
121 validate_shine_table( struct gl_context *ctx, GLuint side, GLfloat shininess )
127 assert(side < 2);
164 if (tnl->_ShineTable[side])
165 tnl->_ShineTable[side]->refcount--;
167 tnl->_ShineTable[side] = s;
375 /* The individual functions know about replaying side-effects
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_vb_lighttmp.h 115 GLint side; local
164 /* Which side gets the diffuse & specular terms? */
168 side = 1;
179 side = 0;
184 COPY_3V(contrib, light->_MatAmbient[side]);
185 ACC_SCALE_SCALAR_3V(contrib, n_dot_VP, light->_MatDiffuse[side]);
186 ACC_SCALE_SCALAR_3V(sum[side], attenuation, contrib );
209 GLfloat spec_coef = lookup_shininess(ctx, side, n_dot_h);
212 ACC_SCALE_SCALAR_3V( spec[side], spec_coef,
213 light->_MatSpecular[side]);
294 GLint side; local
    [all...]
t_vb_light.c 89 * for both the front and back side of the primitive. Then, when the
94 * the side or sides which are actually required.
121 validate_shine_table( struct gl_context *ctx, GLuint side, GLfloat shininess )
127 assert(side < 2);
164 if (tnl->_ShineTable[side])
165 tnl->_ShineTable[side]->refcount--;
167 tnl->_ShineTable[side] = s;
375 /* The individual functions know about replaying side-effects
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
arc.h 127 Arc::Arc( arc_side side, long _nuid )
135 setside( side );
mapdescv.cc 116 int side )
211 if( side == 0 ) {
224 } else if( side == 1 ) {
  /xsrc/external/mit/libX11/dist/modules/om/generic/
omXChar.c 338 if (font_set->side != charset->side) {
339 if (font_set->side == XlcGL)
341 else if (font_set->side == XlcGR)
  /xsrc/external/mit/libXext/dist/include/X11/extensions/
multibuf.h 87 int side; /* Mono, Left, Right */ member in struct:__anon5808
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/doc/html/
resize.js 65 sidenav = $("#side-nav");
69 $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } });
  /xsrc/external/mit/glu/dist/src/libutil/
project.c 112 float forward[3], side[3], up[3]; local
125 /* Side = forward x up */
126 cross(forward, up, side);
127 normalize(side);
129 /* Recompute up as: up = side x forward */
130 cross(side, forward, up);
133 m[0][0] = side[0];
134 m[1][0] = side[1];
135 m[2][0] = side[2];
  /xsrc/external/mit/libX11/dist/modules/lc/def/
lcDefConv.c 126 char side)
128 CodeSet codeset = side ? state->GR_codeset : state->GL_codeset;
434 if ((charset->side == XlcGL) || (charset->side == XlcGLGR)) {
445 if (!found && ((charset->side == XlcGR) || (charset->side == XlcGLGR))) {
505 if ((charset->side == XlcGL) || (charset->side == XlcGLGR)) {
516 if (!found && ((charset->side == XlcGR) || (charset->side == XlcGLGR)))
    [all...]
  /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/
WL_bind_wayland_display.spec 39 wl_buffer objects. On the server side, this extension also
88 To bind a server side wl_display to an EGLDisplay, call
93 To unbind a server side wl_display from an EGLDisplay, call
  /xsrc/external/mit/MesaLib.old/dist/docs/specs/
WL_bind_wayland_display.spec 39 wl_buffer objects. On the server side, this extension also
88 To bind a server side wl_display to an EGLDisplay, call
93 To unbind a server side wl_display from an EGLDisplay, call
  /xsrc/external/mit/libX11/dist/modules/lc/gen/
lcGenConv.c 83 #define GR 0x80 /* begins right-side (non-ascii) region */
84 #define GL 0x7f /* ends left-side (ascii) region */
202 if (codeset->side == XlcC0 || codeset->side == XlcGL ||
203 codeset->side == XlcC1 || codeset->side == XlcGR) {
221 if (codeset->side == XlcC1 || codeset->side == XlcGR) {
341 if (codeset->side != XlcNONE || byteM == NULL)
689 XlcSide side)
1068 XlcSide side; local
1759 XlcSide side; local
2093 XlcSide side; local
    [all...]

Completed in 151 milliseconds

1 2 3 4 5 6 7 8 910