Searched refs:_p (Results 1 - 25 of 101) sorted by last modified time

12345

/freebsd-10.0-release/include/
H A Dstdio.h104 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
111 unsigned char *_p; /* (*) current position in (some) buffer */ member in struct:__sFILE
128 unsigned char *_up; /* saved _p when _p is doing ungetc data */
175 #define __SMOD 0x2000 /* true => fgetln modified _p text */
457 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
459 static __inline int __sputc(int _c, FILE *_p) { argument
460 if (--_p->_w >= 0 || (_p->_w >= _p
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ec/
H A Dectest.c771 #define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
788 #define CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
803 #define CHAR2_CURVE_TEST(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
804 if (!BN_hex2bn(&p, _p)) ABORT; \
808 CHAR2_CURVE_TEST_INTERNAL(_name, _p, _a, _b, _x, _y, _y_bit, _order, _cof, _degree, _variable) \
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dglob.c600 compare_gps(const void *_p, const void *_q) argument
602 const struct glob_path_stat *p = (const struct glob_path_stat *)_p;
/freebsd-10.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_freebsd_inc.h182 #define INT_2_NOISE_PWR_DBM(_p) (((_p) - NOISE_PWR_DATA_OFFSET) << 2)
183 #define NOISE_PWR_DBM_2_INT(_p) ((((_p) + 3) >> 2) + NOISE_PWR_DATA_OFFSET)
184 #define NOISE_PWR_DBM_2_DEC(_p) (((-(_p)) & 3) * 25)
/freebsd-10.0-release/sys/contrib/altq/altq/
H A Daltq_rmclass_debug.h89 int *_p = &cbqtrace_ptr->count; \
90 *_p++ = ++cbqtrace_count; \
91 *_p++ = (int)(func); \
92 *_p++ = (int)(act); \
93 *_p++ = (int)(obj); \
94 if ((struct cbqtrace *)(void *)_p >= &cbqtrace_buffer[NCBQTRACE])\
97 cbqtrace_ptr = (struct cbqtrace *)(void *)_p; \
/freebsd-10.0-release/sys/contrib/ngatm/netnatm/msg/
H A Duni_ie.c50 #define UNUSED(_p) do { (void)(_p); } while (0)
/freebsd-10.0-release/sys/i386/include/
H A Dieeefp.h158 fp_rnd_t _p; local
162 _p = (fp_rnd_t)((_cw & FP_RND_FLD) >> FP_RND_OFF);
166 return (_p);
181 fp_prec_t _p; local
185 _p = (fp_prec_t)((_cw & FP_PRC_FLD) >> FP_PRC_OFF);
189 return (_p);
210 fp_except_t _p; local
214 _p = (~_cw & FP_MSKS_FLD) >> FP_MSKS_OFF;
218 return (_p);
240 fp_except_t _p; local
[all...]
/freebsd-10.0-release/sys/net/
H A Dif_lagg.h261 #define LAGG_RLOCK(_sc, _p) rm_rlock(&(_sc)->sc_mtx, (_p))
263 #define LAGG_RUNLOCK(_sc, _p) rm_runlock(&(_sc)->sc_mtx, (_p))
/freebsd-10.0-release/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h140 #define AR8X16_CPU_MIRROR_PORT(_p) ((_p) << AR8X16_MIRROR_PORT_SHIFT)
165 #define AR8X16_REG_PORT_BASE(_p) (0x0100 + (_p) * 0x0100)
167 #define AR8X16_REG_PORT_STS(_p) (AR8X16_REG_PORT_BASE((_p)) + 0x0000)
181 #define AR8X16_REG_PORT_CTRL(_p) (AR8X16_REG_PORT_BASE((_p)) + 0x0004)
203 #define AR8X16_REG_PORT_VLAN(_p) (AR8X16_REG_PORT_BASE((_p))
[all...]
/freebsd-10.0-release/sys/dev/etherswitch/rtl8366/
H A Drtl8366rbvar.h156 #define RTL8366RB_MCTLR_RESET_PORT(_p) \
157 (1 << ((_p) + 2))
/freebsd-10.0-release/sys/dev/nxge/include/
H A Dxge-list.h158 #define xge_list_for_each(_p, _h) \
159 for (_p = (_h)->next, xge_os_prefetch(_p->next); _p != (_h); \
160 _p = _p->next, xge_os_prefetch(_p->next))
162 #define xge_list_for_each_safe(_p, _n, _h) \
163 for (_p = (_h)->next, _n = _p
[all...]
H A Dxge-os-pal.h94 char *_p = tb->msg; \
97 _p = tb->msg + xge_os_strlen(tb->msg); \
99 xge_os_vasprintf(_p, fmt); \
/freebsd-10.0-release/sys/dev/nxge/xgehal/
H A Dxgehal-stats.c372 #define set_latest_stat_link_cnt(_link, _p) \
373 hldev->stats.pcim_info_latest->link_info[_link]._p = \
374 ((hldev->stats.pcim_info->link_info[_link]._p >= \
375 hldev->stats.pcim_info_saved->link_info[_link]._p) ? \
376 hldev->stats.pcim_info->link_info[_link]._p - \
377 hldev->stats.pcim_info_saved->link_info[_link]._p : \
378 ((-1) - hldev->stats.pcim_info_saved->link_info[_link]._p) + \
379 hldev->stats.pcim_info->link_info[_link]._p)
382 #define set_latest_stat_aggr_cnt(_aggr, _p) \
383 hldev->stats.pcim_info_latest->aggr_info[_aggr]._p
[all...]
/freebsd-10.0-release/sys/dev/amr/
H A Damr.c752 void *_p; member in union:__anon7387
771 arg._p = (void *)addr;
/freebsd-10.0-release/sys/dev/e1000/
H A De1000_regs.h202 /* Queues priority masks where _n and _p can be 0-3. */
203 #define E1000_TQAVARBCTRL_QUEUE_PRI(_n, _p) ((_p) << (2 * _n))
/freebsd-10.0-release/sys/dev/ixgbe/
H A Dixgbe_osdep.h105 #define UNREFERENCED_PARAMETER(_p)
106 #define UNREFERENCED_1PARAMETER(_p)
107 #define UNREFERENCED_2PARAMETER(_p, _q)
108 #define UNREFERENCED_3PARAMETER(_p, _q, _r)
109 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s)
/freebsd-10.0-release/sys/dev/drm/
H A Dmach64_drv.h741 #define DMASETPTR( _p ) \
743 _buf = (_p); \
/freebsd-10.0-release/sys/dev/vxge/include/
H A Dvxge-list.h162 #define vxge_list_for_each(_p, _h) \
163 for (_p = (_h)->next, vxge_os_prefetch(_p->next); _p != (_h); \
164 _p = _p->next, vxge_os_prefetch(_p->next))
166 #define vxge_list_for_each_safe(_p, _n, _h) \
167 for (_p = (_h)->next, _n = _p
[all...]
/freebsd-10.0-release/sys/dev/ath/
H A Dif_athvar.h1439 #define ath_hal_spectral_get_config(_ah, _p) \
1440 ((*(_ah)->ah_spectralGetConfig)((_ah), (_p)))
1441 #define ath_hal_spectral_configure(_ah, _p) \
1442 ((*(_ah)->ah_spectralConfigure)((_ah), (_p)))
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Defsys.h204 #define __drv_when(_p, _c)
700 #define EFSYS_KMEM_ALLOC(_esip, _size, _p) \
703 (_p) = malloc((_size), M_SFXGE, M_WAITOK|M_ZERO); \
707 #define EFSYS_KMEM_FREE(_esip, _size, _p) \
711 free((_p), M_SFXGE); \
/freebsd-10.0-release/sys/ofed/include/linux/
H A Dkernel.h128 __typeof(((type *)0)->member) *_p = (ptr); \
129 (type *)((char *)_p - offsetof(type, member)); \
H A Duaccess.h31 #define get_user(_x, _p) -copyin((_p), &(_x), sizeof(*(_p)))
32 #define put_user(_x, _p) -copyout(&(_x), (_p), sizeof(*(_p)))
/freebsd-10.0-release/sys/netinet/libalias/
H A Dalias_mod.c174 LibAliasAttachHandlers(struct proto_handler *_p) argument
181 if (*((int *)&_p[i]) == EOH)
183 error = _attach_handler(&_p[i]);
192 LibAliasDetachHandlers(struct proto_handler *_p) argument
199 if (*((int *)&_p[i]) == EOH)
201 error = _detach_handler(&_p[i]);
210 detach_handler(struct proto_handler *_p) argument
216 error = _detach_handler(_p);
/freebsd-10.0-release/sys/powerpc/wii/
H A Dwii_gpio.c60 #define WIIGPIO_PINBANK(_p) ((_p) / (WIIGPIO_NPINS / 2))
61 #define WIIGPIO_PINMASK(_p) (1 << ((_p) % (WIIGPIO_NPINS / 2)))
/freebsd-10.0-release/sys/sys/
H A Dpmc.h965 int (*pmd_switch_in)(struct pmc_cpu *_p, struct pmc_process *_pp);
966 int (*pmd_switch_out)(struct pmc_cpu *_p, struct pmc_process *_pp);

Completed in 220 milliseconds

12345