| /xnu-11215/bsd/netinet/ |
| H A D | tcp_private.h | 252 u_int64_t tcpi_cell_rxpackets __attribute((aligned(8)));/* packets received over cellular */ 253 u_int64_t tcpi_cell_rxbytes __attribute((aligned(8)));/* bytes received over cellular */ 255 u_int64_t tcpi_cell_txbytes __attribute((aligned(8)));/* bytes transmitted over cellular */ 256 u_int64_t tcpi_wifi_rxpackets __attribute((aligned(8)));/* packets received over Wi-Fi */ 257 u_int64_t tcpi_wifi_rxbytes __attribute((aligned(8)));/* bytes received over Wi-Fi */ 258 u_int64_t tcpi_wifi_txpackets __attribute((aligned(8)));/* packets transmitted over Wi-Fi */ 259 u_int64_t tcpi_wifi_txbytes __attribute((aligned(8)));/* bytes transmitted over Wi-Fi */ 260 u_int64_t tcpi_wired_rxpackets __attribute((aligned(8)));/* packets received over Wired */ 261 u_int64_t tcpi_wired_rxbytes __attribute((aligned(8)));/* bytes received over Wired */ 262 u_int64_t tcpi_wired_txpackets __attribute((aligned(8)));/* packets transmitted over Wired */ [all …]
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | IOReportTypes.h | 92 } __attribute((packed)) IOSimpleReportValues; 97 } __attribute((packed)) IOSimpleArrayReportValues; 105 } __attribute((packed)) IOStateReportValues; 113 } __attribute((packed)) IOHistogramReportValues; 147 } __attribute((packed)) IOReportChannelType; 193 } __attribute((packed)) IOReportElementValues; 201 } __attribute((packed)) IOReportElement;
|
| H A D | IOKernelReportStructs.h | 80 } __attribute((packed)) IOHistogramSegmentConfig; 88 } __attribute((packed)) IONormDistReportValues;
|
| /xnu-11215/iokit/IOKit/ |
| H A D | IOReportTypes.h | 92 } __attribute((packed)) IOSimpleReportValues; 97 } __attribute((packed)) IOSimpleArrayReportValues; 105 } __attribute((packed)) IOStateReportValues; 113 } __attribute((packed)) IOHistogramReportValues; 147 } __attribute((packed)) IOReportChannelType; 193 } __attribute((packed)) IOReportElementValues; 201 } __attribute((packed)) IOReportElement;
|
| H A D | IOKernelReportStructs.h | 80 } __attribute((packed)) IOHistogramSegmentConfig; 88 } __attribute((packed)) IONormDistReportValues;
|
| /xnu-11215/bsd/skywalk/channel/ |
| H A D | os_channel_private.h | 400 __attribute((aligned(sizeof(uint64_t)))); 403 __attribute((aligned(sizeof(uint64_t)))); 405 __attribute((aligned(sizeof(uint64_t)))); 407 __attribute((aligned(sizeof(uint64_t)))); 413 __attribute((aligned(sizeof(uint64_t)))); 416 __attribute((aligned(sizeof(uint64_t)))); 418 __attribute((aligned(sizeof(uint64_t))));
|
| H A D | kern_channel_event.c | 128 __attribute((aligned(sizeof(uint64_t)))); in kern_channel_packet_event_notify()
|
| H A D | channel_var.h | 659 __attribute((aligned(sizeof (uint64_t)))); \ 672 __attribute((aligned(sizeof (uint64_t)))); \
|
| /xnu-11215/bsd/skywalk/packet/ |
| H A D | os_packet_private.h | 134 } __attribute((aligned(16))); 209 } __attribute((aligned(sizeof(uint64_t)))); 227 } __attribute((aligned(16))); 264 } __attribute((packed)); 411 } __attribute((aligned(sizeof(uint64_t)))); 443 } __attribute((aligned(sizeof(uint64_t)))); 570 } __attribute((aligned(sizeof(uint64_t)))); 613 } __attribute((aligned(sizeof(uint64_t)))); 708 } __attribute((aligned(sizeof(uint64_t))));
|
| H A D | packet_var.h | 60 } __attribute((packed)); 78 } __attribute((packed)); 215 } __attribute((aligned(sizeof(uint64_t)))); 468 } __attribute((aligned(sizeof(uint64_t))));
|
| /xnu-11215/bsd/sys/ |
| H A D | vm.h | 123 …user_addr_t vm_shm __attribute((aligned(8))); /* SYS5 shared memory priv… 129 user_addr_t vm_taddr __attribute((aligned(8))); /* user virtual address of text XXX */
|
| H A D | proc_internal.h | 708 user_addr_t user_stack __attribute((aligned(8))); /* where user stack was allocated */ 716 user_addr_t p_wchan __attribute((aligned(8))); /* Sleep address. */ 726 user_addr_t p_tracep __attribute((aligned(8))); /* Trace to vnode. */ 728 user_addr_t p_textvp __attribute((aligned(8))); /* Vnode of executable. */ 737 user_addr_t p_pgrp __attribute((aligned(8))); /* Pointer to process group. */ 741 user_addr_t p_ru __attribute((aligned(8))); /* Exit information. XXX */
|
| H A D | uio_internal.h | 110 __private_extern__ int uio_calculateresid_user(uio_t __attribute((nonnull)) a_uio);
|
| H A D | termios.h | 293 user_speed_t c_ispeed __attribute((aligned(8))); /* input speed */
|
| /xnu-11215/osfmk/vm/ |
| H A D | vm_compressor_algorithms.c | 49 uint8_t lz4state[lz4_encode_scratch_size]__attribute((aligned(LZ4_SCRATCH_ALIGN))); 50 uint8_t wkscratch[0] __attribute((aligned(WKC_SCRATCH_ALIGN))); // TODO 54 uint8_t lz4decodestate[lz4_encode_scratch_size]__attribute((aligned(64))); 55 uint8_t wkdecompscratch[0] __attribute((aligned(64)));
|
| /xnu-11215/tests/ |
| H A D | net_tuntests.c | 318 struct sadb_msg msg __attribute((aligned(sizeof(uint64_t)))); in create_sa() 319 struct sadb_key key __attribute((aligned(sizeof(uint64_t)))); in create_sa() 320 struct sadb_sa sa __attribute((aligned(sizeof(uint64_t)))); in create_sa() 321 struct sadb_x_sa2 sa2 __attribute((aligned(sizeof(uint64_t)))); in create_sa() 322 struct sadb_x_ipsecif ipsecif __attribute((aligned(sizeof(uint64_t)))); in create_sa() 324 struct sadb_address addr __attribute((aligned(sizeof(uint64_t)))); in create_sa() 325 struct sockaddr_in saddr __attribute((aligned(sizeof(uint64_t)))); in create_sa() 328 struct sadb_address addr __attribute((aligned(sizeof(uint64_t)))); in create_sa() 329 struct sockaddr_in saddr __attribute((aligned(sizeof(uint64_t)))); in create_sa()
|
| /xnu-11215/tests/skywalk/ |
| H A D | skt_copy_cksum.c | 47 static uint8_t st_src_buffer1[ST_BUFFER_SIZE] __attribute((aligned(1024))); 48 static uint8_t st_src_buffer2[ST_BUFFER_SIZE / 2] __attribute((aligned(1024))); 49 static uint8_t st_dst_buffer[ST_BUFFER_SIZE] __attribute((aligned(1024))); 50 static uint8_t st_ref_buffer[ST_BUFFER_SIZE] __attribute((aligned(1024)));
|
| H A D | skywalk_test_utils.c | 1406 struct sadb_msg msg __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1407 struct sadb_key key __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1408 struct sadb_sa sa __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1409 struct sadb_x_sa2 sa2 __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1410 struct sadb_x_ipsecif ipsecif __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1412 struct sadb_address addr __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1413 struct sockaddr_in saddr __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1416 struct sadb_address addr __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa() 1417 struct sockaddr_in saddr __attribute((aligned(sizeof(uint64_t)))); in sktu_create_sa()
|
| /xnu-11215/osfmk/kern/ |
| H A D | socd_client.h | 141 } __attribute ((packed)) socd_client_trace_entry_t;
|
| /xnu-11215/bsd/nfs/ |
| H A D | nfs.h | 344 user_addr_t addr __attribute((aligned(8))); /* file server address */ 348 user_addr_t fh __attribute((aligned(8))); /* File handle to be mounted */ 360 user_addr_t hostname __attribute((aligned(8))); /* server's name */ 446 …user_addr_t name __attribute((aligned(8))); /* Client addr for connection based socket…
|
| /xnu-11215/bsd/skywalk/namespace/ |
| H A D | netns.h | 68 __attribute((aligned(sizeof(uint64_t))));
|
| /xnu-11215/osfmk/i386/ |
| H A D | fpu.c | 98 static x86_ext_thread_state_t initial_fp_state __attribute((aligned(64))); 99 static x86_ext_thread_state_t default_avx512_state __attribute((aligned(64))); 100 static x86_ext_thread_state_t default_avx_state __attribute((aligned(64))); 101 static x86_ext_thread_state_t default_fx_state __attribute((aligned(64))); 581 fpu_allzeroes(uint64_t * __attribute((aligned(8)))ptr, uint32_t size) in fpu_allzeroes()
|
| H A D | pmap.h | 584 lck_rw_t pmap_rwl __attribute((aligned(64))); 585 pmap_paddr_t pm_cr3 __attribute((aligned(64))); /* Kernel+user shared PML4 physical*/
|
| /xnu-11215/osfmk/mach/ |
| H A D | host_info.h | 314 uint64_t ps_runq_count_sum __attribute((aligned(8)));
|
| /xnu-11215/bsd/skywalk/nexus/flowswitch/ |
| H A D | nx_flowswitch.h | 239 } __fsw_slladdr __attribute((aligned(sizeof(uint64_t))));
|