Searched refs:direction (Results 151 - 175 of 230) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c1506 int direction; local
1518 for (direction = 0; direction < 2; direction ++)
1527 n = (direction == 0 ? mfsplay_tree_successor (t, k) : mfsplay_tree_predecessor (t, k));
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap_micro.c732 int direction = AVL_BEFORE; local
739 for (other = avl_walk(&zap->zap_m.zap_avl, mze, direction);
741 other = avl_walk(&zap->zap_m.zap_avl, other, direction)) {
755 if (direction == AVL_BEFORE) {
756 direction = AVL_AFTER;
/freebsd-10.0-release/sys/dev/usb/
H A Dusb_device.c174 * direction.
249 setup->type, setup->direction, setup->ep_index);
259 /* setup expected endpoint direction mask and value */
261 if (setup->direction == UE_DIR_RX) {
265 } else if (setup->direction == UE_DIR_TX) {
269 } else if (setup->direction == UE_DIR_ANY) {
270 /* match any endpoint direction */
274 /* match the given endpoint direction */
276 ea_val = (setup->direction & (UE_DIR_IN | UE_DIR_OUT));
328 * address" and "any direction" return
[all...]
H A Dusb_generic.c250 usb_config[1].direction = UE_DIR_ANY;
260 usb_config[0].direction = UE_DIR_TX;
319 usb_config[1].direction = UE_DIR_ANY;
329 usb_config[0].direction = UE_DIR_RX;
1516 usb_config[0].direction = ed->bEndpointAddress & (UE_DIR_OUT | UE_DIR_IN);
H A Dusb_compat_linux.c574 cfg[0].direction = addr & (UE_DIR_OUT | UE_DIR_IN);
806 cfg[0].direction = addr & (UE_DIR_OUT | UE_DIR_IN);
840 cfg[0].direction = addr & (UE_DIR_OUT | UE_DIR_IN);
1610 /* setup data transfer direction and length */
1616 /* setup data transfer direction */
/freebsd-10.0-release/sys/net/
H A Dpfvar.h624 u_int8_t direction; member in struct:pf_rule
776 u_int8_t direction; member in struct:pf_state_cmp
783 u_int8_t direction; member in struct:pf_state
868 u_int8_t direction; member in struct:pfsync_state
1189 u_int8_t dir; /* direction */
1436 u_int8_t direction; member in struct:pfioc_natlook
/freebsd-10.0-release/contrib/texinfo/info/
H A Dsession.c536 /* Find out which direction to scroll, and scroll the window in that
537 direction. Do this only if there would be a savings in redisplay
3411 DIR says which direction to search in. If it is positive, search
3657 int direction;
3661 direction = -1;
3666 direction = 1;
3688 direction < 0 ? _("Search backward") : _("Search"),
3725 active_window, direction, case_sensitive);
3746 _("Repeat last search in the same direction"))
3756 _("Repeat last search in the reverse direction"))
3647 int direction; local
3793 push_isearch(WINDOW *window, int search_index, int direction, int failing) argument
3809 pop_isearch(WINDOW *window, int *search_index, int *direction, int *failing) argument
[all...]
/freebsd-10.0-release/sys/netpfil/pf/
H A Dpf_ioctl.c812 PF_MD5_UPD(rule, direction);
1209 if (rule->rt && !rule->direction)
1460 if (newrule->rt && !newrule->direction)
1632 if (s->direction == PF_OUT) {
1800 int m = 0, direction = pnl->direction; local
1804 sidx = (direction == PF_IN) ? 1 : 0;
1805 didx = (direction == PF_IN) ? 0 : 1;
1823 state = pf_find_state_all(&key, direction, &m);
3276 sp->direction
[all...]
H A Dpf_norm.c887 else if (r->direction && r->direction != dir)
1011 * input direction. If we continued, it would
1134 else if (r->direction && r->direction != dir)
1307 else if (r->direction && r->direction != dir)
/freebsd-10.0-release/sys/dev/sound/pcm/
H A Ddsp.c507 * and it must be opened in opposite direction be it
558 * the non-open direction
843 panic("invalid/corrupted uio direction: %d", buf->uio_rw);
1004 if (volch->direction == PCMDIR_PLAY)
1013 ((j == SOUND_MIXER_PCM && volch->direction == PCMDIR_PLAY) ||
1014 (j == SOUND_MIXER_RECLEV && volch->direction == PCMDIR_REC))) {
2624 ai->busy = (ch->direction == PCMDIR_PLAY) ? OPEN_WRITE : OPEN_READ;
2638 * only one direction, so PCM_CAP_DUPLEX is out.
2645 ((ch->direction == PCMDIR_PLAY) ? PCM_CAP_OUTPUT : PCM_CAP_INPUT);
2671 if (ch->direction
[all...]
H A Dmixer.c180 if (c->direction == PCMDIR_PLAY &&
1121 * instances of same direction. What we do right now
1137 if (rdch == NULL && c->direction == PCMDIR_REC) {
1141 } else if (wrch == NULL && c->direction == PCMDIR_PLAY) {
H A Dfeeder.c469 if (ch->direction == PCMDIR_REC) {
H A Dfeeder_mixer.c290 if (c->direction == PCMDIR_REC)
/freebsd-10.0-release/sys/compat/ndis/
H A Dsubr_usbd.c94 .direction = UE_DIR_ANY,
104 .direction = UE_DIR_ANY,
656 cfg.direction = UE_GET_DIR(ep->bEndpointAddress);
/freebsd-10.0-release/sys/dev/usb/serial/
H A Du3g.c154 .direction = UE_DIR_OUT,
163 .direction = UE_DIR_IN,
172 .direction = UE_DIR_IN,
/freebsd-10.0-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_mlx_ts.c210 p_mgr->filter.direction = TS_IB_MAD_DIRECTION_IN;
/freebsd-10.0-release/contrib/tnftp/src/
H A Dftp.c558 switch (direction[0]) {
566 errx(1, "abortxfer: unknown direction `%s'", direction);
677 direction = "sent";
914 direction = "received";
/freebsd-10.0-release/sys/dev/hptmv/
H A Dgui_lib.c1413 DWORD direction = ((DWORD*)lpInBuffer)[2]; local
1425 if (nInBufferSize < sizeof(DWORD) * 4 + (direction? length : 0) ||
1426 nOutBufferSize < (direction? 0 : length))
1429 if (direction == 0) /* read */
/freebsd-10.0-release/contrib/ee/
H A Dee.c310 void move_rel P_((int direction, int lines));
1991 char direction = '\0'; local
2008 direction = 'u';
2013 direction = 'd';
2018 move_rel(direction, i);
2022 if (direction != 'd')
2941 move_rel(direction, lines) /* move relative to current line */
2942 int direction;
2948 if (direction == 'u')
/freebsd-10.0-release/contrib/dialog/
H A Dfselect.c336 scroll_list(int direction, LIST * list) argument
340 if (change_list(direction * length, list))
/freebsd-10.0-release/contrib/gdb/gdb/tui/
H A Dtui-win.c544 tui_scroll (enum tui_scroll_direction direction, argument
548 switch (direction)
/freebsd-10.0-release/sys/dev/ct/
H A Dct.c580 ct_xfer(struct ct_softc *ct, u_int8_t *data, int len, int direction, argument
610 if (direction == SCSI_LOW_READ)
/freebsd-10.0-release/sys/dev/usb/controller/
H A Dxhci.c132 uint8_t direction; member in struct:xhci_std_temp
1771 if (temp->direction == UE_DIR_IN)
1779 if (temp->direction == UE_DIR_IN)
1787 if (temp->direction == UE_DIR_IN)
1795 if (temp->direction == UE_DIR_IN)
1999 temp.direction = 0;
2026 /* set endpoint direction */
2027 temp.direction = UE_GET_DIR(xfer->endpointno);
2110 * endpoint direction.
2113 temp.direction
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Dip.c496 ip_LogDNS(const struct udphdr *uh, const char *direction) argument
548 direction, qclass, qtype, namewithdot);
/freebsd-10.0-release/contrib/libpcap/
H A Dpcap-linux.c1481 * Do checks based on packet direction.
1499 if (handle->direction == PCAP_D_IN)
1506 if (handle->direction == PCAP_D_OUT)
2396 * Set direction flag: Which packets do we accept on a forwarding
2404 handle->direction = d;
2410 * the direction of the packet.
2413 "Setting direction is not supported on SOCK_PACKET sockets");
2737 /* We need to save packet direction for IrDA decoding,
3862 * Do checks based on packet direction.
3878 if (handle->direction
[all...]

Completed in 1803 milliseconds

12345678910