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

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/src/compiler/nir/
nir_opt_algebraic.c 1167 * ('ibitfield_extract', 'value', 'offset', 'bits') => ('bcsel', ('ult', 31, 'bits'), 'value', ('ibfe', 'value', 'offset', 'bits'))
1168 * ('ubitfield_extract', 'value', 'offset', 'bits') => ('bcsel', ('ult', 31, 'bits'), 'value', ('ubfe', 'value', 'offset', 'bits'))
1171 * ('ubfe', 'value', 'offset', ('iand', 31, 'bits')) => ('ubfe', 'value', 'offset', 'bits')
1172 * ('ubfe', 'value', ('iand', 31, 'offset'), 'bits') => ('ubfe', 'value', 'offset', 'bits'
    [all...]
  /xsrc/external/mit/freetype/dist/src/psaux/
pserror.c 45 FT_Error value )
48 *error = value;
  /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/bin/
meson-options.py 22 for (name, value) in oi.options.items():
23 if isinstance(value, coredata.UserStringOption):
25 value.value,
28 elif isinstance(value, coredata.UserBooleanOption):
30 'true' if value.value else 'false',
33 elif isinstance(value, coredata.UserIntegerOption):
35 str(value.value),
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/bin/
meson-options.py 22 for (name, value) in oi.options.items():
23 if isinstance(value, coredata.UserStringOption):
25 value.value,
28 elif isinstance(value, coredata.UserBooleanOption):
30 'true' if value.value else 'false',
33 elif isinstance(value, coredata.UserIntegerOption):
35 str(value.value),
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/glx/
glxbyteorder.h 48 #define bswap_16(value) \
49 ((((value) & 0xff) << 8) | ((value) >> 8))
51 #define bswap_32(value) \
52 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
53 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
55 #define bswap_64(value) \
56 (((uint64_t)bswap_32((uint32_t)((value) & 0xffffffff)) \
58 (uint64_t)bswap_32((uint32_t)((value) >> 32)))
  /xsrc/external/mit/MesaLib/src/panfrost/midgard/
midgard_nir_algebraic.c 36 { &search0_0_0.value, &search0_0_1.value },
46 { &search0_0.value, &search0_0_0.value },
58 { &search0_0_0.value, &search0_0_0.value },
68 { &replace0_0.value, &search0_0_1.value },
74 { &search0, &replace0.value, 0 },
213 { &search1_0.value },
    [all...]
  /xsrc/external/mit/freetype/dist/builds/atari/
ATARI.H 13 #define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) value
17 #define FT_ENC_TAG( value, a, b, c, d ) value
  /xsrc/external/mit/MesaLib/src/util/
driconf_static.h 25 const char *value; member in struct:driconf_option
59 { .name = "vk_x11_strict_image_count", .value = "true" },
73 { .name = "force_glsl_extensions_warn", .value = "true" },
74 { .name = "disable_blend_func_extended", .value = "true" },
75 { .name = "disable_arb_gpu_shader5", .value = "true" },
80 { .name = "force_glsl_extensions_warn", .value = "true" },
81 { .name = "disable_blend_func_extended", .value = "true" },
82 { .name = "disable_arb_gpu_shader5", .value = "true" },
87 { .name = "allow_glsl_extension_directive_midshader", .value = "true" },
88 { .name = "dual_color_blend_by_location", .value = "true" }
    [all...]
  /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...]
  /xsrc/external/mit/xterm/dist/
uxterm 62 eval 'value=$'$name
63 if test -n "$value" ; then
64 case $value in
72 value="" # ignore
85 if test -n "$value" ; then
86 value=`echo "${value}" |sed -e 's/[.@].*//'`.UTF-8
102 value=`locale -a | awk -v "expect=$expect" 'BEGIN {
124 test -z "$value" && value="en_US.UTF-8
    [all...]
koi8rxterm 62 eval 'value=$'$name
63 if test -n "$value" ; then
64 case $value in
74 value=ru_RU.KOI8-R
86 if test -n "$value" ; then
87 value=`echo ${value} |sed -e 's/[.@].*//'`.KOI8-R
90 value="ru_RU.KOI8-R"
93 eval ${name}=${value}
102 echo "$whoami tried to use locale $value by setting \$$name" >&
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/dri/
dri_query_renderer.c 13 unsigned int *value)
19 value[0] =
24 value[0] =
29 value[0] =
36 value[0] =
40 value[0] = MIN2(ov, value[0]);
45 value[0] =
51 value[0] =
57 value[0]
    [all...]
  /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/MesaLib/dist/src/etnaviv/drm/
etnaviv_gpu.c 44 return req.value;
82 uint64_t *value)
89 *value = gpu->model;
92 *value = gpu->revision;
95 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_0);
98 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_1);
101 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_2);
104 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_3);
107 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_4);
110 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_5)
    [all...]
  /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.old/src/compiler/nir/
nir_opt_algebraic.c 52 { &search0_0.value, &search0_1.value },
70 { &replace0_1_0.value },
78 { &search0_0.value, &replace0_1.value },
96 { &search0_0.value, &search1_1.value },
108 { &replace0_1_0.value },
116 { &replace1_0_1_0.value },
124 { &search0_0.value, &replace1_0_1.value }
    [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...]
  /xsrc/external/mit/MesaLib/src/compiler/glsl/
ir_expression_operation_constant.h 6 data.u[c] = ~ op[0]->value.u[c];
9 data.i[c] = ~ op[0]->value.i[c];
12 data.u64[c] = ~ op[0]->value.u64[c];
15 data.i64[c] = ~ op[0]->value.i64[c];
27 data.b[c] = !op[0]->value.b[c];
39 data.u[c] = -((int) op[0]->value.u[c]);
42 data.i[c] = -op[0]->value.i[c];
45 data.f[c] = -op[0]->value.f[c];
48 data.d[c] = -op[0]->value.d[c];
51 data.u64[c] = -((int64_t) op[0]->value.u64[c])
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_trace/
tr_dump_defines.h 48 trace_dump_query_type(unsigned value)
53 trace_dump_enum(util_str_query_type(value, false));
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_trace/
tr_dump_defines.h 48 trace_dump_query_type(unsigned value)
53 trace_dump_enum(util_str_query_type(value, FALSE));
  /xsrc/external/mit/libdrm/dist/etnaviv/
etnaviv_gpu.c 44 return req.value;
82 uint64_t *value)
89 *value = gpu->model;
92 *value = gpu->revision;
95 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_0);
98 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_1);
101 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_2);
104 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_3);
107 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_4);
110 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_5)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/util/
00-mesa-defaults.conf 40 value CDATA #REQUIRED>
48 <option name="force_glsl_extensions_warn" value="true" />
49 <option name="disable_blend_func_extended" value="true" />
53 <option name="force_glsl_extensions_warn" value="true" />
54 <option name="disable_blend_func_extended" value="true" />
58 <option name="allow_glsl_extension_directive_midshader" value="true" />
60 <option name="dual_color_blend_by_location" value="true" />
64 <option name="allow_glsl_extension_directive_midshader" value="true" />
66 <option name="dual_color_blend_by_location" value="true" />
70 <option name="allow_glsl_extension_directive_midshader" value="true" /
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/glx/
glxhash.h 11 void **value);
13 void *value);
16 void **value);
18 void **value);
  /xsrc/external/mit/MesaLib.old/dist/src/glx/
glxhash.h 11 void **value);
13 void *value);
16 void **value);
18 void **value);

Completed in 71 milliseconds

1 2 3 4 5 6 7 8 91011>>