Searched defs:value (Results 1 - 25 of 30) sorted by relevance

12

/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_Option.h43 const char *option_value); /* Option value string */
50 const char *option_value_empty); /* Case if Option has no value */
53 const char * const name; /* Option value keyword */
54 int value; /* Option keyword's ordinal value */ member in struct:__anon19
62 int option_value_bad, /* Case if Option value is bad */
63 const fbc_Optkeywd_t *keywd_table); /* Table of Option value keywds */
H A Dfbc_Option.c109 const char *option_value) /* Option value string */
163 * Retrieve the specified Option entry value from the specified config
164 * section. Return the value string or else the "not found" or "value
174 const char *option_value_empty) /* Case if Option has no value */
193 * Return the Option value string, else the value-empty string
206 * Retrieve the specified Option entry value from the specified config
207 * section. Evaluate the value string as a keyword and return the
208 * corresponding ordinal value
301 int value; /* Boolean Option value */ local
[all...]
H A Dfbc_getargs.h53 int value; /* Keyword's ordinal value */ member in struct:__anon27
110 const char *option_value, /* Option entry value string */
188 * array of option strings that provide the default value(s).
H A Dfbc_xorg.h82 const char *value; /* Option entry value string */ member in struct:__anon43
107 #define FBC_NO_DefaultDepth (0) /* No DefaultDepth value */
141 /* -g <gamma-value> */
144 #define FBC_NO_Gamma (-1.0) /* No Gamma correction value */
216 float mon_gamma_green; /* Green gamma value, else undefined */
217 float mon_gamma_blue; /* Blue gamma value, else undefined */
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/vts/ast/
H A Dmapper.c91 unsigned int value, chipType; local
106 value = ast_mmio_read32(0x1207c);
107 chipType = value & 0x0300;
H A Dastio.h54 uchar_t value; member in struct:__anon95
H A Dtools.c732 register uint_t value; local
736 value = ((red >> 5) & 0x7) << 5;
737 value |= ((green >> 5) & 0x7) << 2;
738 value |= (blue >> 6) & 0x3;
742 value = ((red >> 3) & 0x1f) << 10;
743 value |= ((green >> 3) & 0x1f) << 5;
744 value |= (blue >> 3) & 0x1f;
748 value = ((red >> 3) & 0x1f) << 11;
749 value |= ((green >> 2) & 0x3f) << 5;
750 value |
1039 ast_store_mmio( register uint_t const port, register uint_t const value) argument
1094 ast_set_index_reg( register uchar_t const offset, register uchar_t const index, register uchar_t const value) argument
1128 ast_set_reg( register uchar_t const offset, register uchar_t const value) argument
1150 register uint_t value; local
1189 register uint_t value; local
[all...]
/solaris-x11-s12/open-src/kernel/i915/src/
H A Dintel_sideband.c124 u32 value = 0; local
136 value = SBI_CTL_DEST_ICLK | SBI_CTL_OP_CRRD;
138 value = SBI_CTL_DEST_MPHY | SBI_CTL_OP_IORD;
139 I915_WRITE(SBI_CTL_STAT, value | SBI_BUSY);
150 void intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value, argument
164 I915_WRITE(SBI_DATA, value);
H A Dintel_lvds.c469 uint64_t value)
477 if (value == DRM_MODE_SCALE_NONE) {
482 if (intel_connector->panel.fitting_mode == value) {
486 intel_connector->panel.fitting_mode = (int) value;
845 /* use the module option value if specified */
849 /* BIOS should set the proper LVDS register value at boot, but
850 * in reality, it doesn't set the value when the lid is closed;
851 * we need to check "the value to be set" in VBT when LVDS
467 intel_lvds_set_property(struct drm_connector *connector, struct drm_property *property, uint64_t value) argument
H A Dintel_crt.c687 uint64_t value)
683 intel_crt_set_property(struct drm_connector *connector, struct drm_property *property, uint64_t value) argument
H A Dintel_ringbuffer.h109 * last_retired_head is set to -1 after the value is consumed so
127 u32 value);
135 * seen value is good enough. Note that the seqno will always be
238 int reg, u32 value)
241 regs[reg] = value;
237 intel_write_status_page(struct intel_ring_buffer *ring, int reg, u32 value) argument
H A Dintel_ringbuffer.c287 static int gen7_ring_fbc_flush(struct intel_ring_buffer *ring, u32 value) argument
301 intel_ring_emit(ring, value);
371 u32 value)
374 I915_WRITE_TAIL(ring, value);
1634 u32 value)
1656 I915_WRITE_TAIL(ring, value);
1681 * Post-Sync Operation field is a value of 1h or 3h."
1754 * Post-Sync Operation field is a value of 1h or 3h."
370 ring_write_tail(struct intel_ring_buffer *ring, u32 value) argument
1633 gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring, u32 value) argument
H A Di915_dma.c921 int value; local
930 value = dev->pdev->irq ? 1 : 0;
933 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
936 value = READ_BREADCRUMB(dev_priv);
939 value = dev->pci_device;
942 value = 1;
945 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
948 value = dev_priv->overlay ? 1 : 0;
951 value = 1;
955 value
[all...]
H A Dintel_dp.c309 * hrawclk value and divide by 2 and use that
918 u32 value)
927 DRM_DEBUG_KMS("mask %08x value %08x status %08x control %08x\n",
928 mask, value,
932 if (_wait_for((I915_READ(pp_stat_reg) & mask) == value, 5000, 10)) {
958 /* Read the current pp_control value, unlocking the register if it
1253 /* We can't rely on the value tracked for the DP register in
916 ironlake_wait_panel_status(struct intel_dp *intel_dp, u32 mask, u32 value) argument
/solaris-x11-s12/open-src/app/cmap_compact/sun-src/
H A Dcmcutil.c170 int value; local
173 value = CMC_MAGIC;
174 (void)fwrite(&value, sizeof(int), 1, f);
175 value = CMC_VERSION;
176 (void)fwrite(&value, sizeof(int), 1, f);
185 int value; local
188 if (!fread(&value, sizeof(int), 1, f) ||
189 value != CMC_MAGIC)
191 Actual = %x", CMC_MAGIC, value);
194 if (!fread(&value, sizeo
[all...]
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A DFlags.c209 * name is already present, replace the value, etc. of the existing
219 char *val, /* Ptr to new option value string */
301 * name is already present, replace the value, etc. of the existing
375 xf86newOption(char *name, char *value) argument
386 opt->opt_val = value;
512 * value string pairs. The size of the array is specified by a
513 * non-negative "count" value or else by a NULL as the last element
661 * Get the option value token, if any, and comment string, if any
733 * Write the Option line, which may include an Option value
/solaris-x11-s12/open-src/kernel/drm/src/
H A Ddrm_drv.c300 static int drm_copy_field(char *buf, size_t *buf_len, const char *value) argument
305 len = strlen(value);
309 /* let userspace know exact length of driver value (which could be
311 *buf_len = strlen(value);
315 if (copy_to_user(buf, value, len))
/solaris-x11-s12/open-src/lib/libXext/sun-src/src/
H A DXPanoramiX.c484 XrmValue value; local
502 "XineramaDefaultFramebuffer", &vtype, &value))
504 if (value.size < sizeof(buffer)) {
505 strncpy(buffer, value.addr, value.size);
506 buffer[value.size] = 0;
516 if ((fb < 0) || (fb >= fbs)) /* fb value not valid */
519 &vtype, &value))
521 if (value.size < sizeof(buffer)) {
522 strncpy(buffer, value
[all...]
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/vts/mga/
H A Dtools.c748 register uint_t value; local
752 value = ((red >> 5) & 0x7) << 5;
753 value |= ((green >> 5) & 0x7) << 2;
754 value |= (blue >> 6) & 0x3;
758 value = ((red >> 3) & 0x1f) << 10;
759 value |= ((green >> 3) & 0x1f) << 5;
760 value |= (blue >> 3) & 0x1f;
764 value = ((red >> 3) & 0x1f) << 11;
765 value |= ((green >> 2) & 0x3f) << 5;
766 value |
833 register uint32_t value; local
1060 register uint32_t value = *uint32ptr; local
1073 mga_put_uint32( register uint32_t volatile *const uint32ptr, register uint32_t const value) argument
[all...]
/solaris-x11-s12/open-src/app/mkcookie/sun-src/
H A Dmkcookie.c475 int value = rand(); local
476 auth[i] = (char) (value & 0xff);
/solaris-x11-s12/open-src/kernel/sys/drm/
H A Ddrm_io32.h78 uint32_t value; member in struct:drm_stats_32::__anon139
/solaris-x11-s12/open-src/xserver/xorg/sun-src/IA/
H A Dinteractive.c631 SetIAPrivate(int *value) argument
633 ia_nice = *value;
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconfig/
H A Dfbconfig.c162 scf_value_t *value; /* SCF property value */ local
178 value = scf_value_create(scf_handle);
179 if ((value == NULL) ||
201 (scf_property_get_value(prop, value) == -1) ||
202 (scf_value_get_astring(value, pathname, sizeof(pathname)) == -1)) {
204 PrintError("SCF value retrieval, %s",
230 if (value != NULL) {
231 scf_value_destroy(value);
342 * pointer, return the (struct stat).st_rdev value
[all...]
/solaris-x11-s12/open-src/app/xlock/sun-src/
H A Dresource.c201 {"-saturation value", "saturation of color ramp"},
380 XrmValue value; local
389 if (XrmGetResource(database, fullname, fullclass, &type, &value)) {
390 string = value.addr;
391 len = value.size;
/solaris-x11-s12/open-src/app/accessx/sun-src/
H A DAccessX.c539 "*TimeOutScale.value: 2",
551 "*MouseMaxSpeedScale.value: 300",
555 "*MouseAccelScale.value: 20",
559 "*MouseDelayScale.value: 3",
563 "*KRGRepeatRateScale.value: 5",
567 "*KRGRepeatDelayScale.value: 66",
573 "*KRGSlowKeysDelayScale.value: 3",
577 "*KRGDebounceScale.value: 3",
958 /* a floating point number which is the value the scale really */
960 /* between both representations independent of what the value */
965 ConvertScaleValueToUnits(int value, short decimalPoints) argument
994 ConvertUnitsToScaleValue(float value, short decimalPoints) argument
3216 int i, value; local
3381 int i, value; local
[all...]

Completed in 436 milliseconds

12