/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/ |
H A D | unpack_bounds.c | 15 GLbyte *payload; local 23 payload = DATA_POINTER( 24, GLbyte ); 25 cr_unpackDispatch.BoundsInfoCR( &bounds, payload, len, num_opcodes );
|
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_bounds.c | 11 void PACK_APIENTRY crPackBoundsInfoCR( CR_PACKER_CONTEXT_ARGDECL const CRrecti *bounds, const GLbyte *payload, GLint len, GLint num_opcodes ) argument 45 crMemcpy( data_ptr, payload, len );
|
H A D | pack_buffer.c | 166 * Each opcode has at least a 1-word payload, so opcodes can occupy at most 350 const GLbyte *payload = (const GLbyte *) src->opcode_current + 1; local 360 * payload points to the block of opcodes immediately followed by operands. 379 crPackBoundsInfoCRSWAP( CR_PACKER_CONTEXT_ARG bounds, payload, length, num_opcodes ); 381 crPackBoundsInfoCR( CR_PACKER_CONTEXT_ARG bounds, payload, length, num_opcodes ); 405 /* include space for the length and make the payload word-aligned */ 428 * with space for the single opcode plus the payload &
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv6/ |
H A D | ip6.c | 174 iphdr = p->payload; 280 iphdr = p->payload; 341 struct ip_hdr *iphdr = p->payload; 342 u8_t *payload; local 344 payload = (u8_t *)iphdr + IP_HLEN;
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv4/ |
H A D | ip.c | 184 iphdr = p->payload; 299 iphdr = p->payload; 356 p->payload = iphdr; 402 iphdr = p->payload; 426 iphdr = p->payload; 472 struct ip_hdr *iphdr = p->payload; 473 u8_t *payload; local 475 payload = (u8_t *)iphdr + IP_HLEN;
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | pbuf.h | 61 #define PBUF_FLAG_REF 0x04U /* Flags thet the pbuf payload refers to RAM */ 71 void *payload; member in struct:pbuf
|
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_boundsinfo.c | 229 * followed by a payload of arbitrary Chromium rendering commands. 234 crServerDispatchBoundsInfoCR( const CRrecti *bounds, const GLbyte *payload, argument 238 char *data_ptr = (char*)(payload + ((num_opcodes + 3 ) & ~0x03));
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | pbuf.h | 68 PBUF_POOL /* pbuf payload refers to RAM */ 91 void *payload; member in struct:pbuf
|
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | efirom.c | 109 void *payload; local 128 payload = ( buf + sizeof ( *headers ) ); 129 if ( fread ( payload, pe_size, 1, pe ) != 1 ) { 139 read_pe_info ( payload, &headers->rom.EfiMachineType,
|
H A D | zbin.c | 61 struct zinfo_payload payload; member in union:zinfo_record 230 struct zinfo_payload *payload = &zinfo->payload; local 232 output->len = align ( output->len, payload->align );
|
/vbox/src/VBox/Frontends/VBoxBalloonCtrl/ |
H A D | VBoxWatchdogInternal.h | 56 * A module's payload for a machine entry. 57 * The payload data is not (yet) thread safe -- so only 62 /** Pointer to allocated payload. Can be NULL if 63 * a module doesn't have an own payload. */ 65 /** Size of payload (in bytes). */ 71 * Map containing a module's individual payload -- the module itself 72 * is responsible for allocating/handling/destroying this payload. 96 mapPayload payload; member in struct:VBOXWATCHDOG_MACHINE
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | pbuf.c | 115 p->payload = MEM_ALIGN((void *)((u8_t *)p + sizeof(struct pbuf))); 254 /* make the payload pointer point 'offset' bytes into pbuf data memory */ 255 p->payload = MEM_ALIGN((void *)((u8_t *)p + (sizeof(struct pbuf) + offset))); 256 LWIP_ASSERT("pbuf_alloc: pbuf p->payload properly aligned", 257 ((mem_ptr_t)p->payload % MEM_ALIGNMENT) == 0); 291 q->payload = (void *)((u8_t *)q + sizeof(struct pbuf)); 292 LWIP_ASSERT("pbuf_alloc: pbuf q->payload properly aligned", 293 ((mem_ptr_t)q->payload % MEM_ALIGNMENT) == 0); 311 p->payload = MEM_ALIGN((void *)((u8_t *)p + sizeof(struct pbuf) + offset)); 316 LWIP_ASSERT("pbuf_alloc: pbuf->payload properl 468 void *payload; local [all...] |
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | ip_icmp.c | 199 * or pointer IP header in ICMP payload in case of 205 * if (2) then check that payload ICMP has got type ICMP_ECHO and 381 /* min 8 bytes payload */ 542 * We always truncate original payload to 8 bytes required by the RFC, 544 * 8 (icmp) + 60 (max original ip with options) + 8 (original payload) 556 void *payload; local 628 /* fill in icmp payload: original ip header plus 8 bytes of its payload */ 631 payload = (void *)((char *)icp + ICMP_MINLEN); 632 memcpy(payload, oi [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | gdbstub.c | 38 SIZEOF_PAYLOAD = 256, /* buffer size of GDB payload data */ 51 /* Buffer for payload data when parsing a packet. Once the 53 * the reply payload. */ 55 char *payload; /* start of payload */ member in struct:gdbstub 56 int len; /* length of payload */ 141 uint8_t cksum = gdbstub_cksum ( stub->payload, stub->len ); 152 stub->payload [ 0 ] = 'O'; 153 stub->payload [ 1 ] = 'K'; 159 stub->payload [ [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | aoe.h | 50 /** Data payload */ 82 union aoecmd payload[0]; member in struct:aoehdr
|
H A D | dns.h | 66 char payload[ 256 + sizeof ( struct dns_query_info ) ]; member in struct:dns_query
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | pbuf.c | 183 * @param length size of the pbuf's payload 248 /* make the payload pointer point 'offset' bytes into pbuf data memory */ 249 p->payload = LWIP_MEM_ALIGN((void *)((u8_t *)p + (SIZEOF_STRUCT_PBUF + offset))); 250 LWIP_ASSERT("pbuf_alloc: pbuf p->payload properly aligned", 251 ((mem_ptr_t)p->payload % MEM_ALIGNMENT) == 0); 256 LWIP_ASSERT("check p->payload + p->len does not overflow pbuf", 257 ((u8_t*)p->payload + p->len <= 290 q->payload = (void *)((u8_t *)q + SIZEOF_STRUCT_PBUF); 291 LWIP_ASSERT("pbuf_alloc: pbuf q->payload properly aligned", 292 ((mem_ptr_t)q->payload 514 void *payload; local [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | hash.c | 44 void *payload; member in struct:_xmlHashEntry 306 if ((f != NULL) && (iter->payload != NULL)) 307 f(iter->payload, iter->name); 316 iter->payload = NULL; 570 entry->payload = userdata; 647 f(insert->payload, insert->name); 648 insert->payload = userdata; 656 f(insert->payload, insert->name); 657 insert->payload = userdata; 667 f(insert->payload, inser 798 stubHashScannerFull(void *payload, void *data, const xmlChar *name, const xmlChar *name2 ATTRIBUTE_UNUSED, const xmlChar *name3 ATTRIBUTE_UNUSED) argument [all...] |
H A D | parser.c | 1098 xmlCleanSpecialAttrCallback(void *payload, void *data, argument 1103 if (((long) payload) == XML_ATTRIBUTE_CDATA) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | fcels.c | 1255 char payload[ len - sizeof ( struct fc_echo_frame_header ) ]; member in struct:__anon15776
|
H A D | tcp.c | 473 void *payload; local 485 /* Calculate both the actual (payload) and sequence space 523 /* Fill data payload from transmit queue */ 538 payload = iobuf->data; 561 tcphdr->hlen = ( ( payload - iobuf->data ) << 2 );
|
H A D | tls.c | 1517 uint8_t payload[0]; member in struct:__anon15803 1519 void *payload = &handshake->payload; local 1521 void *next = ( payload + payload_len ); 1533 rc = tls_new_server_hello ( tls, payload, payload_len ); 1536 rc = tls_new_certificate ( tls, payload, payload_len ); 1539 rc = tls_new_certificate_request ( tls, payload, 1543 rc = tls_new_server_hello_done ( tls, payload, 1547 rc = tls_new_finished ( tls, payload, payload_len ); 2089 * Handle received TLS data payload [all...] |
/vbox/src/VBox/Main/include/ |
H A D | GuestCtrlImplPrivate.h | 456 int CopyFromDeep(const GuestWaitEventPayload &payload) argument 461 if (payload.cbData) 463 Assert(payload.cbData); 464 pvData = RTMemAlloc(payload.cbData); 467 memcpy(pvData, payload.pvData, payload.cbData); 468 cbData = payload.cbData; 469 uType = payload.uType; 488 /** Type of payload. */ 490 /** Size (in bytes) of payload [all...] |
/vbox/src/VBox/HostServices/SharedOpenGL/render/ |
H A D | renderspu.c | 1725 renderspuBoundsInfoCR( CRrecti *bounds, GLbyte *payload, GLint len, argument 1729 (void) payload;
|
/vbox/include/VBox/HostServices/ |
H A D | GuestControlSvc.h | 366 * along with a simple payload. 567 /** Optional payload to this reply. */ 568 HGCMFunctionParameter payload; member in struct:guestControl::HGCMMsgCmdReply 1039 /** Pointer to optional payload. */
|