HomeSort by: relevance | last modified time | path
    Searched defs:value (Results 1 - 25 of 993) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/xf86-video-qxl/dist/src/
qxl_option_helpers.c 16 int value; local
20 return xf86GetOptValInteger(options, token, &value) ? value : 0;
35 const char* value = getenv(env_name); local
37 if (!value) {
40 if (strcmp(value, "0") == 0 ||
41 strcasecmp(value, "off") == 0 ||
42 strcasecmp(value, "false") == 0 ||
43 strcasecmp(value, "no") == 0) {
46 if (strcmp(value, "1") == 0 |
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/tests/
enum_strings.cpp 30 int value; member in struct:enum_info
40 _mesa_enum_to_string(everything[i].value));
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/tests/
enum_strings.cpp 30 int value; member in struct:enum_info
40 _mesa_enum_to_string(everything[i].value));
  /xsrc/external/mit/libX11/dist/src/
ChKeyCon.c 39 register unsigned long *value = values; local
48 *value++ = value_list->key_click_percent;
51 *value++ = value_list->bell_percent;
54 *value++ = value_list->bell_pitch;
57 *value++ = value_list->bell_duration;
60 *value++ = value_list->led;
63 *value++ = value_list->led_mode;
66 *value++ = value_list->key;
69 *value++ = value_list->auto_repeat_mode;
72 req->length += (nvalues = value - values)
    [all...]
ReconfWin.c 43 register unsigned long *value = values; local
54 *value++ = changes->x;
57 *value++ = changes->y;
60 *value++ = changes->width;
63 *value++ = changes->height;
66 *value++ = changes->border_width;
69 *value++ = changes->sibling;
72 *value++ = changes->stack_mode;
74 req->length += (nvalues = value - values);
Window.c 39 register unsigned long *value = values; local
43 *value++ = attributes->background_pixmap;
46 *value++ = attributes->background_pixel;
49 *value++ = attributes->border_pixmap;
52 *value++ = attributes->border_pixel;
55 *value++ = attributes->bit_gravity;
58 *value++ = attributes->win_gravity;
61 *value++ = attributes->backing_store;
64 *value++ = attributes->backing_planes;
67 *value++ = attributes->backing_pixel
    [all...]
  /xsrc/external/mit/xf86-video-nsc/dist/src/gfx/
tv_geode.c 67 unsigned long value; local
69 value = READ_VID32(SC1400_DISPLAY_CONFIG);
71 value |= SC1400_DCFG_TVOUT_EN;
73 value &= ~(SC1400_DCFG_TVOUT_EN);
74 WRITE_VID32(SC1400_DISPLAY_CONFIG, value);
93 unsigned long value; local
95 value = READ_VID32(SC1400_TVENC_CC_CONTROL);
96 value &= ~(0x0005F);
98 value |= 0x51;
99 WRITE_VID32(SC1400_TVENC_CC_CONTROL, value);
118 unsigned long value; local
    [all...]
init_gu2.c 157 unsigned long value; local
166 value = (unsigned long)(INW(0xAC1E));
168 return (value);
236 unsigned long value; local
245 value = (unsigned long)(INW(0xAC1E)) & 0xFFl;
247 return (value << 19);
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_binary.c 47 unsigned value = util_le32_to_cpu(*(uint32_t *)(data + i + 4)); local
55 conf->num_vgprs = MAX2(conf->num_vgprs, (G_00B028_VGPRS(value) + 1) * 8);
57 conf->num_vgprs = MAX2(conf->num_vgprs, (G_00B028_VGPRS(value) + 1) * 4);
59 conf->num_sgprs = MAX2(conf->num_sgprs, (G_00B028_SGPRS(value) + 1) * 8);
61 conf->float_mode = G_00B028_FLOAT_MODE(value);
62 conf->rsrc1 = value;
65 conf->lds_size = MAX2(conf->lds_size, G_00B02C_EXTRA_LDS_SIZE(value));
67 conf->num_shared_vgprs = G_00B02C_SHARED_VGPR_CNT(value);
68 conf->rsrc2 = value;
71 conf->num_shared_vgprs = G_00B12C_SHARED_VGPR_CNT(value);
    [all...]
  /xsrc/external/mit/libxshmfence/dist/src/
xshmfence_pthread.h 32 int value; member in struct:xshmfence
xshmfence_pthread.c 35 * Return value: 0 on success and -1 on error (in which case, errno
41 if (f->value == 0) {
42 f->value = 1;
59 * Return value: 0 on success and -1 on error (in which case, errno
65 while (f->value == 0) {
77 * Return value: 1 if @f is triggered, else returns 0.
81 int value; local
84 value = f->value;
86 return value;
    [all...]
  /xsrc/external/mit/mkfontscale/dist/
constlist.h 27 const char *value; member in struct:_ConstList
list.h 31 char *value; member in struct:_List
hash.h 28 char *value; member in struct:_HashBucket
38 int putHash(HashTablePtr table, char *key, char *value, int prio);
  /xsrc/external/mit/xf86-video-geode/dist/src/gfx/
init_gu2.c 44 unsigned long value; local
53 value = (unsigned long) (INW(0xAC1E));
55 return (value);
123 unsigned long value; local
132 value = (unsigned long) (INW(0xAC1E)) & 0xFFl;
134 return (value << 19);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_fence.h 43 uint64_t value; member in struct:d3d12_fence
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
points.c 179 GLenum value = (GLenum) params[0]; local
180 if (value != GL_LOWER_LEFT && value != GL_UPPER_LEFT) {
185 if (ctx->Point.SpriteOrigin == value)
188 ctx->Point.SpriteOrigin = value;
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
dxil_buffer.c 83 uint32_t value = (data & max) | tag; local
86 if (!dxil_buffer_emit_bits(b, value, width))
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/
knobs_init.h 40 uint32_t value = 0; local
42 value = strtoul(pOverride, &pStopped, 0);
45 knobValue = static_cast<T>(value);
68 uint32_t value = 0; local
70 value = strtoul(pOverride, &pStopped, 0);
73 knobValue = value != 0;
79 float value = knobValue; local
80 if (sscanf(pOverride, "%f", &value))
82 knobValue = value;
101 knob.Value(knobValue)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
points.c 179 GLenum value = (GLenum) params[0]; local
180 if (value != GL_ZERO && value != GL_S && value != GL_R) {
185 if (ctx->Point.SpriteRMode == value)
188 ctx->Point.SpriteRMode = value;
202 GLenum value = (GLenum) params[0]; local
203 if (value != GL_LOWER_LEFT && value != GL_UPPER_LEFT) {
208 if (ctx->Point.SpriteOrigin == value)
    [all...]
  /xsrc/external/mit/freetype/dist/src/gxvalid/
gxvmort4.c 73 16bit value array |
75 | value | <-------+
89 GXV_LookupValueDesc value; local
99 value.u = FT_NEXT_USHORT( p );
101 return value;
  /xsrc/external/mit/libX11/dist/src/xcms/
cmsProp.c 54 * _XcmsGetElement -- get an element value from the property passed
72 unsigned long value;
76 value = *((unsigned long *)(*pValue)) & 0xFFFFFFFF;
81 value = *((unsigned short *)(*pValue));
86 value = *((unsigned char *) (*pValue));
91 value = 0;
94 return(value);
70 unsigned long value; local
  /xsrc/external/mit/mesa-demos/dist/src/util/
shaderutil.h 13 GLuint size; /**< number of value[] elements: 1, 2, 3 or 4 */
15 GLfloat value[16]; member in struct:uniform_info
25 GLuint size; /**< number of value[] elements: 1, 2, 3 or 4 */
  /xsrc/external/mit/xf86-video-ati/xorg-server-copy/
tda9885.c 62 CARD8 value; local
64 I2C_WriteRead(&(t->d), NULL, 0, &value, 1);
65 t->after_reset=value & 1;
66 t->afc_status=(value >> 1) & 0xf;
67 t->fm_carrier=(value>>5)& 1;
68 t->vif_level=(value >>6) & 1;
69 t->afc_win=(value >> 7)&1;
  /xsrc/external/mit/xf86-video-chips/dist/util/
mRegs.c 11 int i, value, index = 0; local
35 value = 0;
96 value = (value << 4) | (c - '0'); /*ASCII assumed*/
98 value = (value << 4) | (c - 'A'+10); /*ASCII assumed*/
100 value = (value << 4) | (c - 'a'+10); /*ASCII assumed*/
102 if ((cport != 'Z') && (cport != 'Y')) outb(port,value&0xFF);
105 printf("%cR%X: 0x%X\n", cport, value & 0xFF,
    [all...]

Completed in 15 milliseconds

1 2 3 4 5 6 7 8 91011>>