Searched refs:xp (Results 1 - 25 of 75) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/lib/
H A Ddiv64-generic.c9 u64 __div64_32(u64 *xp, u32 y) argument
12 u64 q = __xdiv64_32(*xp, y);
14 rem = *xp - q * y;
15 *xp = q;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/seq/instr/
H A Dainstr_gf1.c51 struct gf1_xwave xp; local
57 if (*len < (long)sizeof(xp))
59 if (copy_from_user(&xp, *data, sizeof(xp)))
61 *data += sizeof(xp);
62 *len -= sizeof(xp);
66 wp->share_id[0] = le32_to_cpu(xp.share_id[0]);
67 wp->share_id[1] = le32_to_cpu(xp.share_id[1]);
68 wp->share_id[2] = le32_to_cpu(xp.share_id[2]);
69 wp->share_id[3] = le32_to_cpu(xp
198 struct gf1_xwave xp; local
[all...]
H A Dainstr_iw.c129 struct iwffff_xwave xp; local
135 if (*len < (long)sizeof(xp))
137 if (copy_from_user(&xp, *data, sizeof(xp)))
139 *data += sizeof(xp);
140 *len -= sizeof(xp);
144 wp->share_id[0] = le32_to_cpu(xp.share_id[0]);
145 wp->share_id[1] = le32_to_cpu(xp.share_id[1]);
146 wp->share_id[2] = le32_to_cpu(xp.share_id[2]);
147 wp->share_id[3] = le32_to_cpu(xp
401 struct iwffff_xwave xp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dpgtable-2level.h36 #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
37 #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
39 static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *xp) argument
41 *xp = __pte(0);
45 static inline pte_t native_ptep_get_and_clear(pte_t *xp) argument
47 return __pte(xchg(&xp->pte_low, 0));
50 #define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/include/
H A Dxfrm.h10 int selinux_xfrm_policy_alloc(struct xfrm_policy *xp,
13 void selinux_xfrm_policy_free(struct xfrm_policy *xp);
14 int selinux_xfrm_policy_delete(struct xfrm_policy *xp);
19 int selinux_xfrm_policy_lookup(struct xfrm_policy *xp, u32 fl_secid, u8 dir);
21 struct xfrm_policy *xp, struct flowi *fl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_extent.c73 * xp - pointer to an xad. on entry, xad describes an
86 extAlloc(struct inode *ip, s64 xlen, s64 pno, xad_t * xp, bool abnr) argument
107 if ((hint = addressXAD(xp))) {
109 nxlen = lengthXAD(xp);
119 if (offsetXAD(xp) + nxlen == xoff &&
120 abnr == ((xp->flag & XAD_NOTRECORDED) ? true : false))
173 XADaddress(xp, nxaddr);
174 XADlength(xp, nxlen);
175 XADoffset(xp, xoff);
176 xp
214 extRealloc(struct inode *ip, s64 nxlen, xad_t * xp, bool abnr) argument
362 extHint(struct inode *ip, s64 offset, xad_t * xp) argument
436 extRecord(struct inode *ip, xad_t * xp) argument
468 extFill(struct inode *ip, xad_t * xp) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpi-pow.c171 mpi_ptr_t xp; local
178 xp = xp_marker = mpi_alloc_limb_space( 2 * (msize + 1), msec );
204 /*mpih_mul_n(xp, rp, rp, rsize);*/
206 _gcry_mpih_sqr_n_basecase( xp, rp, rsize );
220 _gcry_mpih_sqr_n (xp, rp, rsize, tspace);
226 _gcry_mpih_divrem(xp + msize, 0, xp, xsize, mp, msize);
230 tp = rp; rp = xp; xp = tp;
235 /*mpih_mul( xp, r
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/sn/kernel/
H A DMakefile18 obj-$(CONFIG_IA64_SGI_SN_XP) += xp.o
19 xp-y := xp_main.o xp_nofault.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/xfrm/
H A Dxfrm_user.c972 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut, argument
977 xp->xfrm_nr = nr;
979 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1071 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p) argument
1073 xp->priority = p->priority;
1074 xp->index = p->index;
1075 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1076 memcpy(&xp->lft, &p->lft, sizeof(xp
1082 copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir) argument
1098 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL); local
1128 struct xfrm_policy *xp; local
1169 copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb) argument
1228 copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb) argument
1259 dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr) argument
1314 xfrm_policy_netlink(struct sk_buff *in_skb, struct xfrm_policy *xp, int dir, u32 seq) argument
1342 struct xfrm_policy *xp; local
1596 struct xfrm_policy *xp; local
1689 struct xfrm_policy *xp; local
2214 build_acquire(struct sk_buff *skb, struct xfrm_state *x, struct xfrm_tmpl *xt, struct xfrm_policy *xp, int dir) argument
2252 xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt, struct xfrm_policy *xp, int dir) argument
2283 struct xfrm_policy *xp; local
2334 build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp, int dir, struct km_event *c) argument
2363 xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c) argument
2385 xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c) argument
2476 xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c) argument
[all...]
H A Dxfrm_policy.c273 struct xfrm_policy *xp = (struct xfrm_policy*)data; local
279 read_lock(&xp->lock);
281 if (xp->dead)
284 dir = xfrm_policy_id2dir(xp->index);
286 if (xp->lft.hard_add_expires_seconds) {
287 long tmo = xp->lft.hard_add_expires_seconds +
288 xp->curlft.add_time - now;
294 if (xp->lft.hard_use_expires_seconds) {
295 long tmo = xp->lft.hard_use_expires_seconds +
296 (xp
2156 xfrm_audit_log(uid_t auid, u32 sid, int type, int result, struct xfrm_policy *xp, struct xfrm_state *x) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Droqvideodec.c42 int vqid, bpos, xpos, ypos, xp, yp, x, y, mx, my; local
77 for (xp = xpos; xp < xpos + 16; xp += 8) {
92 ff_apply_motion_8x8(ri, xp, yp, mx, my);
96 ff_apply_vector_4x4(ri, xp, yp, ri->cb2x2 + qcell->idx[0]);
97 ff_apply_vector_4x4(ri, xp+4, yp, ri->cb2x2 + qcell->idx[1]);
98 ff_apply_vector_4x4(ri, xp, yp+4, ri->cb2x2 + qcell->idx[2]);
99 ff_apply_vector_4x4(ri, xp+4, yp+4, ri->cb2x2 + qcell->idx[3]);
103 x = xp;
[all...]
H A Dmpegaudioenc.c198 const int *xp = costab32; local
244 x1 = MUL((t[8] - x2), xp[0]);
245 x2 = MUL((t[8] + x2), xp[1]);
254 xp += 2;
258 xr = MUL(t[28],xp[0]);
262 xr = MUL(t[4],xp[1]);
266 xr = MUL(t[20],xp[2]);
270 xr = MUL(t[12],xp[3]);
275 xp += 4;
278 xr = MUL(tab[30-i*4],xp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509v3/
H A Dv3_purp.c67 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
68 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
69 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
71 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
74 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
248 int X509_PURPOSE_get_id(X509_PURPOSE *xp) argument
250 return xp
253 X509_PURPOSE_get0_name(X509_PURPOSE *xp) argument
258 X509_PURPOSE_get0_sname(X509_PURPOSE *xp) argument
263 X509_PURPOSE_get_trust(X509_PURPOSE *xp) argument
472 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
483 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
496 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
527 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
536 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
545 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
560 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
569 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_purp.c67 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
68 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
69 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
71 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
74 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
248 int X509_PURPOSE_get_id(X509_PURPOSE *xp) argument
250 return xp
253 X509_PURPOSE_get0_name(X509_PURPOSE *xp) argument
258 X509_PURPOSE_get0_sname(X509_PURPOSE *xp) argument
263 X509_PURPOSE_get_trust(X509_PURPOSE *xp) argument
498 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
509 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
522 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
553 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
562 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
571 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
586 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
595 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/key/
H A Daf_key.c1749 static int check_reqid(struct xfrm_policy *xp, int dir, int count, void *ptr) argument
1754 for (i=0; i<xp->xfrm_nr; i++) {
1755 if (xp->xfrm_vec[i].reqid == reqid)
1779 parse_ipsecrequest(struct xfrm_policy *xp, struct sadb_x_ipsecrequest *rq) argument
1781 struct xfrm_tmpl *t = xp->xfrm_vec + xp->xfrm_nr;
1788 if (xp->xfrm_nr >= XFRM_MAX_DEPTH)
1836 t->encap_family = xp->family;
1840 xp->xfrm_nr++;
1845 parse_ipsecrequests(struct xfrm_policy *xp, struc argument
1860 pfkey_xfrm_policy2sec_ctx_size(struct xfrm_policy *xp) argument
1872 pfkey_xfrm_policy2msg_size(struct xfrm_policy *xp) argument
1896 pfkey_xfrm_policy2msg_prep(struct xfrm_policy *xp) argument
1910 pfkey_xfrm_policy2msg(struct sk_buff *skb, struct xfrm_policy *xp, int dir) argument
2129 key_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c) argument
2166 struct xfrm_policy *xp; local
2284 struct xfrm_policy *xp, tmp; local
2355 key_pol_get_resp(struct sock *sk, struct xfrm_policy *xp, struct sadb_msg *hdr, int dir) argument
2583 struct xfrm_policy *xp; local
2619 dump_sp(struct xfrm_policy *xp, int dir, int count, void *ptr) argument
2888 key_notify_policy_expire(struct xfrm_policy *xp, struct km_event *c) argument
2944 pfkey_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c) argument
2980 pfkey_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *xp, int dir) argument
3130 struct xfrm_policy *xp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m32r/
H A Dpgtable-2level.h36 #define pgd_clear(xp) do { } while (0)
65 #define ptep_get_and_clear(mm,addr,xp) __pte(xchg(&(xp)->pte, 0))
H A Dpgtable.h181 #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
185 #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/
H A Dxfrm.c78 int selinux_xfrm_policy_lookup(struct xfrm_policy *xp, u32 fl_secid, u8 dir) argument
85 if ((ctx = xp->security)) {
114 int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, struct xfrm_policy *xp, argument
120 if (!xp->security)
286 int selinux_xfrm_policy_alloc(struct xfrm_policy *xp, argument
291 BUG_ON(!xp);
294 err = selinux_xfrm_sec_ctx_alloc(&xp->security, uctx, 0);
326 void selinux_xfrm_policy_free(struct xfrm_policy *xp) argument
328 struct xfrm_sec_ctx *ctx = xp->security;
336 int selinux_xfrm_policy_delete(struct xfrm_policy *xp) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-blackfin/
H A Dpgtable.h22 #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509/
H A Dx509_trs.c228 int X509_TRUST_get_flags(X509_TRUST *xp) argument
230 return xp->flags;
233 char *X509_TRUST_get0_name(X509_TRUST *xp) argument
235 return xp->name;
238 int X509_TRUST_get_trust(X509_TRUST *xp) argument
240 return xp->trust;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509/
H A Dx509_trs.c228 int X509_TRUST_get_flags(X509_TRUST *xp) argument
230 return xp->flags;
233 char *X509_TRUST_get0_name(X509_TRUST *xp) argument
235 return xp->name;
238 int X509_TRUST_get_trust(X509_TRUST *xp) argument
240 return xp->trust;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/
H A Dpgtable.h97 #define pte_clear(mm,addr,xp) do { pte_val(*(xp)) = 0; } while (0)
105 #define pmd_clear(xp) do { pmd_val(*(xp)) = 0; } while (0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Drsa.c336 gcry_mpi_t xp;
338 xp = gcry_mpi_snew (nbits);
339 gcry_mpi_randomize (xp, nbits, GCRY_VERY_STRONG_RANDOM);
343 sqrt{2}*2^{nbits-1} <= xp <= 2^{nbits} - 1
348 mpi_set_highbit (xp, nbits-1);
349 mpi_set_bit (xp, nbits-2);
350 gcry_assert ( mpi_get_nbits (xp) == nbits );
352 return xp;
418 gcry_mpi_t xp = NULL;
427 xp
335 gcry_mpi_t xp; local
417 gcry_mpi_t xp = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/shell/
H A Dmsh.c1085 char *xp; local
1108 xp = vp->name;
1109 while ((*xp = *n++) != '\0' && *xp != '=')
1110 xp++;
1111 *xp++ = '=';
1112 *xp = '\0';
1132 char *xp; local
1136 xp = vp->name;
1137 while (*xp
3729 char *xp; local
4316 char *op, *xp; local
4682 struct io *xp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Dpgtable.h139 #define pte_clear(mm,addr,xp) pte_set_val(*(xp), (phys_t) 0, __pgprot(_PAGE_NEWPAGE))
144 #define pmd_clear(xp) do { pmd_val(*(xp)) = _PAGE_NEWPAGE; } while (0)

Completed in 264 milliseconds

123