Searched defs:value (Results 201 - 225 of 457) sorted by relevance

1234567891011>>

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dcompiler.h951 outb(unsigned short port, unsigned char value) argument
955 xf86WriteMmio8((void *) ioBase, port, value);
959 outw(unsigned short port, unsigned short value) argument
963 xf86WriteMmio16Le((void *) ioBase, port, value);
967 outl(unsigned short port, unsigned int value) argument
971 xf86WriteMmio32Le((void *) ioBase, port, value);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dcompiler.h951 outb(unsigned short port, unsigned char value) argument
955 xf86WriteMmio8((void *) ioBase, port, value);
959 outw(unsigned short port, unsigned short value) argument
963 xf86WriteMmio16Le((void *) ioBase, port, value);
967 outl(unsigned short port, unsigned int value) argument
971 xf86WriteMmio32Le((void *) ioBase, port, value);
H A Deventstr.h177 uint32_t min; /**< Minimum value */
178 uint32_t max; /**< Maximum value */
179 double value; /**< Current value */; member in struct:_DeviceChangedEvent::__anon6460
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dcompiler.h952 outb(unsigned short port, unsigned char value) argument
956 xf86WriteMmio8((void *) ioBase, port, value);
960 outw(unsigned short port, unsigned short value) argument
964 xf86WriteMmio16Le((void *) ioBase, port, value);
968 outl(unsigned short port, unsigned int value) argument
972 xf86WriteMmio32Le((void *) ioBase, port, value);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzFind.c304 UInt32 value = items[i]; local
305 if (value <= subValue)
306 value = kEmptyHashValue;
308 value -= subValue;
309 items[i] = value;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzFind.c285 UInt32 value = items[i]; local
286 if (value <= subValue)
287 value = kEmptyHashValue;
289 value -= subValue;
290 items[i] = value;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dcompat.c263 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags,
267 fmtint(char *buffer, size_t *currlen, size_t maxlen, long value, int base,
314 long value; local
423 value = va_arg(args, int);
425 value = va_arg(args, long int);
427 value = va_arg (args, long long);
429 value = va_arg (args, int);
430 fmtint(buffer, &currlen, maxlen, value, 10, min, max, flags);
435 value = va_arg(args, unsigned int);
437 value
553 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags, int min, int max) argument
587 fmtint(char *buffer, size_t *currlen, size_t maxlen, long value, int base, int min, int max, int flags) argument
681 round(long double value) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsnmp_msg.h74 /* object value ASN1 type */
76 /* object value length (in u8_t) */
78 /* object value */
79 void *value; member in struct:snmp_varbind
85 /* encoding object value length length */
91 /* encoding object value length */
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Ddhcp.c175 static void dhcp_option_byte(struct dhcp *dhcp, u8_t value);
176 static void dhcp_option_short(struct dhcp *dhcp, u16_t value);
177 static void dhcp_option_long(struct dhcp *dhcp, u32_t value);
1280 dhcp_option_byte(struct dhcp *dhcp, u8_t value) argument
1283 dhcp->msg_out->options[dhcp->options_out_len++] = value;
1287 dhcp_option_short(struct dhcp *dhcp, u16_t value) argument
1290 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0xff00U) >> 8);
1291 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t) (value & 0x00ffU);
1295 dhcp_option_long(struct dhcp *dhcp, u32_t value) argument
1298 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value
1451 u32_t value = 0; local
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dsnmp_msg.h91 /* object value ASN1 type */
93 /* object value length (in u8_t) */
95 /* object value */
96 void *value; member in struct:snmp_varbind
102 /* encoding object value length length */
108 /* encoding object value length */
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dasn1.c296 * Parse value of ASN.1 boolean
299 * @ret value Value, or negative error
304 uint8_t value; member in struct:__anon15079
313 /* Extract value */
315 return boolean->value;
319 * Parse value of ASN.1 integer
322 * @v value Value to fill in
325 int asn1_integer ( const struct asn1_cursor *cursor, int *value ) {
337 /* Initialise value according to sign byte */
338 *value
[all...]
/vbox/src/VBox/Main/src-all/
H A DQMTranslatorImpl.cpp53 static uint16_t func_BE2H_U16(uint16_t value) argument
55 return RT_BE2H_U16(value);
/vbox/src/VBox/Devices/Graphics/testcase/
H A Ddump-vmwgfx.c87 uint64_t value; member in struct:drm_vmw_getparam_arg
304 Arg.value = 0;
313 printf("%30s: %#llx -- enabled: %s\n", pszParam, Arg.value,
314 Arg.value == 0 ? "no" : Arg.value == 1 ? "yes" : "huh?");
318 printf("%30s: %#llx -- major=%llu minor=%llu\n", pszParam, Arg.value, Arg.value >> 16, Arg.value & 0xffff);
322 printf("%30s: %#llx\n", pszParam, Arg.value);
323 DisplayFlags(g_aVmSvgaCapFlags, (uint32_t)Arg.value, 3
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dx509.h69 /** Signature value */
70 struct asn1_bit_string value; member in struct:x509_signature
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIApplianceEditorWidget.cpp72 return m_childItems.value(row);
153 bool HardwareItem::setData(int column, const QVariant &value, int role) argument
167 m_checkState = static_cast<Qt::CheckState>(value.toInt());
175 m_strOrigValue = value.toString();
177 m_strConfigValue = value.toString();
611 m_strConfigValue = QString::number(e->value());
636 /* Get the index for the config value column. */
846 bool VirtualSystemModel::setData(const QModelIndex &idx, const QVariant &value, int role) argument
853 return item->setData(idx.column(), value, role);
H A DUIPortForwardingTable.cpp187 if (itemData(i).value<KNATProtocol>() == p)
198 return itemData(currentIndex()).value<KNATProtocol>();
310 setValue(port.value());
316 return value();
363 bool setData(const QModelIndex &index, const QVariant &value, int iRole = Qt::EditRole);
438 /* Return wrong value: */
459 case UIPortForwardingDataType_HostPort: return m_dataList[index.row()].hostPort.value();
461 case UIPortForwardingDataType_GuestPort: return m_dataList[index.row()].guestPort.value();
510 /* Return wrong value: */
514 bool UIPortForwardingModel::setData(const QModelIndex &index, const QVariant &value, in argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcrut_api.h158 int value; member in struct:__anon16144
205 void CRUT_APIENTRY crutSendMenuEvent( CRUTAPI *crut_api, int menuID, int value );
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_shaders.c108 void PACK_APIENTRY crPackUniform1fv(GLint location, GLsizei count, const GLfloat *value) argument
112 int packet_length = sizeof(int)+sizeof(GLenum)+sizeof(location)+sizeof(count) + count*sizeof(*value);
119 crMemcpy(data_ptr, value, count*sizeof(*value));
124 void PACK_APIENTRY crPackUniform1iv(GLint location, GLsizei count, const GLint *value) argument
128 int packet_length = sizeof(int)+sizeof(GLenum)+sizeof(location)+sizeof(count) + count*sizeof(*value);
135 crMemcpy(data_ptr, value, count*sizeof(*value));
140 void PACK_APIENTRY crPackUniform2fv(GLint location, GLsizei count, const GLfloat *value) argument
144 int packet_length = sizeof(int)+sizeof(GLenum)+sizeof(location)+sizeof(count) + 2*count*sizeof(*value);
156 crPackUniform2iv(GLint location, GLsizei count, const GLint *value) argument
172 crPackUniform3fv(GLint location, GLsizei count, const GLfloat *value) argument
188 crPackUniform3iv(GLint location, GLsizei count, const GLint *value) argument
204 crPackUniform4fv(GLint location, GLsizei count, const GLfloat *value) argument
220 crPackUniform4iv(GLint location, GLsizei count, const GLint *value) argument
236 crPackUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
253 crPackUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
270 crPackUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
287 crPackUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
305 crPackUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
323 crPackUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
341 crPackUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
359 crPackUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
377 crPackUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
657 crPackUniform1fvSWAP(GLint location, GLsizei count, const GLfloat *value) argument
668 crPackUniform1ivSWAP(GLint location, GLsizei count, const GLint *value) argument
678 crPackUniform2fvSWAP(GLint location, GLsizei count, const GLfloat *value) argument
688 crPackUniform2ivSWAP(GLint location, GLsizei count, const GLint * value) argument
698 crPackUniform3fvSWAP(GLint location, GLsizei count, const GLfloat *value) argument
708 crPackUniform3ivSWAP(GLint location, GLsizei count, const GLint *value) argument
718 crPackUniform4fvSWAP(GLint location, GLsizei count, const GLfloat *value) argument
728 crPackUniform4ivSWAP(GLint location, GLsizei count, const GLint *value) argument
738 crPackUniformMatrix2fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
749 crPackUniformMatrix3fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
760 crPackUniformMatrix4fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
771 crPackUniformMatrix2x3fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
782 crPackUniformMatrix3x2fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
793 crPackUniformMatrix2x4fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
804 crPackUniformMatrix4x2fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
815 crPackUniformMatrix3x4fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
826 crPackUniformMatrix4x3fvSWAP(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_init.c207 crStateShareContext(GLboolean value) argument
212 if (value)
797 crStateChromiumParameteriCR( GLenum target, GLint value )
803 crStateChromiumParameterfCR( GLenum target, GLfloat value )
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/
H A Dath.h68 static inline int32_t sign_extend32(uint32_t value, int index) argument
71 return (int32_t)(value << shift) >> shift;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Depic100.c170 unsigned short value; local
172 value = read_eeprom(i);
173 eeprom[i] = value;
174 sum += value;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_create.c863 ctf_add_enumerator(ctf_file_t *fp, ctf_id_t enid, const char *name, int value) argument
907 dmd->dmd_value = value;
1019 enumcmp(const char *name, int value, void *arg) argument
1025 name, &bvalue) == CTF_ERR || value != bvalue);
1029 enumadd(const char *name, int value, void *arg) argument
1034 name, value) == CTF_ERR);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageControlVM.cpp604 /* Parse 'name=value' */
896 Bstr value = a->argv[2]; local
898 CHECK_ERROR(vrdeServer, SetVRDEProperty(Bstr("VideoChannel/Quality").raw(), value.raw()));
916 /* Parse 'name=value' */
H A DVBoxManageMisc.cpp730 Bstr value; local
732 value.asOutParam()));
733 if (!value.isEmpty())
734 RTPrintf("Value: %ls\n", value.raw());
736 RTPrintf("No value set!\n");
766 Bstr value; local
768 value.asOutParam()));
769 if (!value.isEmpty())
770 RTPrintf("Value: %ls\n", value.raw());
772 RTPrintf("No value se
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Dorders.c85 int value = buffer[(*offset)++]; local
86 int two_byte = value & 0x80;
88 if (value & 0x40) /* sign bit */
89 value |= ~0x3f;
91 value &= 0x3f;
94 value = (value << 8) | buffer[(*offset)++];
96 return value;

Completed in 163 milliseconds

1234567891011>>