Searched refs:up (Results 76 - 100 of 349) sorted by relevance

1234567891011>>

/freebsd-11.0-release/sys/compat/ndis/
H A Dwinx64_wrap.S41 * Wrapper for handling up to 16 arguments. We can't really
106 mov %r10,%rdi # set up arg0 (%rcx -> %rdi)
107 mov %rdx,%rsi # set up arg1 (%rdx -> %rsi)
108 mov %r8,%rdx # set up arg2 (%r8 -> %rdx)
109 mov %r9,%rcx # set up arg3 (%r9 -> %rcx)
110 mov 40+8(%rbp),%r8 # set up arg4 (stack+40 -> %r8)
111 mov 48+8(%rbp),%r9 # set up arg5 (stack+48 -> %r9)
/freebsd-11.0-release/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_util.c104 up(&queue->push);
115 up(&queue->push); // We haven't removed anything from the queue.
152 up(&queue->pop);
/freebsd-11.0-release/tools/tools/net80211/scripts/
H A Dsetup.updown.wpa44 ifconfig $BRIDGE addm $WIRED addm $WLAN up
45 ifconfig $WLAN up
46 # ifconfig $WIRED up
/freebsd-11.0-release/contrib/gcclibs/libdecnumber/
H A DdecNumber.c57 /* precision (up to 999,999,999 digits) and arbitrary exponent */
145 /* numbers up to four digits, using appropriate constants. This */
200 /* of 17 [we only need up to **4] */
366 Unit *up; /* .. */ local
524 /* [up to 1999999999 is OK, for example 1E-1000000998] */
581 up = res + D2U (d) - 1; /* -> msu */
582 *up = 0;
591 *up = (Unit) (X10 (*up) + (Int) * c - (Int) '0');
595 if (up
2010 const Unit *up = dn->lsu + D2U (dn->digits) - 1; /* -> msu [input pointer] */ local
3292 Unit *up; /* .. */ local
4373 Unit *up; /* -> current Unit */ local
4509 Unit *target, *up; /* work */ local
4670 const Unit *up; /* work */ local
4981 Unit *up; /* work */ local
5012 Unit *up, *sup; /* work */ local
5225 Unit *up; /* work */ local
5370 const Unit *up; /* work */ local
5565 const Unit *up = uar + len - 1; /* -> msu */ local
5606 const Unit *up; /* work */ local
5768 const Unit *up; /* work */ local
[all...]
/freebsd-11.0-release/sys/netinet/
H A Dudp_usrreq.c254 struct udpcb *up; local
256 up = uma_zalloc(V_udpcb_zone, M_NOWAIT | M_ZERO);
257 if (up == NULL)
259 inp->inp_ppcb = up;
264 udp_discardcb(struct udpcb *up) argument
267 uma_zfree(V_udpcb_zone, up);
294 * contains the source address. If the socket ends up being an IPv6 socket,
317 struct udpcb *up; local
324 up = intoudpcb(inp);
325 if (up
709 struct udpcb *up; local
802 struct udpcb *up; local
986 struct udpcb *up; local
1428 struct udpcb *up; local
1588 struct udpcb *up; local
1771 struct udpcb *up; local
1866 struct udpcb *up; local
[all...]
/freebsd-11.0-release/sys/dev/usb/
H A Dusb_hub.h68 void usb_bus_port_set_device(struct usb_bus *bus, struct usb_port *up,
71 struct usb_port *up);
/freebsd-11.0-release/contrib/gcclibs/libiberty/
H A Dsafe-ctype.c136 #define up _sch_isupper macro
143 #define U (const unsigned short) (up|is |pr) /* upper case letter */
144 #define XU (const unsigned short) (up|is|xd|pr) /* uppercase hex digit */
/freebsd-11.0-release/contrib/binutils/libiberty/
H A Dsafe-ctype.c136 #define up _sch_isupper macro
143 #define U (const unsigned short) (up|is |pr) /* upper case letter */
144 #define XU (const unsigned short) (up|is|xd|pr) /* uppercase hex digit */
/freebsd-11.0-release/contrib/ipfilter/ipsend/
H A Dsock.c19 * which ends up including <sys/device.h> for vax. See PR#32907
208 struct user *up; local
214 up = (struct user *)malloc(sizeof(*up));
216 if (KMCPY(up, p->p_uarea, sizeof(*up)) == -1)
222 if (KMCPY(up, names[2].n_value, sizeof(*up)) == -1)
229 o = (struct file **)calloc(1, sizeof(*o) * (up->u_lastfile + 1));
230 if (KMCPY(o, up
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h244 // Opens the file 'file_name" and reads up to 'max_len' bytes.
385 unsigned long up; // NOLINT local
388 up = SANITIZER_WORDSIZE - 1 - __builtin_clzll(x);
390 up = SANITIZER_WORDSIZE - 1 - __builtin_clzl(x);
393 _BitScanReverse64(&up, x);
395 _BitScanReverse(&up, x);
397 return up;
402 unsigned long up; // NOLINT local
405 up = __builtin_ctzll(x);
407 up
[all...]
/freebsd-11.0-release/share/examples/jails/
H A Djib200 # each parent interface up to 15 times under the same jail
297 # Bring the interface up
298 ifconfig $iface up || return
305 ifconfig "$iface$bridge" up || return
315 ifconfig "e${i}a_$name" up || return
316 ifconfig "e${i}b_$name" up || return
/freebsd-11.0-release/sys/compat/linuxkpi/common/include/linux/
H A Dsemaphore.h49 #define up(_sem) sema_post(&(_sem)->sema) macro
/freebsd-11.0-release/contrib/ntp/ntpd/
H A Drefclock_tsyncpci.c234 * structure for looking up a reference ID from a reference name
271 tsync_start, /* start up driver */
322 TsyncUnit *up; local
336 if (!(up = (TsyncUnit*)emalloc(sizeof(TsyncUnit))))
342 up->refPrefer = peer->flags & FLAG_PREFER;
345 up->refStratum = STRATUM_UNSPEC;
346 strncpy((char *)&up->refId, TSYNC_REF_LOCAL, TSYNC_REF_LEN);
349 pp->unitptr = (caddr_t)up;
393 TsyncUnit *up; local
524 up
[all...]
/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv6localicmp.ksh49 if ! ifconfig lo0 inet6 plumb up; then
/freebsd-11.0-release/tools/tools/net80211/scripts/mesh/
H A Dtopology.line38 ifconfig $WLAN up
H A Dtopology.star38 ifconfig $WLAN up
H A Dtopology.tree47 ifconfig $WLAN up
/freebsd-11.0-release/contrib/tcsh/
H A Dsh.misc.c91 blkend(Char **up) argument
94 while (*up)
95 up++;
96 return (up);
145 blkcat(Char **up, Char **vp) argument
148 (void) blkcpy(blkend(up), vp);
149 return (up);
231 blkspl(Char **up, Char **vp) argument
233 Char **wp = xcalloc(blklen(up) + blklen(vp) + 1, sizeof(Char **));
235 (void) blkcpy(wp, up);
[all...]
/freebsd-11.0-release/usr.bin/localedef/
H A Dctype.c297 _FileRuneEntry *up = NULL; local
442 up[rl.mapupper_ext_nranges-1].max = wc;
446 up = realloc(up,
447 sizeof (*up) * rl.mapupper_ext_nranges);
448 up[rl.mapupper_ext_nranges - 1].min = wc;
449 up[rl.mapupper_ext_nranges - 1].max = wc;
450 up[rl.mapupper_ext_nranges - 1].map = ctn->toupper;
458 (wr_category(up, sizeof (*up) * r
[all...]
/freebsd-11.0-release/sys/dev/ixgbe/
H A Dixgbe_dcb.c201 * updated before calling this routine to use current up-to maps.
206 int up; local
212 for (*pfc_up = 0, up = 0; up < IXGBE_DCB_MAX_USER_PRIORITY; up++) {
213 if (tc_config[map[up]].pfc != ixgbe_dcb_pfc_disabled)
214 *pfc_up |= 1 << up;
257 u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up) argument
260 u8 prio_mask = 1 << up;
283 u8 up; local
[all...]
/freebsd-11.0-release/sys/netinet6/
H A Dudp6_usrreq.c144 struct udpcb *up; local
151 up = intoudpcb(inp);
152 if (up->u_tun_func != NULL) {
155 (*up->u_tun_func)(n, off, inp, (struct sockaddr *)fromsa,
156 up->u_tun_ctx);
202 struct udpcb *up; local
476 up = intoudpcb(inp);
478 if (up->u_rxcslen == 0 || up->u_rxcslen > ulen) {
563 struct udpcb *up; local
819 struct udpcb *up; local
1151 struct udpcb *up; local
[all...]
/freebsd-11.0-release/sys/boot/kshim/
H A Dbsd_kernel.c1160 usb_process_init_sub(struct usb_process *up) argument
1162 TAILQ_INIT(&up->up_qhead);
1164 cv_init(&up->up_cv, "-");
1165 cv_init(&up->up_drain, "usbdrain");
1167 up->up_mtx = &usb_proc_mtx;
1184 usb_do_process(struct usb_process *up) argument
1192 pm = TAILQ_FIRST(&up->up_qhead);
1200 if (pm == TAILQ_FIRST(&up->up_qhead)) {
1202 TAILQ_REMOVE(&up->up_qhead, pm, pm_qentry);
1213 usb_proc_msignal(struct usb_process *up, voi argument
1282 usb_proc_is_gone(struct usb_process *up) argument
1295 usb_proc_mwait(struct usb_process *up, void *_pm0, void *_pm1) argument
[all...]
/freebsd-11.0-release/sys/dev/netmap/
H A Dnetmap_vale.c201 /* Indexes of active ports (up to active_ports)
579 vpna->up.nm_bdg_ctl = netmap_vp_bdg_ctl;
580 netmap_adapter_get(&vpna->up);
635 ND("checking %s", vpna->up.name);
636 if (!strcmp(vpna->up.name, nr_name)) {
637 netmap_adapter_get(&vpna->up);
639 *na = &vpna->up;
716 ND("if %s refs %d", ifname, vpna->up.na_refcount);
718 *na = &vpna->up;
845 if (namelen) { /* look up indexe
[all...]
/freebsd-11.0-release/sys/powerpc/powerpc/
H A Dcopyinout.c86 /* Try lockless look-up first */
179 char *up, *p; local
192 up = udaddr;
202 up += l;
217 const char *up; local
231 up = udaddr;
241 up += l;
253 const char *up; local
259 up = udaddr;
264 if ((c = fubyte(up
[all...]
/freebsd-11.0-release/bin/ed/
H A Dsub.c116 undo_t *up; local
131 up = NULL;
141 } else if (up)
142 up->t = get_addressed_line_node(current_addr);
143 else if ((up = push_undo_stack(UADD,

Completed in 460 milliseconds

1234567891011>>