Searched refs:_ptr (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-13-stable/sys/netinet/libalias/
H A Dalias.h96 int LibAliasIn (struct libalias *, void *_ptr, int _maxpacketsize);
97 int LibAliasOut(struct libalias *, void *_ptr, int _maxpacketsize);
98 int LibAliasOutTry(struct libalias *, void *_ptr, int _maxpacketsize, int _create);
99 int LibAliasUnaliasOut(struct libalias *, void *_ptr, int _maxpacketsize);
118 void LibAliasFragmentIn(struct libalias *, void *_ptr, void *_ptr_fragment);
119 void *LibAliasGetFragment(struct libalias *, void *_ptr);
120 int LibAliasSaveFragment(struct libalias *, void *_ptr);
123 unsigned short LibAliasInternetChecksum(struct libalias *, unsigned short *_ptr, int _nbytes);
/freebsd-13-stable/contrib/kyua/utils/
H A Dauto_array.hpp55 T* _ptr; member in class:utils::detail::auto_array_ref
77 T* _ptr; member in class:utils::auto_array
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-resp.c90 #define FIND_CRLF(_ptr, _len) \
93 ND_TCHECK2(*_ptr, 2); \
94 if (*_ptr == '\r' && *(_ptr+1) == '\n') \
96 _ptr++; \
104 #define CONSUME_CRLF(_ptr, _len) \
105 _ptr += 2; \
110 * Attempts to move our '_ptr' forward until a \r or \n is found,
116 #define FIND_CR_OR_LF(_ptr, _len) \
119 ND_TCHECK(*_ptr); \
[all...]
/freebsd-13-stable/sys/sys/
H A Dpcpu.h251 __typeof(base) _ptr = (void *)((char *)(base) + zpcpu_offset()); \
252 _ptr; \
256 __typeof(base) _ptr = (void *)((char *)(base) + zpcpu_offset_cpu(cpu)); \
257 _ptr; \
267 __typeof(val) *_ptr = zpcpu_get(base); \
270 _old = *_ptr; \
271 *_ptr = val; \
276 __typeof(val) *_ptr = zpcpu_get_cpu(base, cpu); \
279 _old = *_ptr; \
280 *_ptr
[all...]
/freebsd-13-stable/sys/arm/include/
H A Datomic-v6.h206 : [ptr] "r" (_ptr), \
231 : [ptr] "r" (_ptr), \
238 atomic_fcmpset_8(volatile uint8_t *_ptr, uint8_t *_old, uint8_t _new) argument
248 atomic_fcmpset_acq_8(volatile uint8_t *_ptr, uint8_t *_old, uint8_t _new) argument
258 atomic_fcmpset_rel_8(volatile uint8_t *_ptr, uint8_t *_old, uint8_t _new) argument
268 atomic_fcmpset_16(volatile uint16_t *_ptr, uint16_t *_old, uint16_t _new) argument
278 atomic_fcmpset_acq_16(volatile uint16_t *_ptr, uint16_t *_old, uint16_t _new) argument
288 atomic_fcmpset_rel_16(volatile uint16_t *_ptr, uint16_t *_old, uint16_t _new) argument
298 atomic_fcmpset_32(volatile uint32_t *_ptr, uint32_t *_old, uint32_t _new) argument
307 atomic_fcmpset_acq_32(volatile uint32_t *_ptr, uint32_ argument
317 atomic_fcmpset_rel_32(volatile uint32_t *_ptr, uint32_t *_old, uint32_t _new) argument
327 atomic_fcmpset_long(volatile u_long *_ptr, u_long *_old, u_long _new) argument
336 atomic_fcmpset_acq_long(volatile u_long *_ptr, u_long *_old, u_long _new) argument
346 atomic_fcmpset_rel_long(volatile u_long *_ptr, u_long *_old, u_long _new) argument
356 atomic_fcmpset_64(volatile uint64_t *_ptr, uint64_t *_old, uint64_t _new) argument
365 atomic_fcmpset_acq_64(volatile uint64_t *_ptr, uint64_t *_old, uint64_t _new) argument
375 atomic_fcmpset_rel_64(volatile uint64_t *_ptr, uint64_t *_old, uint64_t _new) argument
424 atomic_cmpset_8(volatile uint8_t *_ptr, uint8_t _old, uint8_t _new) argument
434 atomic_cmpset_acq_8(volatile uint8_t *_ptr, uint8_t _old, uint8_t _new) argument
444 atomic_cmpset_rel_8(volatile uint8_t *_ptr, uint8_t _old, uint8_t _new) argument
454 atomic_cmpset_16(volatile uint16_t *_ptr, uint16_t _old, uint16_t _new) argument
464 atomic_cmpset_acq_16(volatile uint16_t *_ptr, uint16_t _old, uint16_t _new) argument
474 atomic_cmpset_rel_16(volatile uint16_t *_ptr, uint16_t _old, uint16_t _new) argument
484 atomic_cmpset_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) argument
493 atomic_cmpset_acq_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) argument
503 atomic_cmpset_rel_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) argument
513 atomic_cmpset_long(volatile u_long *_ptr, u_long _old, u_long _new) argument
522 atomic_cmpset_acq_long(volatile u_long *_ptr, u_long _old, u_long _new) argument
532 atomic_cmpset_rel_long(volatile u_long *_ptr, u_long _old, u_long _new) argument
542 atomic_cmpset_64(volatile uint64_t *_ptr, uint64_t _old, uint64_t _new) argument
551 atomic_cmpset_acq_64(volatile uint64_t *_ptr, uint64_t _old, uint64_t _new) argument
561 atomic_cmpset_rel_64(volatile uint64_t *_ptr, uint64_t _old, uint64_t _new) argument
[all...]
/freebsd-13-stable/sys/dev/drm2/
H A Ddrm_hashtab.h42 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member)
/freebsd-13-stable/sys/contrib/dpdk_rte_lpm/
H A Drte_shim.h5 #define rte_free(_ptr) free(_ptr, M_TEMP)
H A Drte_common.h733 const typeof(((type *)0)->member) *_ptr = (ptr); \
736 (type *)(((uintptr_t)_ptr) - offsetof(type, member)); \
/freebsd-13-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416desc.h267 #define AR_SendTimestamp(_ptr) (_ptr)[2]
270 #define AR_BaBitmapLow(_ptr) (_ptr)[3]
273 #define AR_BaBitmapHigh(_ptr) (_ptr)[4]
286 #define AR_TxEVM0(_ptr) (_ptr)[6]
289 #define AR_TxEVM1(_ptr) (_ptr)[
[all...]
/freebsd-13-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_shim.c777 vchi_readbuf_uint32(const void *_ptr) argument
779 const unsigned char *ptr = _ptr;
788 vchi_writebuf_uint32(void *_ptr, uint32_t value) argument
790 unsigned char *ptr = _ptr;
802 vchi_readbuf_uint16(const void *_ptr) argument
804 const unsigned char *ptr = _ptr;
813 vchi_writebuf_uint16(void *_ptr, uint16_t value) argument
815 unsigned char *ptr = _ptr;
/freebsd-13-stable/sys/net/route/
H A Dnhop_utils.h77 #define CHT_SLIST_INIT(_head, _ptr, _num_buckets) \
80 (_head)->ptr = _ptr;
88 #define _CHT_FIRST(_ptr, idx) (_ptr)[idx]
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Dncsw_ext.h49 #define PTR_TO_UINT(_ptr) ((uintptr_t)(_ptr))
52 #define PTR_MOVE(_ptr, _offset) (void*)((uint8_t*)(_ptr) + (_offset))
/freebsd-13-stable/sys/contrib/zstd/lib/common/
H A Dcompiler.h143 const char* const _ptr = (const char*)(p); \
147 PREFETCH_L2(_ptr + _pos); \
/freebsd-13-stable/sys/dev/ice/
H A Dice_osdep.h241 #define LIST_ENTRY_SAFE(_ptr, _type, _member) \
242 ({ __typeof(_ptr) ____ptr = (_ptr); \
H A Dice_type.h69 #define FLEX_ARRAY_SIZE(_ptr, _mem, cnt) ((cnt) * sizeof(_ptr->_mem[0]))
/freebsd-13-stable/contrib/elftoolchain/libelf/
H A Dlibelf.h201 Elf_Arsym *elf_getarsym(Elf *_elf, size_t *_ptr);
204 char *elf_getident(Elf *_elf, size_t *_ptr);
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dbio_ok.c426 static void longswap(void *_ptr, size_t len) argument
437 unsigned char *p = _ptr, c;
/freebsd-13-stable/lib/libutil/
H A Dlibutil.h103 void hexdump(const void *_ptr, int _length, const char *_hdr, int _flags);
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dvsscanf.c174 strbuf._ptr = strbuf._base = (unsigned char *) str;
/freebsd-13-stable/lib/libcuse/
H A Dcuse_lib.c139 cuse_vmoffset(void *_ptr) argument
143 uint8_t *ptr = _ptr;
/freebsd-13-stable/contrib/bmake/
H A Dutil.c382 * Some os's are char * _ptr, others are unsigned char *_ptr...
385 fakebuf._ptr = (void *)s;
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h760 #define pci_map_single(_hwdev, _ptr, _size, _dir) \
762 (_ptr), (_size), (enum dma_data_direction)_dir)
/freebsd-13-stable/sys/ofed/include/rdma/
H A Dib_verbs.h613 #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
615 (_ptr)->device = _device; \
616 (_ptr)->handler = _handler; \
617 INIT_LIST_HEAD(&(_ptr)->list); \
/freebsd-13-stable/sys/dev/bhnd/bhndb/
H A Dbhndb.c1847 #define BHNDB_IO_MISC(_type, _ptr, _op, _size) \
1851 _type _ptr datap, bus_size_t count) \
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Decore_mcp.c58 #define DRV_INNER_WR(_p_hwfn, _p_ptt, _ptr, _offset, _val) \
59 ecore_wr(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset), \
62 #define DRV_INNER_RD(_p_hwfn, _p_ptt, _ptr, _offset) \
63 ecore_rd(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset))

Completed in 217 milliseconds

12