Searched refs:_p (Results 1 - 25 of 111) sorted by relevance

12345

/freebsd-13-stable/usr.sbin/autofs/autofs/
H A Dspecial_media9 local _fstype _fstype_and_label _label _p
11 for _p in ${providers}; do
12 _fstype_and_label="$(fstyp -l "/dev/${_p}" 2> /dev/null)"
30 echo "${_p}"
36 local _fstype _p
39 _p="$2"
44 echo "-mountprog=/usr/local/sbin/mount.exfat,fstype=${_fstype},nosuid :/dev/${_p}"
47 "Cannot mount ${_fstype} formatted device /dev/${_p}: Install sysutils/fusefs-exfat first"
53 echo "-mountprog=/usr/local/bin/ntfs-3g,fstype=${_fstype},nosuid :/dev/${_p}"
56 "Cannot mount ${_fstype} formatted device /dev/${_p}
[all...]
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Duaccess.h48 #define __get_user(_x, _p) ({ \
50 __typeof(*(_p)) __x; \
51 __err = linux_copyin((_p), &(__x), sizeof(*(_p))); \
56 #define __put_user(_x, _p) ({ \
57 __typeof(*(_p)) __x = (_x); \
58 linux_copyout(&(__x), (_p), sizeof(*(_p))); \
60 #define get_user(_x, _p) linux_copyin((_p),
[all...]
/freebsd-13-stable/sys/net/altq/
H A Daltq_rmclass_debug.h90 int *_p = &cbqtrace_ptr->count; \
91 *_p++ = ++cbqtrace_count; \
92 *_p++ = (int)(func); \
93 *_p++ = (int)(act); \
94 *_p++ = (int)(obj); \
95 if ((struct cbqtrace *)(void *)_p >= &cbqtrace_buffer[NCBQTRACE])\
98 cbqtrace_ptr = (struct cbqtrace *)(void *)_p; \
/freebsd-13-stable/lib/libbsdstat/
H A Dbsdstat.h52 #define BSDSTAT_DECL_METHODS(_p) \
54 void (*setfmt)(_p, const char *); \
56 void (*collect_cur)(_p); \
58 void (*collect_tot)(_p); \
60 void (*update_tot)(_p); \
62 int (*get_curstat)(_p, int, char [], size_t); \
64 int (*get_totstat)(_p, int, char [], size_t); \
66 void (*print_header)(_p, FILE *); \
68 void (*print_current)(_p, FILE *); \
70 void (*print_total)(_p, FIL
[all...]
/freebsd-13-stable/libexec/rc/rc.d/
H A Drfcomm_pppd_server86 local _profile _p
95 for _p in ${_profile} ; do
96 echo -n " ${_p}"
97 rfcomm_pppd_server_start_profile ${_p}
105 local _profile _p
114 for _p in ${_profile} ; do
115 echo -n " ${_p}"
116 rfcomm_pppd_server_stop_profile ${_p}
H A Dppp78 local _ppp_profile _p
87 for _p in $_ppp_profile; do
88 echo -n " $_p"
89 ppp_start_profile $_p
117 local _ppp_profile _p
126 for _p in $_ppp_profile; do
127 echo -n " $_p"
128 ppp_stop_profile $_p
/freebsd-13-stable/sys/i386/include/
H A Dieeefp.h162 fp_rnd_t _p; local
166 _p = (fp_rnd_t)((_cw & FP_RND_FLD) >> FP_RND_OFF);
170 return (_p);
185 fp_prec_t _p; local
189 _p = (fp_prec_t)((_cw & FP_PRC_FLD) >> FP_PRC_OFF);
193 return (_p);
214 fp_except_t _p; local
218 _p = (~_cw & FP_MSKS_FLD) >> FP_MSKS_OFF;
222 return (_p);
244 fp_except_t _p; local
[all...]
/freebsd-13-stable/lib/libc/stdio/
H A Drget.c54 return (*fp->_p++);
H A Dfgetln.c97 if ((p = memchr((void *)fp->_p, '\n', (size_t)fp->_r)) != NULL) {
104 ret = (char *)fp->_p;
105 *lenp = len = p - fp->_p;
108 fp->_p = p;
132 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
140 if ((p = memchr((void *)fp->_p, '\n', (size_t)fp->_r)) == NULL)
145 diff = p - fp->_p;
149 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
152 fp->_p = p;
H A Dfflush.c118 n = fp->_p - p; /* write this much */
124 fp->_p = p;
130 /* Reset _p and _w. */
131 if (p > fp->_p) {
133 memmove(fp->_p, p, n);
134 fp->_p += n;
H A Dfgetws.c77 src = fp->_p;
78 nl = memchr(fp->_p, '\n', fp->_r);
80 nl != NULL ? (nl - fp->_p + 1) : fp->_r,
95 src = memchr(fp->_p, '\0', fp->_r);
98 fp->_r -= (unsigned char *)src - fp->_p;
99 fp->_p = (unsigned char *)src;
H A Dfread.c111 fp->_bf._base = fp->_p = p;
124 fp->_bf._base = fp->_p = fp->_nbuf;
132 (void)memcpy((void *)p, (void *)fp->_p, (size_t)r);
133 fp->_p += r;
142 (void)memcpy((void *)p, (void *)fp->_p, resid);
144 fp->_p += resid;
H A Dungetc.c52 * Expand the ungetc buffer `in place'. That is, adjust fp->_p when
74 fp->_p = p;
83 fp->_p = p + i;
140 *--fp->_p = c;
151 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
152 fp->_p[-1] == c) {
153 fp->_p--;
163 fp->_up = fp->_p;
167 fp->_p = &fp->_ubuf[sizeof(fp->_ubuf) - 1];
H A Dfvwrite.c70 #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n))
111 size_t blen = fp->_p - fp->_bf._base;
123 fp->_p = fp->_bf._base + blen;
132 fp->_p += w;
135 } else if (fp->_p > fp->_bf._base && len > w) {
139 fp->_p += w;
152 fp->_p += w;
176 if (fp->_p > fp->_bf._base && s > w) {
179 fp->_p += w;
190 fp->_p
[all...]
H A Dgetdelim.c138 while ((endp = memchr(fp->_p, delim, fp->_r)) == NULL) {
139 if (sappend(linep, &linelen, linecapp, fp->_p, fp->_r))
148 if (sappend(linep, &linelen, linecapp, fp->_p, endp - fp->_p))
150 fp->_r -= endp - fp->_p;
151 fp->_p = endp;
H A Dvasprintf.c54 f._bf._base = f._p = malloc(128);
68 *f._p = '\0';
H A Dvsprintf.c60 f._bf._base = f._p = (unsigned char *)str;
63 *f._p = 0;
H A Dwbuf.c82 n = fp->_p - fp->_bf._base;
89 *fp->_p++ = c;
/freebsd-13-stable/usr.sbin/periodic/etc/weekly/
H A D340.noid36 _p=${param#path=}
37 if [ -z "$_p" -o "$_p" = / ]; then
41 exclude="$exclude -path $_p -prune -or"
/freebsd-13-stable/sys/contrib/openzfs/lib/libspl/include/sys/
H A Dtypes.h61 } _p; member in union:__anon10588
71 } _p; member in union:__anon10590
/freebsd-13-stable/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh53 local _p
54 _p="$1"
67 cat ${_p}.1
69 cat ${_p}
77 local _p
78 _p="$1"
80 if test ! -s ${_p}.1; then
82 debug_err ${_p}
84 read line < ${_p}.1
87 if test "${l}" = "${_p}"; the
[all...]
/freebsd-13-stable/crypto/openssl/include/crypto/
H A Dbn_dh.h11 extern const BIGNUM _bignum_dh##x##_p; \
/freebsd-13-stable/contrib/ntp/sntp/libopts/
H A Dautoopts.h110 #define C(_t,_p) ((_t)VOIDP(_p))
260 #define AGREALOC(_p, _c, _w) ao_realloc(VOIDP(_p), (size_t)_c)
261 #define AGFREE(_p) free(VOIDP(_p))
262 #define AGDUPSTR(_p, _s, _w) (_p = ao_strdup(_s))
270 #define ao_free(_p) free(VOIDP(_p))
[all...]
/freebsd-13-stable/sys/amd64/include/
H A Dieeefp.h191 fp_rnd_t _p; local
196 _p = (fp_rnd_t)((_cw & FP_RND_FLD) >> FP_RND_OFF);
204 return (_p);
224 fp_prec_t _p; local
228 _p = (fp_prec_t)((_cw & FP_PRC_FLD) >> FP_PRC_OFF);
232 return (_p);
253 fp_except_t _p; local
258 _p = (~_cw & FP_MSKS_FLD) >> FP_MSKS_OFF;
267 return (_p);
/freebsd-13-stable/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h216 #define AR8X16_CPU_MIRROR_PORT(_p) ((_p) << AR8X16_MIRROR_PORT_SHIFT)
243 #define AR8X16_REG_PORT_BASE(_p) (0x0100 + (_p) * 0x0100)
245 #define AR8X16_REG_PORT_STS(_p) (AR8X16_REG_PORT_BASE((_p)) + 0x0000)
259 #define AR8X16_REG_PORT_CTRL(_p) (AR8X16_REG_PORT_BASE((_p)) + 0x0004)
281 #define AR8X16_REG_PORT_VLAN(_p) (AR8X16_REG_PORT_BASE((_p))
[all...]

Completed in 360 milliseconds

12345