Searched refs:dst (Results 226 - 250 of 626) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc/lib/
H A Dmemcpy.S47 #define MOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
52 st %t0, [%dst + offset + 0x00]; \
53 st %t1, [%dst + offset + 0x04]; \
54 st %t2, [%dst + offset + 0x08]; \
55 st %t3, [%dst + offset + 0x0c]; \
56 st %t4, [%dst + offset + 0x10]; \
57 st %t5, [%dst + offset + 0x14]; \
58 st %t6, [%dst + offset + 0x18]; \
59 st %t7, [%dst + offset + 0x1c];
61 #define MOVE_BIGALIGNCHUNK(src, dst, offse
[all...]
H A Dcopy_user.S64 #define MOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
69 st %t0, [%dst + offset + 0x00]; \
70 st %t1, [%dst + offset + 0x04]; \
71 st %t2, [%dst + offset + 0x08]; \
72 st %t3, [%dst + offset + 0x0c]; \
73 st %t4, [%dst + offset + 0x10]; \
74 st %t5, [%dst + offset + 0x14]; \
75 st %t6, [%dst + offset + 0x18]; \
76 st %t7, [%dst + offset + 0x1c];
78 #define MOVE_BIGALIGNCHUNK(src, dst, offse
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dicmp.c154 * ratelimit defines tokens/packet consumed for dst->rate_token bucket
252 int xrlim_allow(struct dst_entry *dst, int timeout) argument
257 dst->rate_tokens += now - dst->rate_last;
258 dst->rate_last = now;
259 if (dst->rate_tokens > XRLIM_BURST_FACTOR*timeout)
260 dst->rate_tokens = XRLIM_BURST_FACTOR*timeout;
261 if (dst->rate_tokens >= timeout) {
262 dst->rate_tokens -= timeout;
270 struct dst_entry *dst local
[all...]
H A Dip_gre.c160 /* Given src, dst and key, find approriate for input tunnel. */
483 dst_release(skb2->dst);
484 skb2->dst = NULL;
493 skb2->dev = rt->u.dst.dev;
500 rt->u.dst.dev->type != ARPHRD_IPGRE) {
508 skb2->dst->dev->type != ARPHRD_IPGRE) {
516 if (rel_info > skb2->dst->pmtu) {
520 skb2->dst->pmtu = rel_info;
620 if (((struct rtable*)skb->dst)->key.iif == 0)
645 dst_release(skb->dst);
687 u32 dst; local
[all...]
H A Dipip.c414 dst_release(skb2->dst);
415 skb2->dst = NULL;
424 skb2->dev = rt->u.dst.dev;
431 rt->u.dst.dev->type != ARPHRD_IPGRE) {
439 skb2->dst->dev->type != ARPHRD_IPGRE) {
447 if (rel_info > skb2->dst->pmtu) {
451 skb2->dst->pmtu = rel_info;
494 dst_release(skb->dst);
495 skb->dst = NULL;
539 u32 dst local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/ip/
H A Dipneigh.c139 inet_prefix dst; local
168 get_addr(&dst, *argv, preferred_family);
183 get_addr(&dst, *argv, preferred_family);
188 if (d == NULL || !dst_ok || dst.family == AF_UNSPEC) {
192 req.ndm.ndm_family = dst.family;
193 addattr_l(&req.n, sizeof(req), NDA_DST, &dst.data, dst.bytelen);
257 inet_prefix dst; local
258 memset(&dst, 0, sizeof(dst));
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared/
H A Dnvparse.c63 if (ntohs(app->match.dst.ports[0]) > ntohs(app->match.dst.ports[1]))
162 app->match.dst.ports[0] = htons(atoi(out_start));
163 app->match.dst.ports[1] = htons(atoi(out_end));
222 cur = safe_snprintf(cur, &len, "%d", ntohs(app->match.dst.ports[0]));
224 cur = safe_snprintf(cur, &len, "%d", ntohs(app->match.dst.ports[1]));
278 if (ntohs(nat->match.dst.ports[0]) > ntohs(nat->match.dst.ports[1]))
294 if ((ntohs(nat->match.dst.ports[1]) - ntohs(nat->match.dst
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/
H A Dnvparse.c63 if (ntohs(app->match.dst.ports[0]) > ntohs(app->match.dst.ports[1]))
162 app->match.dst.ports[0] = htons(atoi(out_start));
163 app->match.dst.ports[1] = htons(atoi(out_end));
222 cur = safe_snprintf(cur, &len, "%d", ntohs(app->match.dst.ports[0]));
224 cur = safe_snprintf(cur, &len, "%d", ntohs(app->match.dst.ports[1]));
278 if (ntohs(nat->match.dst.ports[0]) > ntohs(nat->match.dst.ports[1]))
294 if ((ntohs(nat->match.dst.ports[1]) - ntohs(nat->match.dst
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dutil_unistr.c194 string pointed to by dst.
202 size_t dos_PutUniCode(char *dst,const char *src, ssize_t len, BOOL null_terminate) argument
204 return push_ucs2(NULL, dst, src, len,
793 int unistrcpy(uint16 *dst, uint16 *src) argument
798 *dst++ = *src++;
801 *dst = 0;
809 * @param ctx Talloc context to create the dst strcture (if null) and the
811 * @param dst UNISTR2 destination. If equals null, then it's allocated.
818 UNISTR2* ucs2_to_unistr2(TALLOC_CTX *ctx, UNISTR2* dst, smb_ucs2_t* src) argument
827 if (!dst) {
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/
H A Dfbcon-cfb2.c61 u8 *src,*dst; local
71 dst = p->screen_base + dy * linesize + dx * 2;
73 fb_memmove(dst, src, width * 2);
75 dst += bytes;
81 dst = p->screen_base + (dy+height) * linesize + dx * 2
84 fb_memmove(dst, src, width * 2);
86 dst -= bytes;
H A Dfbcon-cfb4.c61 u8 *src,*dst; local
71 dst = p->screen_base + dy * linesize + dx * 4;
73 fb_memmove(dst, src, width * 4);
75 dst += bytes;
81 dst = p->screen_base + (dy+height) * linesize + dx * 4
84 fb_memmove(dst, src, width * 4);
86 dst -= bytes;
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter.noQoS/
H A Dip_nat_proto_gre.c64 keyptr = &tuple->dst.u.gre.key;
68 switch (tuple->dst.u.gre.version) {
152 if (mask->dst.u.gre.version)
154 ntohs(match->dst.u.gre.version));
156 if (mask->dst.u.gre.protocol)
158 ntohs(match->dst.u.gre.protocol));
164 if (mask->dst.u.gre.key)
H A Dip_nat_proto_tcp.c22 port = tuple->dst.u.tcp.port;
40 portptr = &tuple->dst.u.tcp.port;
44 /* If it's dst rewrite, can't change port */
90 /* Get rid of dst ip and dst pt */
120 if (mask->dst.u.tcp.port)
122 ntohs(match->dst.u.tcp.port));
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv6/
H A Dsit.c351 dst_release(skb2->dst);
352 skb2->dst = NULL;
404 dst_release(skb->dst);
405 skb->dst = NULL;
438 u32 dst = 0; local
442 memcpy(&dst, &v6dst->s6_addr16[1], 4);
444 return dst;
463 u32 dst = tiph->daddr; local
476 if (!dst)
477 dst
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc/
H A Dio.h124 extern void insb(unsigned long addr, void *dst, unsigned long count);
125 extern void insw(unsigned long addr, void *dst, unsigned long count);
126 extern void insl(unsigned long addr, void *dst, unsigned long count);
175 unsigned long dst = (unsigned long)__dst; local
178 sbus_writeb(c, dst);
179 dst++;
181 return (void *) dst;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc/
H A Dio.h124 extern void insb(unsigned long addr, void *dst, unsigned long count);
125 extern void insw(unsigned long addr, void *dst, unsigned long count);
126 extern void insl(unsigned long addr, void *dst, unsigned long count);
175 unsigned long dst = (unsigned long)__dst; local
178 sbus_writeb(c, dst);
179 dst++;
181 return (void *) dst;
/asus-wl-520gu-7.0.1.45/src/router/rc/
H A Dinterface.c103 route_manip(int cmd, char *name, int metric, char *dst, char *gateway, char *genmask) argument
114 if (dst)
115 inet_aton(dst, &sin_addr(&rt.rt_dst));
146 route_add(char *name, int metric, char *dst, char *gateway, char *genmask) argument
148 return route_manip(SIOCADDRT, name, metric, dst, gateway, genmask);
152 route_del(char *name, int metric, char *dst, char *gateway, char *genmask) argument
154 return route_manip(SIOCDELRT, name, metric, dst, gateway, genmask);
/asus-wl-520gu-7.0.1.45/src/router/rc.orig/
H A Dinterface.c103 route_manip(int cmd, char *name, int metric, char *dst, char *gateway, char *genmask) argument
114 if (dst)
115 inet_aton(dst, &sin_addr(&rt.rt_dst));
146 route_add(char *name, int metric, char *dst, char *gateway, char *genmask) argument
148 return route_manip(SIOCADDRT, name, metric, dst, gateway, genmask);
152 route_del(char *name, int metric, char *dst, char *gateway, char *genmask) argument
154 return route_manip(SIOCDELRT, name, metric, dst, gateway, genmask);
/asus-wl-520gu-7.0.1.45/src/shared/nvram/
H A Dnvram_rw.c244 uint32 *src, *dst; local
251 dst = (uint32 *) buf;
254 *dst++ = *src++;
257 *dst++ = ltoh32(*src++);
295 uint32 *src, *dst; local
311 dst = src;
314 *dst++ = htol32(*src++);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/hysdn/
H A Dboardergo.c223 uchar *dst; local
230 dst = card->dpram; /* pointer to start of DPRAM */
231 dst += (offs + ERG_DPRAM_FILL_SIZE); /* offset in the DPRAM */
233 *dst++ = *(buf + 1); /* high byte */
234 *dst++ = *buf; /* low byte */
235 dst += 2; /* point to next longword */
272 uchar *dst; local
282 dst = sp->Data; /* point to data in spool structure */
315 *(dst + wr_mirror) = *buf++; /* output one byte */
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/net/
H A Dnet_ip_internal.h98 int (*cb)(void *ref,ebuf_t *buf,uint8_t *dst,uint8_t *src);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/core/
H A DMakefile24 obj-$(CONFIG_NET) += dev.o dev_mcast.o dst.o neighbour.o rtnetlink.o utils.o
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/decnet/
H A Ddn_neigh.c17 * Steve Whitehouse : Fixed src/dst in outgoing messages so
38 #include <net/dst.h>
183 struct dst_entry *dst = skb->dst; local
184 struct neighbour *neigh = dst->neighbour;
199 struct dst_entry *dst = skb->dst; local
200 struct neighbour *neigh = dst->neighbour;
230 dn_dn2eth(lp->d_id, dn_ntohs(cb->dst));
245 struct dst_entry *dst local
288 struct dst_entry *dst = skb->dst; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter/
H A Dip_nat_proto_tcp.c22 port = tuple->dst.u.tcp.port;
40 portptr = &tuple->dst.u.tcp.port;
44 /* If it's dst rewrite, can't change port */
90 /* Get rid of dst ip and dst pt */
120 if (mask->dst.u.tcp.port)
122 ntohs(match->dst.u.tcp.port));
H A Dip_nat_proto_udp.c23 port = tuple->dst.u.udp.port;
41 portptr = &tuple->dst.u.udp.port;
45 /* If it's dst rewrite, can't change port */
89 /* Get rid of dst ip and dst pt */
113 if (mask->dst.u.udp.port)
115 ntohs(match->dst.u.udp.port));

Completed in 377 milliseconds

1234567891011>>