Searched refs:dest (Results 26 - 50 of 252) sorted by relevance

1234567891011

/barrelfish-2018-10-04/lib/zlib/
H A Duncompr.c26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 Bytef *dest;
40 stream.next_out = dest;
/barrelfish-2018-10-04/include/arch/x86_64/barrelfish_kpi/
H A Dasm_inlines_arch.h50 * Note, dest should point to a 128bit structure that is to be overwritten
52 static inline int cmpxchg128(volatile uint64_t dest[2], uint64_t old_top, uint64_t old_bot, uint64_t new_top, uint64_t new_bot) argument
59 : "=a"(ret), "=m"(*dest)//, "=d"(old_top), "=a"(old_bot)
60 : "a"(old_top), "d"(old_bot), "b"(new_top), "c"(new_bot), "m"(*dest)
/barrelfish-2018-10-04/lib/lwip2/src/core/ipv6/
H A Dip6.c80 * @param dest the destination IPv6 address for which to find the route
81 * @return the netif on which to send to reach dest
84 ip6_route(const ip6_addr_t *src, const ip6_addr_t *dest) argument
98 if (ip6_addr_islinklocal(dest)) {
131 netif = LWIP_HOOK_IP6_ROUTE(src, dest);
144 ip6_addr_netcmp(dest, netif_ip6_addr(netif, i))) {
151 netif = nd6_find_route(dest);
173 if (ip6_addr_isloopback(dest)) {
202 * @param dest the destination we are trying to reach
207 ip6_select_source_address(struct netif *netif, const ip6_addr_t *dest) argument
817 ip6_output_if(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, struct netif *netif) argument
841 ip6_output_if_src(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, struct netif *netif) argument
938 ip6_output(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth) argument
996 ip6_output_hinted(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, u8_t hl, u8_t tc, u8_t nexth, u8_t *addr_hint) argument
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/ipv4/
H A Dip.c105 * @param dest the destination IP address for which to find the route
106 * @return the netif on which to send to reach dest
108 struct netif *ip_route(struct ip_addr *dest) argument
116 if (ip_addr_netcmp(dest, &(netif->ip_addr), &(netif->netmask))) {
124 ("ip_route: No route to 0x%" X32_F "\n", dest->addr));
151 netif = ip_route((struct ip_addr *) &(iphdr->dest));
155 iphdr->dest.addr));
190 iphdr->dest.addr));
198 netif->output(netif, p, (struct ip_addr *) &(iphdr->dest));
296 if (ip_addr_ismulticast(&(iphdr->dest))) {
[all...]
/barrelfish-2018-10-04/usr/tests/testdesc/
H A Dtestdesc.c34 static size_t copy_file_fd(void *dest, lpaddr_t offset, struct fd_store *fds) argument
43 printf("copying %zu bytes from %p to %p\n", size, &fds->handle, dest);
44 memcpy(dest, &fds->handle, size);
52 static size_t copy_unixsock_fd(void *dest, lpaddr_t offset, argument
66 printf("copying %zu bytes from %p to %p\n", size, fds->handle, dest);
67 memcpy(dest, fds->handle, size);
128 char *dest = buf; local
133 offset = (genpaddr_t)(dest - buf);
136 size = copy_file_fd(dest, offset, fds);
139 size = copy_unixsock_fd(dest, offse
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/
H A DRUNME646 dest="$EXE_DIR/eclipse"
647 echo Making "$dest"
648 rm -f "$dest"
649 cat > "$dest" <<EOF
658 chmod 755 "$dest"
660 dest="$EXE_DIR/tkeclipse"
661 echo Making "$dest"
662 rm -f "$dest"
666 cat > "$dest" <<EOF
674 cat > "$dest" <<EO
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ec/
H A Decp_mont.c158 int ec_GFp_mont_group_copy(EC_GROUP *dest, const EC_GROUP *src) argument
160 if (dest->field_data1 != NULL)
162 BN_MONT_CTX_free(dest->field_data1);
163 dest->field_data1 = NULL;
165 if (dest->field_data2 != NULL)
167 BN_clear_free(dest->field_data2);
168 dest->field_data2 = NULL;
171 if (!ec_GFp_simple_group_copy(dest, src)) return 0;
175 dest->field_data1 = BN_MONT_CTX_new();
176 if (dest
[all...]
H A Dec_key.c138 EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src) argument
142 if (dest == NULL || src == NULL)
152 if (dest->group)
153 EC_GROUP_free(dest->group);
154 dest->group = EC_GROUP_new(meth);
155 if (dest->group == NULL)
157 if (!EC_GROUP_copy(dest->group, src->group))
163 if (dest->pub_key)
164 EC_POINT_free(dest->pub_key);
165 dest
[all...]
/barrelfish-2018-10-04/include/arch/x86_64/
H A Dstdarg.h50 #define __va_copy(dest, src) \
51 __builtin_va_copy((dest), (src))
54 #define va_copy(dest, src) \
55 __va_copy(dest, src)
/barrelfish-2018-10-04/include/lwip/ipv6/lwip/
H A Dip.h96 struct ip_addr src, dest; /* source and destination IP addresses */ member in struct:ip_hdr
105 struct netif *ip_route(struct ip_addr *dest);
110 err_t ip_output(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest,
114 struct ip_addr *dest, u8_t ttl, u8_t proto,
/barrelfish-2018-10-04/include/lwip2/lwip/prot/
H A Dudp.h55 PACK_STRUCT_FIELD(u16_t dest); /* src/dest UDP ports */
/barrelfish-2018-10-04/kernel/
H A Dstring.c74 strncpy(char *dest, const char *src, size_t count) argument
76 char *tmp = dest;
83 return dest;
87 strcpy(char *dest, const char *src) argument
89 char *pos = dest;
91 return dest;
100 char *dest = dst;
109 dest[i] = source[i];
112 dest[i] = source[i];
114 dest[
[all...]
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dip_addr.h129 #define ip_addr_copy(dest, src) do{ IP_SET_TYPE_VAL(dest, IP_GET_TYPE(&src)); if(IP_IS_V6_VAL(src)){ \
130 ip6_addr_copy(*ip_2_ip6(&(dest)), *ip_2_ip6(&(src))); }else{ \
131 ip4_addr_copy(*ip_2_ip4(&(dest)), *ip_2_ip4(&(src))); }}while(0)
133 #define ip_addr_copy_from_ip6(dest, src) do{ \
134 ip6_addr_copy(*ip_2_ip6(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V6); }while(0)
136 #define ip_addr_copy_from_ip4(dest, src) do{ \
137 ip4_addr_copy(*ip_2_ip4(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V
[all...]
/barrelfish-2018-10-04/lib/libc/db/btree/
H A Dbt_split.c89 char *dest; local
109 dest = (char *)h + h->upper;
111 WR_RLEAF(dest, data, flags)
113 WR_BLEAF(dest, key, data, flags)
228 dest = (char *)h + h->linp[skip];
229 memmove(dest, bi, nbytes);
230 ((BINTERNAL *)dest)->pgno = rchild->pgno;
234 dest = (char *)h + h->linp[skip];
235 WR_BINTERNAL(dest, nksize ? nksize : bl->ksize,
237 memmove(dest, b
480 char *dest; local
521 char *dest; local
[all...]
/barrelfish-2018-10-04/usr/monitor/
H A Dspawn.c28 struct capref src, dest; local
41 dest.cnode = si->taskcn;
42 dest.slot = TASKCN_SLOT_IRQ;
45 err = cap_copy(dest, src);
53 dest.cnode = si->taskcn,
54 dest.slot = TASKCN_SLOT_KERNELCAP;
55 err = cap_copy(dest, src);
64 dest.cnode = si->taskcn;
65 dest.slot = TASKCN_SLOT_PROC_MNG;
67 err = cap_copy(dest, sr
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/core/ipv4/
H A Dip4.c129 ip4_route_src(const ip4_addr_t *dest, const ip4_addr_t *src) argument
132 /* when src==NULL, the hook is called from ip4_route(dest) */
133 struct netif *netif = LWIP_HOOK_IP4_ROUTE_SRC(dest, src);
138 return ip4_route(dest);
148 * @param dest the destination IP address for which to find the route
149 * @return the netif on which to send to reach dest
152 ip4_route(const ip4_addr_t *dest) argument
158 if (ip4_addr_ismulticast(dest) && ip4_default_multicast_netif) {
168 if (ip4_addr_netcmp(dest, netif_ip4_addr(netif), netif_ip4_netmask(netif))) {
173 if (((netif->flags & NETIF_FLAG_BROADCAST) == 0) && ip4_addr_cmp(dest, netif_ip4_g
755 ip4_output_if(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) argument
770 ip4_output_if_opt(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen) argument
795 ip4_output_if_src(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) argument
808 ip4_output_if_opt_src(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen) argument
982 ip4_output(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto) argument
1019 ip4_output_hinted(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, u8_t *addr_hint) argument
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/netif/
H A Dethernet.c100 ("ethernet_input: dest:%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F", src:%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F", type:%"X16_F"\n",
101 (unsigned)ethhdr->dest.addr[0], (unsigned)ethhdr->dest.addr[1], (unsigned)ethhdr->dest.addr[2],
102 (unsigned)ethhdr->dest.addr[3], (unsigned)ethhdr->dest.addr[4], (unsigned)ethhdr->dest.addr[5],
140 if (ethhdr->dest.addr[0] & 1) {
142 if (ethhdr->dest.addr[0] == LL_IP4_MULTICAST_ADDR_0) {
144 if ((ethhdr->dest
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Da_mbstr.c97 ASN1_STRING *dest; local
185 dest = *out;
186 if(dest->data) {
187 dest->length = 0;
188 OPENSSL_free(dest->data);
189 dest->data = NULL;
191 dest->type = str_type;
194 dest = ASN1_STRING_type_new(str_type);
195 if(!dest) {
200 *out = dest;
[all...]
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Datomic.c162 void __atomic_load_c(int size, void *src, void *dest, int model) { argument
164 *((type*)dest) = __c11_atomic_load((_Atomic(type)*)src, model);\
170 memcpy(dest, src, size);
176 void __atomic_store_c(int size, void *dest, void *src, int model) { argument
178 __c11_atomic_store((_Atomic(type)*)dest, *(type*)dest, model);\
182 Lock *l = lock_for_pointer(dest);
184 memcpy(dest, src, size);
254 void __atomic_store_##n(type *dest, type val, int model) {\
256 __c11_atomic_store((_Atomic(type)*)dest, va
[all...]
/barrelfish-2018-10-04/include/ahci/
H A Dahci_dma_pool.h27 void *dest = (char *)region->vaddr + offset; local
28 return memcpy(dest, buf, size);
/barrelfish-2018-10-04/include/arch/arm/
H A Dstdarg.h54 #define va_copy(dest, src) \
55 __builtin_va_copy((dest), (src))
/barrelfish-2018-10-04/lib/arranet/
H A Dinet_chksum.h79 ip_addr_t *src, ip_addr_t *dest,
82 ip_addr_t *src, ip_addr_t *dest,
/barrelfish-2018-10-04/lib/phoenix/
H A Dmemory.h37 void *mem_memcpy (void *dest, const void *src, size_t size);
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dip_frag.h69 err_t ip_frag(struct pbuf *p, struct netif *netif, struct ip_addr *dest);
/barrelfish-2018-10-04/usr/monitor/include/
H A Dsend_cap.h23 void captx_prepare_send(struct capref cap, coreid_t dest, bool give_away,

Completed in 131 milliseconds

1234567891011