| /f-stack/freebsd/amd64/include/ |
| H A D | atomic.h | 115 void atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v); \ 116 void atomic_##NAME##_barr_##TYPE(volatile u_##TYPE *p, u_##TYPE v) 139 u_##TYPE atomic_load_acq_##TYPE(volatile u_##TYPE *p) 141 void atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v) 162 atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\ 171 atomic_##NAME##_barr_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\ 197 atomic_cmpset_##TYPE(volatile u_##TYPE *dst, u_##TYPE expect, u_##TYPE src) \ 214 atomic_fcmpset_##TYPE(volatile u_##TYPE *dst, u_##TYPE *expect, u_##TYPE src) \ 383 atomic_load_acq_##TYPE(volatile u_##TYPE *p) \ 395 atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v) \ [all …]
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-access-native.h | 292 #define CVMX_BUILD_WRITE64(TYPE, ST) \ argument 293 static inline void cvmx_write64_##TYPE(uint64_t addr, TYPE##_t val) \ 295 *CASTPTR(volatile TYPE##_t, addr) = val; \ 303 #define CVMX_BUILD_WRITE64(TYPE, ST) \ argument 304 static inline void cvmx_write64_##TYPE(uint64_t addr, TYPE##_t val) \ 312 #define CVMX_BUILD_WRITE64(TYPE, LT) extern void cvmx_write64_##TYPE(uint64_t csr_addr, TYPE##_t va… argument 320 static inline void cvmx_write64_##TYPE(uint64_t csr_addr, TYPE##_t val) \ 391 static inline TYPE##_t cvmx_read64_##TYPE(uint64_t addr) \ 402 static inline TYPE##_t cvmx_read64_##TYPE(uint64_t addr) \ 412 #define CVMX_BUILD_READ64(TYPE, LT) extern TYPE##_t cvmx_read64_##TYPE(uint64_t csr_addr); argument [all …]
|
| /f-stack/freebsd/contrib/edk2/Include/ |
| H A D | Base.h | 601 #define VA_ARG(Marker, TYPE) __va_arg(Marker, TYPE) argument 620 …VA_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE) + ((-(INTN)Marker) & (s… argument 642 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument 661 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument 710 #define VA_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE)) - _INT_SIZE_OF (TYPE))) argument 751 #define _BASE_INT_SIZE_OF(TYPE) ((sizeof (TYPE) + sizeof (UINTN) - 1) / sizeof (UINTN)) argument 769 #define BASE_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _BASE_INT_SIZE_OF (TYPE)) - _BASE_INT_SIZE_… argument 785 #define OFFSET_OF(TYPE, Field) ((UINTN) __builtin_offsetof(TYPE, Field)) argument 789 #define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field)) argument 867 #define BASE_CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - OFFSET_OF (TYPE, Field))) argument
|
| /f-stack/freebsd/i386/include/ |
| H A D | atomic.h | 109 void atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v); \ 110 void atomic_##NAME##_barr_##TYPE(volatile u_##TYPE *p, u_##TYPE v) 128 u_##TYPE atomic_load_acq_##TYPE(volatile u_##TYPE *p) 130 void atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v) 160 atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\ 169 atomic_##NAME##_barr_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\ 195 atomic_cmpset_##TYPE(volatile u_##TYPE *dst, u_##TYPE expect, u_##TYPE src) \ 213 atomic_fcmpset_##TYPE(volatile u_##TYPE *dst, u_##TYPE *expect, u_##TYPE src) \ 317 atomic_load_acq_##TYPE(volatile u_##TYPE *p) \ 329 atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v) \ [all …]
|
| /f-stack/freebsd/libkern/ |
| H A D | qsort.c | 49 #define swapcode(TYPE, parmi, parmj, n) { \ argument 50 size_t i = (n) / sizeof (TYPE); \ 51 TYPE *pi = (TYPE *) (parmi); \ 52 TYPE *pj = (TYPE *) (parmj); \ 54 TYPE t = *pi; \ 60 #define SWAPINIT(TYPE, a, es) swaptype_ ## TYPE = \ argument 61 ((char *)a - (char *)0) % sizeof(TYPE) || \ 62 es % sizeof(TYPE) ? 2 : es == sizeof(TYPE) ? 0 : 1;
|
| /f-stack/freebsd/contrib/alpine-hal/ |
| H A D | al_hal_udma_debug.h | 60 #define AL_UDMA_PRINT_REG(UDMA, PREFIX, POSTFIX, TYPE, GROUP, REG) \ argument 62 &(UDMA->udma_regs->TYPE.GROUP.REG))) 65 UDMA, PREFIX, POSTFIX, FMT, TYPE, GROUP, REG, LBL, FIELD) \ argument 67 &(UDMA->udma_regs->TYPE.GROUP.REG)) \ 71 UDMA, PREFIX, POSTFIX, TYPE, GROUP, REG, LBL, FIELD) \ argument 73 &(UDMA->udma_regs->TYPE.GROUP.REG)) \
|
| /f-stack/freebsd/contrib/ngatm/netnatm/ |
| H A D | unimsg.h | 74 #define uni_msg_rptr(MSG, TYPE) ((TYPE)(void *)(MSG)->b_rptr) argument 75 #define uni_msg_wptr(MSG, TYPE) ((TYPE)(void *)(MSG)->b_wptr) argument
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | pqsort.c | 54 #define swapcode(TYPE, parmi, parmj, n) { \ argument 55 size_t i = (n) / sizeof (TYPE); \ 56 TYPE *pi = (TYPE *)(void *)(parmi); \ 57 TYPE *pj = (TYPE *)(void *)(parmj); \ 59 TYPE t = *pi; \
|
| /f-stack/freebsd/contrib/edk2/Include/Library/ |
| H A D | DebugLib.h | 568 #define CR(Record, TYPE, Field, TestSignature) \ argument 569 (DebugAssertEnabled () && (BASE_CR (Record, TYPE, Field)->Signature != TestSignature)) ? \ 570 (TYPE *) (_ASSERT (CR has Bad Signature), Record) : \ 571 BASE_CR (Record, TYPE, Field) 573 #define CR(Record, TYPE, Field, TestSignature) \ argument 574 BASE_CR (Record, TYPE, Field)
|
| /f-stack/freebsd/contrib/vchiq/interface/compat/ |
| H A D | list.h | 201 #define list_entry(PTR, TYPE, FIELD) container_of(PTR, TYPE, FIELD) argument 202 #define list_first_entry(PTR, TYPE, FIELD) \ argument 203 list_entry(list_first((PTR)), TYPE, FIELD) 204 #define list_last_entry(PTR, TYPE, FIELD) \ argument 205 list_entry(list_last((PTR)), TYPE, FIELD)
|
| /f-stack/freebsd/contrib/ngatm/netnatm/sig/ |
| H A D | unimkmsg.h | 34 #define MK_MSG_ORIG(MSG,TYPE,CREF,FLAG) \ argument 36 (MSG)->mtype = (TYPE); \ 42 #define MK_MSG_RESP(MSG,TYPE,CREF) \ argument 44 (MSG)->mtype = (TYPE); \
|
| H A D | unipriv.h | 505 #define ALLOC_API(TYPE,API) \ argument 507 TYPE *_tmp = NULL; \ 509 if(((API) = uni_msg_alloc(sizeof(TYPE))) != NULL) { \ 510 _tmp = uni_msg_wptr((API), TYPE *); \ 511 (API)->b_wptr += sizeof(TYPE); \ 512 memset(_tmp, 0, sizeof(TYPE)); \
|
| /f-stack/freebsd/contrib/libnv/ |
| H A D | nvlist.c | 1434 #define NVLIST_EXISTS(type, TYPE) \ argument 1890 #define NVLIST_GET(ftype, type, TYPE) \ argument 1896 nvp = nvlist_find(nvl, NV_TYPE_##TYPE, name); \ 1898 nvlist_report_missing(NV_TYPE_##TYPE, name); \ 1924 #define NVLIST_GET_ARRAY(ftype, type, TYPE) \ argument 1947 #define NVLIST_TAKE(ftype, type, TYPE) \ in NVLIST_GET_ARRAY() argument 1954 nvp = nvlist_find(nvl, NV_TYPE_##TYPE, name); \ in NVLIST_GET_ARRAY() 1956 nvlist_report_missing(NV_TYPE_##TYPE, name); \ in NVLIST_GET_ARRAY() 1989 #define NVLIST_TAKE_ARRAY(ftype, type, TYPE) \ argument 2032 #define NVLIST_FREE(type, TYPE) \ argument [all …]
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | inflate.h | 32 TYPE, /* i: waiting for type bits, including last-flag bit */ enumerator
|
| H A D | infback.c | 279 state->mode = TYPE; 292 case TYPE: 355 state->mode = TYPE; 526 state->mode = TYPE;
|
| H A D | inflate.c | 650 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */ 702 state->mode = hold & 0x200 ? DICTID : TYPE; 834 state->mode = TYPE; 848 state->mode = TYPE; 849 case TYPE: 918 state->mode = TYPE; 1049 if (state->mode == TYPE) 1083 state->mode = TYPE; 1270 (state->mode == TYPE ? 128 : 0) + 1439 state->mode = TYPE;
|
| H A D | inffast.c | 282 state->mode = TYPE;
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/amlogic/ |
| H A D | meson-gxm-s912-libretech-pc.dts | 31 * Make sure the irq pin of the TYPE C controller is not driven
|
| /f-stack/freebsd/contrib/openzfs/contrib/dracut/02zfsexpandknowledge/ |
| H A D | module-setup.sh.in | 7 typ=$(blkid -c /dev/null "$1" -o value -s TYPE)
|
| /f-stack/dpdk/drivers/net/fm10k/base/ |
| H A D | fm10k_mbx.c | 854 mbx->mbx_hdr = FM10K_MSG_HDR_FIELD_SET(FM10K_MSG_CONNECT, TYPE) | in fm10k_mbx_create_connect_hdr() 867 u32 hdr = FM10K_MSG_HDR_FIELD_SET(FM10K_MSG_DATA, TYPE) | in fm10k_mbx_create_data_hdr() 893 u32 hdr = FM10K_MSG_HDR_FIELD_SET(FM10K_MSG_DISCONNECT, TYPE) | in fm10k_mbx_create_disconnect_hdr() 914 u32 hdr = FM10K_MSG_HDR_FIELD_SET(FM10K_MSG_DISCONNECT, TYPE) | in fm10k_mbx_create_fake_disconnect_hdr() 951 mbx->mbx_hdr = FM10K_MSG_HDR_FIELD_SET(FM10K_MSG_ERROR, TYPE) | in fm10k_mbx_create_error_msg() 971 type = FM10K_MSG_HDR_FIELD_GET(*hdr, TYPE); in fm10k_mbx_validate_msg_hdr() 1376 switch (FM10K_MSG_HDR_FIELD_GET(mbx->mbx_hdr, TYPE)) { in fm10k_mbx_process()
|
| /f-stack/freebsd/contrib/dpdk_rte_lpm/ |
| H A D | rte_common.h | 714 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) argument
|
| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_common.h | 753 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) argument
|
| /f-stack/freebsd/contrib/ck/include/ |
| H A D | ck_pr.h | 167 #define CK_PR_STORE_SAFE(DST, VAL, TYPE) \ argument 168 ck_pr_md_store_##TYPE( \ 192 #define CK_PR_LOAD_SAFE(SRC, TYPE) ck_pr_md_load_##TYPE((SRC)) argument
|
| /f-stack/freebsd/arm/include/ |
| H A D | atomic-v6.h | 190 #define ATOMIC_FCMPSET_CODE(RET, TYPE, SUF) \ in ATOMIC_ACQ_REL_LONG() argument 192 TYPE tmp; \ in ATOMIC_ACQ_REL_LONG()
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | blkdev.shlib | 145 lsblk $DEV_RDSKDIR/$disk -o TYPE 2>/dev/null | \ 160 lsblk $DEV_RDSKDIR/$disk -o TYPE 2>/dev/null | \ 184 lsblk $DEV_MPATHDIR/$disk -o TYPE 2>/dev/null | \
|