Home
last modified time | relevance | path

Searched refs:_ptr (Results 1 – 24 of 24) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DCFUtils.h32 CFReleaser(T ptr = NULL) : _ptr(ptr) {} in _ptr() function
50 T *ptr_address() { return &_ptr; } in ptr_address()
53 const T get() const { return _ptr; } in get()
54 T get() { return _ptr; } in get()
59 if (ptr != _ptr) {
60 if (_ptr != NULL)
61 ::CFRelease(_ptr);
62 _ptr = ptr;
68 T tmp = _ptr; in release()
69 _ptr = NULL; in release()
[all …]
/freebsd-12.1/contrib/tcpdump/
H A Dprint-resp.c90 #define FIND_CRLF(_ptr, _len) \ argument
94 if (*_ptr == '\r' && *(_ptr+1) == '\n') \
104 #define CONSUME_CRLF(_ptr, _len) \ argument
105 _ptr += 2; \
116 #define FIND_CR_OR_LF(_ptr, _len) \ argument
119 ND_TCHECK(*_ptr); \
120 if (*_ptr == '\r' || *_ptr == '\n') \
122 _ptr++; \
155 if (*_ptr != '\r' && *_ptr != '\n') \
169 #define SKIP_OPCODE(_ptr, _tot_len) \ argument
[all …]
/freebsd-12.1/sys/netinet/libalias/
H A Dalias.h96 int LibAliasIn (struct libalias *, char *_ptr, int _maxpacketsize);
97 int LibAliasOut(struct libalias *, char *_ptr, int _maxpacketsize);
98 int LibAliasOutTry(struct libalias *, char *_ptr, int _maxpacketsize, int _create);
99 int LibAliasUnaliasOut(struct libalias *, char *_ptr, int _maxpacketsize);
122 void LibAliasFragmentIn(struct libalias *, char *_ptr, char *_ptr_fragment);
123 char *LibAliasGetFragment(struct libalias *, char *_ptr);
124 int LibAliasSaveFragment(struct libalias *, char *_ptr);
129 LibAliasInternetChecksum(struct libalias *, unsigned short *_ptr, int _nbytes);
/freebsd-12.1/sys/dev/ath/ath_hal/ar5416/
H A Dar5416desc.h268 #define AR_SendTimestamp(_ptr) (_ptr)[2] argument
271 #define AR_BaBitmapLow(_ptr) (_ptr)[3] argument
274 #define AR_BaBitmapHigh(_ptr) (_ptr)[4] argument
287 #define AR_TxEVM0(_ptr) (_ptr)[6] argument
290 #define AR_TxEVM1(_ptr) (_ptr)[7] argument
293 #define AR_TxEVM2(_ptr) (_ptr)[8] argument
/freebsd-12.1/contrib/bmake/
H A Dbuf.h99 char *_ptr; \
102 _ptr = (bp)->buffer + _count; \
103 _ptr[-1] = (byte); \
104 _ptr[0] = 0; \
H A Dutil.c420 fakebuf._ptr = (void *)s; in vsnprintf()
/freebsd-12.1/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_shim.c777 vchi_readbuf_uint32(const void *_ptr) in vchi_readbuf_uint32() argument
779 const unsigned char *ptr = _ptr; in vchi_readbuf_uint32()
788 vchi_writebuf_uint32(void *_ptr, uint32_t value) in vchi_writebuf_uint32() argument
790 unsigned char *ptr = _ptr; in vchi_writebuf_uint32()
802 vchi_readbuf_uint16(const void *_ptr) in vchi_readbuf_uint16() argument
804 const unsigned char *ptr = _ptr; in vchi_readbuf_uint16()
813 vchi_writebuf_uint16(void *_ptr, uint16_t value) in vchi_writebuf_uint16() argument
815 unsigned char *ptr = _ptr; in vchi_writebuf_uint16()
/freebsd-12.1/sys/contrib/ncsw/inc/
H A Dncsw_ext.h49 #define PTR_TO_UINT(_ptr) ((uintptr_t)(_ptr)) argument
52 #define PTR_MOVE(_ptr, _offset) (void*)((uint8_t*)(_ptr) + (_offset)) argument
/freebsd-12.1/contrib/gcclibs/libiberty/
H A Dvsprintf.c43 b->_ptr = buf; in vsprintf()
47 b._ptr = buf; in vsprintf()
/freebsd-12.1/contrib/binutils/libiberty/
H A Dvsprintf.c43 b->_ptr = buf; in vsprintf()
47 b._ptr = buf; in vsprintf()
/freebsd-12.1/sys/dev/drm2/
H A Ddrm_hashtab.h42 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member) argument
/freebsd-12.1/sys/dev/drm/
H A Ddrm_hashtab.h42 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member) argument
/freebsd-12.1/contrib/elftoolchain/libelf/
H A Dlibelf.h198 Elf_Arsym *elf_getarsym(Elf *_elf, size_t *_ptr);
201 char *elf_getident(Elf *_elf, size_t *_ptr);
/freebsd-12.1/crypto/openssl/crypto/evp/
H A Dbio_ok.c426 static void longswap(void *_ptr, size_t len) in longswap() argument
437 unsigned char *p = _ptr, c; in longswap()
/freebsd-12.1/contrib/ncurses/ncurses/base/
H A Dvsscanf.c173 strbuf._ptr = strbuf._base = (unsigned char *) str; in vsscanf()
/freebsd-12.1/lib/libcuse/
H A Dcuse_lib.c139 cuse_vmoffset(void *_ptr) in cuse_vmoffset() argument
143 uint8_t *ptr = _ptr; in cuse_vmoffset()
/freebsd-12.1/lib/libutil/
H A Dlibutil.h101 void hexdump(const void *_ptr, int _length, const char *_hdr, int _flags);
/freebsd-12.1/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h698 #define pci_map_single(_hwdev, _ptr, _size, _dir) \ argument
700 (_ptr), (_size), (enum dma_data_direction)_dir)
/freebsd-12.1/sys/ofed/include/rdma/
H A Dib_verbs.h613 #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \ argument
615 (_ptr)->device = _device; \
616 (_ptr)->handler = _handler; \
617 INIT_LIST_HEAD(&(_ptr)->list); \
/freebsd-12.1/sys/dev/bhnd/bhndb/
H A Dbhndb.c1847 #define BHNDB_IO_MISC(_type, _ptr, _op, _size) \ argument
1851 _type _ptr datap, bus_size_t count) \
/freebsd-12.1/sys/dev/qlnx/qlnxe/
H A Decore_mcp.c58 #define DRV_INNER_WR(_p_hwfn, _p_ptt, _ptr, _offset, _val) \ argument
59 ecore_wr(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset), \
62 #define DRV_INNER_RD(_p_hwfn, _p_ptt, _ptr, _offset) \ argument
63 ecore_rd(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset))
/freebsd-12.1/contrib/ncurses/
H A Daclocal.m41796 strbuf._ptr = strbuf._base = (unsigned char *) str;
1807 strbuf._ptr = strbuf._base = (unsigned char *) str;
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsInstrInfo.td994 def uimm # I # _ptr : Operand<iPTR> {
/freebsd-12.1/contrib/binutils/bfd/
H A DChangeLog-00017825 * elf32-mips.c: mips_elf_{text,data}_{section,symbol}{,_ptr}: Remove.