Searched refs:rs (Results 151 - 175 of 206) sorted by relevance

123456789

/freebsd-11-stable/sys/rpc/
H A Dsvc.c941 enum replay_state rs; local
942 rs = replay_find(pool->sp_rcache, &msg,
944 switch (rs) {
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlvm.c209 static int l_strcmp (const TString *ls, const TString *rs) { argument
212 const char *r = getstr(rs);
213 size_t lr = rs->tsv.len;
/freebsd-11-stable/sys/dev/bwi/
H A Dbwimac.c1410 const struct ieee80211_rateset *rs)
1415 for (i = 0; i < rs->rs_nrates; ++i) {
1420 rs->rs_rates[i] & IEEE80211_RATE_VAL);
1432 rs->rs_rates[i] & IEEE80211_RATE_VAL,
1409 bwi_mac_set_ackrates(struct bwi_mac *mac, const struct ieee80211_rate_table *rt, const struct ieee80211_rateset *rs) argument
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_stub_funcs.h214 const struct ath_rx_status *rs);
/freebsd-11-stable/gnu/usr.bin/grep/
H A Ddfa.c2615 status_transit_state rs = TRANSIT_STATE_DONE; local
2628 rs = transit_state_singlebyte(d, s2, (*pp)++, &s1);
2652 return rs;
2669 status_transit_state rs; local
2692 status_transit_state rs; local
2693 rs = transit_state_singlebyte(d, s, *pp, &s1);
2696 if (rs == TRANSIT_STATE_DONE)
2712 rs = transit_state_consume_1char(d, s, pp, match_lens, &mbclen, &follows);
2721 rs = transit_state_consume_1char(d, s1, pp, NULL, &mbclen, &follows);
/freebsd-11-stable/sys/dev/isp/
H A Disp.c3761 sns_gid_xx_rsp_t *rs; local
3813 rs = (sns_gid_xx_rsp_t *) fcp->isp_scanscratch;
3816 if (rs->snscb_cthdr.ct_cmd_resp != LS_ACC) {
3819 if (rs->snscb_cthdr.ct_reason == 9 &&
3820 (rs->snscb_cthdr.ct_explanation == 0x07 ||
3821 rs->snscb_cthdr.ct_explanation == 0x0a)) {
3828 rs->snscb_cthdr.ct_reason,
3829 rs->snscb_cthdr.ct_explanation);
3836 if (rs->snscb_ports[portidx].control & 0x80)
3839 if ((rs
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf64-alpha.c2135 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh;
2141 for (rs = rsh; rs ; rs = rs->next)
2142 if (ri->rtype == rs->rtype && ri->srel == rs->srel)
2144 rs->count += ri->count;
2127 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh; local
/freebsd-11-stable/sys/arm64/include/
H A Dbus.h300 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
301 (*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
/freebsd-11-stable/sys/powerpc/include/
H A Dbus.h285 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
286 (*(t)->bs_alloc)(rs, re, s, a, b, c, ap, hp)
/freebsd-11-stable/sys/riscv/include/
H A Dbus.h300 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
301 (*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
/freebsd-11-stable/share/mk/
H A Dbsd.own.mk213 RSYMLINK?= -l rs
/freebsd-11-stable/usr.bin/gcore/
H A Delfcore.c87 static void elf_convert_gregset(elfcore_gregset_t *rd, struct reg *rs);
88 static void elf_convert_fpregset(elfcore_fpregset_t *rd, struct fpreg *rs);
/freebsd-11-stable/sys/net80211/
H A Dieee80211_mesh.c2714 const struct ieee80211_rateset *rs; local
2751 rs = ieee80211_get_suprates(ic, ic->ic_curchan);
2752 frm = ieee80211_add_rates(frm, rs);
2753 frm = ieee80211_add_xrates(frm, rs);
2774 const struct ieee80211_rateset *rs; local
2818 rs = ieee80211_get_suprates(ic, ic->ic_curchan);
2819 frm = ieee80211_add_rates(frm, rs);
2820 frm = ieee80211_add_xrates(frm, rs);
H A Dieee80211_tdma.c587 uint32_t rstamp = (uint32_t) le64toh(rs->tsf);
/freebsd-11-stable/sys/dev/wi/
H A Dif_wi.c244 struct ieee80211_rateset *rs; local
406 rs = &ic->ic_sup_rates[IEEE80211_MODE_11B];
411 rs->rs_nrates = 0;
414 rs->rs_rates[rs->rs_nrates++] = ratebuf[2+i];
/freebsd-11-stable/sys/dev/ale/
H A Dif_ale.c2463 struct rx_rs *rs; local
2488 rs = (struct rx_rs *)(rx_page->page_addr + rx_page->cons);
2489 seqno = ALE_RX_SEQNO(le32toh(rs->seqno));
2512 length = ALE_RX_BYTES(le32toh(rs->length));
2513 status = le32toh(rs->flags);
2540 m = m_devget((char *)(rs + 1), length - ETHER_CRC_LEN,
2552 vtags = ALE_RX_VLAN(le32toh(rs->vtags));
/freebsd-11-stable/contrib/gdb/gdb/
H A Darm-tdep.c1510 int rs = bits (inst, 8, 11); local
1511 shift = (rs == 15 ? pc_val + 8 : read_register (rs)) & 0xFF;
/freebsd-11-stable/contrib/lua/src/
H A Dlvm.c242 ** Compare two strings 'ls' x 'rs', returning an integer smaller-equal-
243 ** -larger than zero if 'ls' is smaller-equal-larger than 'rs'.
248 static int l_strcmp (const TString *ls, const TString *rs) { argument
251 const char *r = getstr(rs);
252 size_t lr = tsslen(rs);
259 if (len == lr) /* 'rs' is finished? */
262 return -1; /* 'ls' is smaller than 'rs' ('rs' is not finished) */
/freebsd-11-stable/sys/netpfil/pf/
H A Dpf.c2828 struct pf_ruleset *rs; member in struct:pf_anchor_stackframe
2848 struct pf_ruleset **rs, int n, struct pf_rule **r, struct pf_rule **a,
2865 f->rs = *rs;
2874 *rs = &f->child->ruleset;
2877 *rs = &(*r)->anchor->ruleset;
2879 *r = TAILQ_FIRST((*rs)->rules[n].active.ptr);
2884 struct pf_ruleset **rs, int n, struct pf_rule **r, struct pf_rule **a,
2917 *rs = &f->child->ruleset;
2918 *r = TAILQ_FIRST((*rs)
2847 pf_step_into_anchor(struct pf_anchor_stackframe *stack, int *depth, struct pf_ruleset **rs, int n, struct pf_rule **r, struct pf_rule **a, int *match) argument
2883 pf_step_out_of_anchor(struct pf_anchor_stackframe *stack, int *depth, struct pf_ruleset **rs, int n, struct pf_rule **r, struct pf_rule **a, int *match) argument
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pip.h278 uint64_t rs : 1; /**< Flag to store this packet in the work queue entry, if possible */ member in struct:__anon6171::__anon6172
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_rsu.c1224 struct ieee80211_rateset *rs; local
1263 rs = &ni->ni_rates;
1265 ni->ni_txrate = rs->rs_rates[rs->rs_nrates - 1];
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dia64.c2200 unsigned int rs, re;
2203 rs = 1;
2207 while (rs < 64 && call_used_regs[PR_REG (rs)])
2208 rs++;
2209 if (rs >= 64)
2211 for (re = rs + 1; re < 64 && ! call_used_regs[PR_REG (re)]; re++)
2220 if (re == rs + 1)
2221 fprintf (asm_out_file, "p%u", rs);
2223 fprintf (asm_out_file, "p%u-p%u", rs, r
2194 unsigned int rs, re; local
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dbus.h317 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
318 (*(t)->bs_alloc)((t), (rs), (re), (s), (a), (b), \
/freebsd-11-stable/sys/mips/include/
H A Dbus.h278 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
279 (*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
/freebsd-11-stable/sys/sys/
H A Dbus.h503 int bus_alloc_resources(device_t dev, struct resource_spec *rs,
505 void bus_release_resources(device_t dev, const struct resource_spec *rs,

Completed in 392 milliseconds

123456789