Searched defs:version (Results 176 - 200 of 223) sorted by relevance

123456789

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dedid.h39 /* EDID version */
113 /* extract information from version section */
178 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
400 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DAtapi.h247 UINT8 version; member in struct:__anon11605
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dglsl_shader.c12 * version 2.1 of the License, or (at your option) any later version.
27 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
29 * that LGPLv2 or any later version may be used, or where a choice of which version
93 unsigned int version; member in struct:constant_entry
490 const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version)
496 if (heap->entries[heap_idx].version <= version) return;
510 if (left_idx < heap->size && heap->entries[left_idx].version > versio
489 walk_constant_heap(const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version) argument
566 walk_constant_heap_clamped(const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version) argument
627 shader_glsl_load_constantsF(IWineD3DBaseShaderImpl *This, const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, UINT version) argument
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDevFdc.cpp13 * Foundation, in version 2 as it comes in the "COPYING" file of the
702 uint8_t version; member in struct:fdctrl_t
1897 /* Controller's version */
1898 fdctrl->fifo[0] = fdctrl->version;
2416 SSMR3PutU8(pSSM, pThis->version);
2468 SSMR3GetU8(pSSM, &pThis->version);
2551 SSMR3GetU8(pSSM, &pThis->version);
2862 pThis->version = 0x90; /* Intel 82078 controller */
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Deeprom.h103 #define AR5416_VER_MASK (eep->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK)
282 u16 version; member in struct:base_eep_header
312 u16 version; member in struct:base_eep_header_4k
425 u8 version; member in struct:modal_eep_4k_header
452 u16 version; member in struct:base_eep_ar9287_header
496 u8 version; member in struct:modal_eep_ar9287_header
/vbox/src/VBox/Additions/solaris/DRM/include/
H A Ddrm.h289 int version_major; /**< Major version */
290 int version_minor; /**< Minor version */
314 drm_version_t __user *version; member in struct:drm_list
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Ddrm.h188 int version_major; /**< Major version */
189 int version_minor; /**< Minor version */
213 struct drm_version __user *version; member in struct:drm_list
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dedid.h42 /* EDID version */
116 /* extract information from version section */
177 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
346 int version; member in struct:edid_version
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddirectx.c12 * version 2.1 of the License, or (at your option) any later version.
27 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
29 * that LGPLv2 or any later version may be used, or where a choice of which version
1214 /* Certain applications (Steam) complain if we report an outdated driver version. In general,
1215 * reporting a driver version is moot because we are not the Windows driver, and we have different
1218 * The driver version has the form "x.y.z.w".
1220 * "x" is the Windows version the driver is meant for:
1227 * "y" is the maximum Direct3D version th
1247 WORD version; /* version word ('y'), contained in low word of DriverVersion.HighPart */ member in struct:driver_version_information
5496 wined3d_init(struct wined3d *wined3d, UINT version, DWORD flags) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dedid.h42 /* EDID version */
116 /* extract information from version section */
177 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
346 int version; member in struct:edid_version
/vbox/src/libs/libxml2-2.6.31/
H A Dparser.c8 * Original 1.0 version:
461 errmsg = "Malformed declaration expecting version\n";
4673 (xmlStrEqual(ctxt->myDoc->version, SAX_COMPAT_MODE))) {
4741 (xmlStrEqual(ctxt->myDoc->version, SAX_COMPAT_MODE)))) {
5993 xmlChar *version; local
6015 version = xmlParseVersionInfo(ctxt);
6016 if (version == NULL)
6017 version = xmlCharStrdup(XML_DEFAULT_VERSION);
6024 ctxt->input->version = version;
9018 xmlChar *version = NULL; local
9292 xmlChar *version; local
[all...]
H A Dtree.c1120 * @version: xmlChar string giving the version of XML "1.0"
1127 xmlNewDoc(const xmlChar *version) { argument
1130 if (version == NULL)
1131 version = (const xmlChar *) "1.0";
1144 cur->version = xmlStrdup(version);
1145 if (cur->version == NULL) {
1219 DICT_FREE(cur->version)
4182 ret = xmlNewDoc(doc->version);
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileMac.cpp31 * of those above. If you wish to allow use of your version of this file only
33 * use your version of this file under the terms of the MPL, indicate your
36 * the provisions above, a recipient may use your version of this file under
3486 long version; local
3487 sRunningOSX = (::Gestalt(gestaltSystemVersion, &version) == noErr && version >= 0x00001000);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dglsl_shader.c12 * version 2.1 of the License, or (at your option) any later version.
27 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
29 * that LGPLv2 or any later version may be used, or where a choice of which version
84 unsigned int version; member in struct:constant_entry
473 const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version)
479 if (heap->entries[heap_idx].version <= version) return;
493 if (left_idx < heap->size && heap->entries[left_idx].version > versio
472 walk_constant_heap(const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version) argument
549 walk_constant_heap_clamped(const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version) argument
610 shader_glsl_load_constantsF(IWineD3DBaseShaderImpl *This, const struct wined3d_gl_info *gl_info, const float *constants, const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, UINT version) argument
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsjsxp.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dedid.h45 /* EDID version */
118 /* extract information from version section */
182 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
402 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dedid.h45 /* EDID version */
118 /* extract information from version section */
182 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
402 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dedid.h45 /* EDID version */
119 /* extract information from version section */
184 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
406 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dedid.h45 /* EDID version */
118 /* extract information from version section */
182 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
402 int version; member in struct:edid_version
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dedid.h45 /* EDID version */
118 /* extract information from version section */
182 case RATIO1_1: y = ((v->version > 1 || v->revision > 2) \
402 int version; member in struct:edid_version

Completed in 262 milliseconds

123456789