Searched refs:sn (Results 1 - 25 of 156) sorted by relevance

1234567

/linux-master/arch/mips/math-emu/
H A Dieee754sp.c56 static unsigned int ieee754sp_get_rounding(int sn, unsigned int xm) argument
69 if (!sn) /* ?? */
73 if (sn) /* ?? */
83 * sn is sign
87 union ieee754sp ieee754sp_format(int sn, int xe, unsigned int xm) argument
105 return ieee754sp_zero(sn);
107 if (sn == 0)
112 if (sn == 0)
120 ieee754sp_get_rounding(sn, xm) >> (SP_FBITS + 1 + 3))
124 xm = ieee754sp_get_rounding(sn, x
[all...]
H A Dieee754dp.c56 static u64 ieee754dp_get_rounding(int sn, u64 xm) argument
69 if (!sn) /* ?? */
73 if (sn) /* ?? */
83 * sn is sign
87 union ieee754dp ieee754dp_format(int sn, int xe, u64 xm) argument
105 return ieee754dp_zero(sn);
107 if (sn == 0)
112 if (sn == 0)
120 ieee754dp_get_rounding(sn, xm) >> (DP_FBITS + 1 + 3))
124 xm = ieee754dp_get_rounding(sn, x
[all...]
H A Dieee754.h250 #define ieee754dp_inf(sn) (ieee754dp_spcvals[IEEE754_SPCVAL_PINFINITY+(sn)])
251 #define ieee754dp_zero(sn) (ieee754dp_spcvals[IEEE754_SPCVAL_PZERO+(sn)])
252 #define ieee754dp_one(sn) (ieee754dp_spcvals[IEEE754_SPCVAL_PONE+(sn)])
253 #define ieee754dp_ten(sn) (ieee754dp_spcvals[IEEE754_SPCVAL_PTEN+(sn)])
256 #define ieee754dp_max(sn) (ieee754dp_spcvals[IEEE754_SPCVAL_PMAX+(sn)])
[all...]
/linux-master/arch/mips/include/asm/sn/
H A Dagent.h14 #include <asm/sn/addrs.h>
15 #include <asm/sn/arch.h>
18 #include <asm/sn/sn0/hub.h>
20 #include <asm/sn/sn1/hub.h>
H A Darch.h15 #include <asm/sn/types.h>
17 #include <asm/sn/sn0/arch.h>
H A Dklkernvars.h17 #include <asm/sn/types.h>
H A Dkldir.h33 #include <asm/sn/sn0/kldir.h>
/linux-master/arch/mips/include/asm/mach-ip27/
H A Dmmzone.h5 #include <asm/sn/addrs.h>
6 #include <asm/sn/arch.h>
7 #include <asm/sn/agent.h>
8 #include <asm/sn/klkernvars.h>
/linux-master/arch/mips/sgi-ip27/
H A Dip27-console.c11 #include <asm/sn/addrs.h>
12 #include <asm/sn/agent.h>
13 #include <asm/sn/klconfig.h>
14 #include <asm/sn/ioc3.h>
H A Dip27-init.c21 #include <asm/sn/agent.h>
22 #include <asm/sn/types.h>
23 #include <asm/sn/klconfig.h>
24 #include <asm/sn/ioc3.h>
26 #include <asm/sn/gda.h>
27 #include <asm/sn/intr.h>
32 #include <asm/sn/launch.h>
33 #include <asm/sn/mapped_kernel.h>
H A Dip27-reset.c24 #include <asm/sn/addrs.h>
25 #include <asm/sn/agent.h>
26 #include <asm/sn/arch.h>
27 #include <asm/sn/gda.h>
H A Dip27-smp.c18 #include <asm/sn/agent.h>
19 #include <asm/sn/arch.h>
20 #include <asm/sn/gda.h>
21 #include <asm/sn/intr.h>
22 #include <asm/sn/klconfig.h>
23 #include <asm/sn/launch.h>
24 #include <asm/sn/mapped_kernel.h>
25 #include <asm/sn/types.h>
H A Dip27-klconfig.c14 #include <asm/sn/klconfig.h>
15 #include <asm/sn/arch.h>
16 #include <asm/sn/gda.h>
/linux-master/arch/mips/include/asm/sn/sn0/
H A Dhub.h27 #include <asm/sn/sn0/addrs.h>
28 #include <asm/sn/sn0/hubpi.h>
29 #include <asm/sn/sn0/hubmd.h>
30 #include <asm/sn/sn0/hubio.h>
31 #include <asm/sn/sn0/hubni.h>
32 //#include <asm/sn/sn0/hubcore.h>
/linux-master/arch/mips/pci/
H A Dpci-ip27.c13 #include <asm/sn/addrs.h>
14 #include <asm/sn/types.h>
15 #include <asm/sn/klconfig.h>
16 #include <asm/sn/agent.h>
17 #include <asm/sn/ioc3.h>
/linux-master/include/linux/platform_data/
H A Dxtalk-bridge.h9 #include <asm/sn/types.h>
/linux-master/drivers/media/pci/mgb4/
H A Dmgb4_sysfs_pci.c52 u32 sn = mgbdev->serial_number; local
54 return sprintf(buf, "%03d-%03d-%03d-%03d\n", sn >> 24, (sn >> 16) & 0xFF,
55 (sn >> 8) & 0xFF, sn & 0xFF);
/linux-master/net/sunrpc/auth_gss/
H A Dgss_rpc_upcall.c124 void init_gssp_clnt(struct sunrpc_net *sn) argument
126 mutex_init(&sn->gssp_lock);
127 sn->gssp_clnt = NULL;
132 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
136 mutex_lock(&sn->gssp_lock);
139 if (sn->gssp_clnt)
140 rpc_shutdown_client(sn->gssp_clnt);
141 sn->gssp_clnt = clnt;
143 mutex_unlock(&sn->gssp_lock);
147 void clear_gssp_clnt(struct sunrpc_net *sn) argument
157 get_gssp_clnt(struct sunrpc_net *sn) argument
171 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
[all...]
/linux-master/arch/mips/sgi-ip30/
H A Dip30-console.c5 #include <asm/sn/ioc3.h>
/linux-master/net/sunrpc/
H A Dsunrpc_syms.c36 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
54 INIT_LIST_HEAD(&sn->all_clients);
55 spin_lock_init(&sn->rpc_client_lock);
56 spin_lock_init(&sn->rpcb_clnt_lock);
71 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
77 WARN_ON_ONCE(!list_empty(&sn->all_clients));
H A Drpcb_clnt.c167 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
169 spin_lock(&sn->rpcb_clnt_lock);
170 if (sn->rpcb_users)
171 sn->rpcb_users++;
172 cnt = sn->rpcb_users;
173 spin_unlock(&sn->rpcb_clnt_lock);
180 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
181 struct rpc_clnt *clnt = sn->rpcb_local_clnt;
182 struct rpc_clnt *clnt4 = sn->rpcb_local_clnt4;
185 spin_lock(&sn
210 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
403 rpcb_register_call(struct sunrpc_net *sn, struct rpc_clnt *clnt, struct rpc_message *msg, bool is_set) argument
465 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
482 rpcb_register_inet4(struct sunrpc_net *sn, const struct sockaddr *sap, struct rpc_message *msg) argument
508 rpcb_register_inet6(struct sunrpc_net *sn, const struct sockaddr *sap, struct rpc_message *msg) argument
531 rpcb_unregister_all_protofamilies(struct sunrpc_net *sn, struct rpc_message *msg) argument
600 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); local
[all...]
H A Dstats.c290 struct sunrpc_net *sn; local
293 sn = net_generic(net, sunrpc_net_id);
294 return proc_create_data(name, 0, sn->proc_net_rpc, proc_ops, data);
307 struct sunrpc_net *sn; local
309 sn = net_generic(net, sunrpc_net_id);
310 remove_proc_entry(name, sn->proc_net_rpc);
324 struct sunrpc_net *sn; local
326 sn = net_generic(net, sunrpc_net_id);
327 remove_proc_entry(name, sn->proc_net_rpc);
333 struct sunrpc_net *sn; local
[all...]
/linux-master/tools/perf/util/
H A Dstrlist.h35 void strlist__remove(struct strlist *slist, struct str_node *sn);
63 static inline struct str_node *strlist__next(struct str_node *sn) argument
66 if (!sn)
68 rn = rb_next(&sn->rb_node);
/linux-master/net/smc/
H A Dsmc_pnet.c107 struct smc_net *sn; local
112 sn = net_generic(net, smc_net_id);
113 pnettable = &sn->pnettable;
190 struct smc_net *sn; local
194 sn = net_generic(net, smc_net_id);
195 pnettable = &sn->pnettable;
222 struct smc_net *sn; local
226 sn = net_generic(net, smc_net_id);
227 pnettable = &sn->pnettable;
483 struct smc_net *sn; local
606 struct smc_net *sn; local
728 struct smc_net *sn = net_generic(net, smc_net_id); local
747 struct smc_net *sn = net_generic(net, smc_net_id); local
773 struct smc_net *sn = net_generic(net, smc_net_id); local
828 struct smc_net *sn = net_generic(net, smc_net_id); local
879 struct smc_net *sn = net_generic(net, smc_net_id); local
960 struct smc_net *sn; local
1172 struct smc_net *sn; local
1201 struct smc_net *sn; local
[all...]
/linux-master/drivers/block/aoe/
H A Daoenet.c136 int sn; local
147 sn = sizeof(*h) + sizeof(*ah);
148 if (skb->len >= sn) {
149 sn -= skb_headlen(skb);
150 if (sn > 0 && !__pskb_pull_tail(skb, sn))

Completed in 185 milliseconds

1234567