Searched refs:address (Results 1 - 25 of 323) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DAlloc.h12 void MyFree(void *address);
19 void MidFree(void *address);
21 void BigFree(void *address);
26 #define MidFree(address) MyFree(address)
28 #define BigFree(address) MyFree(address)
H A DAlloc.c38 void MyFree(void *address) argument
41 if (address != 0)
42 fprintf(stderr, "\nFree; count = %10d, addr = %8X", --g_allocCount, (unsigned)address);
44 free(address);
59 void MidFree(void *address) argument
62 if (address != 0)
65 if (address == 0)
67 VirtualFree(address, 0, MEM_RELEASE);
115 void BigFree(void *address) argument
118 if (address !
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprcmon.h42 ** Interface to cached monitors. Cached monitors use an address to find a
66 ** Like PR_EnterMonitor except use the "address" to find a monitor in the
68 ** with "address". Note that you must PR_CExitMonitor the address to
73 NSPR_API(PRMonitor*) PR_CEnterMonitor(void *address);
76 ** Like PR_ExitMonitor except use the "address" to find a monitor in the
79 NSPR_API(PRStatus) PR_CExitMonitor(void *address);
82 ** Like PR_Wait except use the "address" to find a monitor in the
85 NSPR_API(PRStatus) PR_CWait(void *address, PRIntervalTime timeout);
88 ** Like PR_Notify except use the "address" t
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dnvs.h40 * @v address Address from which to read
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address,
52 * @v address Address to which to write
59 int ( * write ) ( struct nvs_device *nvs, unsigned int address,
63 extern int nvs_read ( struct nvs_device *nvs, unsigned int address,
65 extern int nvs_write ( struct nvs_device *nvs, unsigned int address,
H A Dpcivpd.h18 /** PCI VPD address register */
124 int address; member in struct:pci_vpd_cache
158 return ( vpd->cache.address >= 0 );
168 vpd->cache.address = -1;
172 extern int pci_vpd_read ( struct pci_vpd *vpd, unsigned int address,
174 extern int pci_vpd_write ( struct pci_vpd *vpd, unsigned int address,
177 unsigned int *address, size_t *len );
179 size_t len, unsigned int *address );
H A Dnvo.h28 unsigned int address; member in struct:nvo_block
46 size_t address, size_t len,
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dmemops.h7 static INLINE void drimemsetio(void* address, int c, int size) argument
12 *((char *)address + i)=c;
14 memset(address,c,size);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/nvs/
H A Dnvs.c37 * @v address Starting address
41 static size_t nvs_frag_len ( struct nvs_device *nvs, unsigned int address, argument
51 ( address & ( nvs->block_size - 1 ) ) )
65 * @v address Address from which to read
70 int nvs_read ( struct nvs_device *nvs, unsigned int address, argument
83 frag_len = nvs_frag_len ( nvs, address, len );
86 if ( ( rc = nvs->read ( nvs, address, data, frag_len ) ) != 0 )
91 address += ( frag_len >> nvs->word_len_log2 );
102 * @v address Addres
107 nvs_verify( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
135 nvs_write( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
[all...]
H A Dspi.c33 * Munge SPI device address into command
36 * @v address Address
37 * @v munge_address Device requires address munging
41 * of the command byte as address bit A8, rather than having a
42 * two-byte address. This function takes care of generating the
46 unsigned int address,
48 return ( command | ( ( ( address >> 8 ) & munge_address ) << 3 ) );
79 * @v address Address from which to read
84 int spi_read ( struct nvs_device *nvs, unsigned int address, argument
88 unsigned int command = spi_command ( SPI_READ, address,
45 spi_command( unsigned int command, unsigned int address, int munge_address ) argument
111 spi_write( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
[all...]
H A Dnvsvpd.c49 unsigned int address; local
58 if ( ( rc = pci_vpd_find ( &nvsvpd->vpd, field, &address,
71 address, ( address + max_len ) );
76 if ( ( rc = pci_vpd_read ( &nvsvpd->vpd, address, data, len ) ) != 0 ) {
80 address, ( address + len ), strerror ( rc ) );
101 unsigned int address; local
106 if ( ( rc = pci_vpd_find ( &nvsvpd->vpd, field, &address,
119 address, ( addres
150 unsigned int address; local
218 unsigned int address; local
[all...]
H A Dthreewire.c37 * @v address Address from which to read
42 int threewire_read ( struct nvs_device *nvs, unsigned int address, argument
51 device, len, address );
53 if ( ( rc = bus->rw ( bus, device, THREEWIRE_READ, address,
67 * @v address Address from which to read
72 int threewire_write ( struct nvs_device *nvs, unsigned int address, argument
81 device, len, address );
92 if ( ( rc = bus->rw ( bus, device, THREEWIRE_WRITE, address,
109 * Autodetect device address length
118 DBGC ( device, "3wire %p autodetecting address lengt
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Daccept.c24 @param [in] address Address of a buffer to receive the remote network address.
27 of the remote network address buffer. Upon return,
28 contains the length of the remote network address.
38 struct sockaddr * address,
72 address,
103 It returns the remote network address to the caller if requested.
111 @param [in] address Address of a buffer to receive the remote network address.
114 of the remote network address buffe
35 AcceptWork( int s, BOOLEAN bBlockingAllowed, struct sockaddr * address, socklen_t * address_len ) argument
122 accept( int s, struct sockaddr * address, socklen_t * address_len ) argument
151 AcceptNB( int s, struct sockaddr * address, socklen_t * address_len ) argument
[all...]
H A Dgetpeername.c19 Get the remote address
21 The getpeername routine retrieves the remote system address from the socket.
29 @param [out] address Network address to receive the remote system address
31 @param [in] address_len Length of the remote network address structure
40 struct sockaddr * address,
59 // Get the remote address
62 address,
38 getpeername( int s, struct sockaddr * address, socklen_t * address_len ) argument
H A Dgetsockname.c19 Get the local socket address.
21 The getsockname routine retrieves the local system address from the socket.
29 @param [out] address Network address to receive the local system address
31 @param [in] address_len Length of the local network address structure
40 struct sockaddr * address,
59 // Get the local socket address
62 address,
38 getsockname( int s, struct sockaddr * address, socklen_t * address_len ) argument
H A Dconnect.c22 socket on the local or remote system using the specified address.
45 @param [in] address Network address of the remote system
47 @param [in] address_len Length of the remote network address
56 const struct sockaddr * address,
84 address,
54 connect( int s, const struct sockaddr * address, socklen_t address_len ) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcnetdb.cpp50 { address = his.address; }
54 address = his.address;
55 switch (address.raw.family)
57 case PR_AF_INET: address.inet.port = port; break;
58 case PR_AF_INET6: address.ipv6.port = port; break;
72 (void)PR_InitializeNetAddr(how, port, &address);
77 void RCNetAddr::operator=(const RCNetAddr& his) { address = his.address; }
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprcmon.c67 void* address; member in struct:MonitorCacheEntryStr
81 static void (*OnMonitorRecycle)(void *address);
83 #define HASH(address) \
84 ((PRUint32) ( ((PRUptrdiff)(address) >> 2) ^ \
85 ((PRUptrdiff)(address) >> 10) ) \
178 ** Compute new hash mask value. This value is used to mask an address
196 PRUintn hash = HASH(p->address);
222 ** Lookup a monitor cache entry by address. Return a pointer to the
225 static MonitorCacheEntry **LookupMonitorCacheEntry(void *address) argument
230 hash = HASH(address);
248 CreateMonitor(void *address) argument
318 PR_CEnterMonitor(void *address) argument
410 PR_CSetOnMonitorRecycle(void (*callback)(void *address)) argument
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestFunctionLookup.java55 Number address;
63 address = (Number)tuple.get(0).getValue();
64 if (address instanceof Integer) {
65 int addr = (Integer)address;
68 long addr = (Long)address;
93 Number address;
97 address = (Number)tuple.get(0).getValue();
98 if (address instanceof Integer) {
99 int addr = (Integer)address;
102 long addr = (Long)address;
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpcivpd.c66 * @v address Address to read
70 static int pci_vpd_read_dword ( struct pci_vpd *vpd, int address, argument
83 ( vpd->cache.address == address ) ) {
89 pci_write_config_word ( pci, ( cap + PCI_VPD_ADDRESS ), address );
102 PCI_ARGS ( pci ), address, htonl ( *data ) );
105 vpd->cache.address = address;
116 PCI_ARGS ( pci ), address, cap );
124 * @v address Addres
128 pci_vpd_write_dword( struct pci_vpd *vpd, int address, uint32_t data ) argument
178 pci_vpd_read( struct pci_vpd *vpd, unsigned int address, void *buf, size_t len ) argument
220 pci_vpd_write( struct pci_vpd *vpd, unsigned int address, const void *buf, size_t len ) argument
266 pci_vpd_dump( struct pci_vpd *vpd, unsigned int address, size_t len ) argument
293 pci_vpd_find_tag( struct pci_vpd *vpd, unsigned int tag, unsigned int *address, size_t *len ) argument
348 pci_vpd_find( struct pci_vpd *vpd, unsigned int field, unsigned int *address, size_t *len ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Datomic.h79 inline_atomic_set_bit( u_int *address, u_int setmask ) argument
81 __with_interrupts_disabled( *address |= setmask );
85 inline_atomic_clear_bit( u_int *address, u_int clearmask ) argument
87 __with_interrupts_disabled( *address &= ~clearmask );
/vbox/src/VBox/Devices/PC/ipxe/src/interface/smbios/
H A Dsmbios.c36 .address = UNULL,
50 copy_from_user ( &nulnul, smbios.address, offset, 2 );
73 if ( ( smbios.address == UNULL ) &&
76 assert ( smbios.address != UNULL );
83 copy_from_user ( &structure->header, smbios.address, offset,
132 assert ( smbios.address != UNULL );
136 copy_from_user ( data, smbios.address, structure->offset, len );
156 assert ( smbios.address != UNULL );
168 string_len = strlen_user ( smbios.address, offset );
173 copy_from_user ( data, smbios.address, offse
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Drtc_time.c35 * @v address Register address
38 static unsigned int rtc_readb ( int address ) {
39 outb ( address, CMOS_ADDRESS );
55 * @v address Register address
58 static unsigned int rtc_readb_bcd ( int address ) {
61 bcd = rtc_readb ( address );
74 unsigned int ( * read_component ) ( int address );
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dipv6.c72 static void DumpAddr(const PRNetAddr* address, const char *msg) argument
74 PRUint32 *word = (PRUint32*)address;
76 PR_fprintf(err, "%s[%d]\t", msg, NETADDR_SIZE(address));
85 static PRStatus PrintAddress(const PRNetAddr* address) argument
89 PRStatus rv = PR_NetAddrToString(address, buffer, sizeof(buffer));
99 PRSize addr_len = NETADDR_SIZE(address);
100 if (0 != memcmp(address, &translation, addr_len))
103 DumpAddr(address, "original");
221 PRNetAddr address; local
222 memset(&address,
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dgetprocaddress.py28 CR_PROC address;
48 address = "VBOXGLTAG(gl" + func_name + ")" variable
51 print '\t{ "%s", (CR_PROC) %s },' % (name, address)
79 return functions[i].address;
H A Dwindows_getprocaddress.py31 CR_PROC address;
60 address = "cr_gl" + proc_name variable
63 print '\t{ "%s", (CR_PROC) %s },' % (name, address)
129 /*crDebug("crGetProcAddress(%s) returns %p", name, functions[i].address);*/
130 return functions[i].address;

Completed in 142 milliseconds

1234567891011>>