| /sys/amd64/include/ |
| D | atomic.h | 6 atomic_swap_uint32(volatile uint32_t *dst, uint32_t newval) in atomic_swap_uint32() argument 9 : "+m" (*dst), "+r" (newval)); in atomic_swap_uint32() 15 atomic_swap_uint64(volatile uint64_t *dst, uint64_t newval) in atomic_swap_uint64() argument 18 : "+m" (*dst), "+r" (newval)); in atomic_swap_uint64() 24 atomic_set_uint64(volatile uint64_t *dst, uint64_t newval) in atomic_set_uint64() argument 26 *dst = newval; in atomic_set_uint64()
|
| /lib/libc/ |
| D | string.c | 58 strncat(char *dst, const char *src, size_t n) in strncat() argument 61 char *d = dst; in strncat() 77 return dst; in strncat() 164 memset(void *dst, int c, size_t length) in memset() argument 166 uint8_t *p = (uint8_t *)dst; in memset() 173 return dst; in memset() 177 memcpy(void *dst, const void *src, size_t length) in memcpy() argument 179 uint8_t *d = (uint8_t *)dst; in memcpy() 188 return dst; in memcpy()
|
| /sys/kern/ |
| D | libc.c | 121 memset(void *dst, int c, size_t length) in memset() argument 123 uint8_t *p = (uint8_t *)dst; in memset() 130 return dst; in memset() 134 memcpy(void *dst, const void *src, size_t length) in memcpy() argument 136 uint8_t *d = (uint8_t *)dst; in memcpy() 145 return dst; in memcpy()
|
| D | string.c | 29 String_Append(String *dst, String *src) in String_Append() argument
|
| /lib/liblwip/src/include/ipv4/lwip/ |
| D | inet_chksum.h | 60 #define LWIP_CHKSUM_COPY(dst, src, len) lwip_chksum_copy(dst, src, len) argument 82 u16_t lwip_chksum_copy(void *dst, const void *src, u16_t len);
|
| /lib/liblwip/src/include/netif/ |
| D | etharp.h | 146 #define ETHADDR32_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN) argument 152 #define ETHADDR16_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN) argument
|
| /include/ |
| D | string.h | 8 void *memcpy(void *dst, const void *src, size_t len); 9 void *memset(void *dst, int c, size_t len);
|
| /lib/liblwip/src/core/snmp/ |
| D | mib2.c | 905 static void ocstrncpy(u8_t *dst, u8_t *src, u16_t n) in ocstrncpy() argument 910 *dst++ = *src++; in ocstrncpy() 921 void objectidncpy(s32_t *dst, s32_t *src, u8_t n) in objectidncpy() argument 926 *dst++ = *src++; in objectidncpy() 1442 ip_addr_t dst; in snmp_insert_iprteidx_tree() local 1447 ip_addr_set_any(&dst); in snmp_insert_iprteidx_tree() 1453 ip_addr_get_network(&dst, &ni->ip_addr, &ni->netmask); in snmp_insert_iprteidx_tree() 1455 if (!ip_addr_isany(&dst)) { in snmp_insert_iprteidx_tree() 1466 snmp_iptooid(&dst, &iprteidx[0]); in snmp_insert_iprteidx_tree() 1519 ip_addr_t dst; in snmp_delete_iprteidx_tree() local [all …]
|
| D | msg_out.c | 95 snmp_trap_dst_ip_set(u8_t dst_idx, ip_addr_t *dst) in snmp_trap_dst_ip_set() argument 99 ip_addr_set(&trap_dst[dst_idx].dip, dst); in snmp_trap_dst_ip_set()
|
| / |
| D | SConstruct | 117 def CopyTree(dst, src, env): 118 def DirCopyHelper(src, dst): 121 dstPath = os.path.join(dst, f) 131 if (not os.path.exists(dst)): 132 os.makedirs(dst) 133 DirCopyHelper(src, dst)
|
| /lib/liblwip/src/core/ipv4/ |
| D | inet_chksum.c | 445 lwip_chksum_copy(void *dst, const void *src, u16_t len) in lwip_chksum_copy() argument 447 MEMCPY(dst, src, len); in lwip_chksum_copy() 448 return LWIP_CHKSUM(dst, len); in lwip_chksum_copy()
|
| /lib/liblwip/src/include/lwip/ |
| D | opt.h | 84 #define MEMCPY(dst,src,len) memcpy(dst,src,len) argument 92 #define SMEMCPY(dst,src,len) memcpy(dst,src,len) argument
|
| D | snmp_msg.h | 293 void snmp_trap_dst_ip_set(u8_t dst_idx, ip_addr_t *dst);
|
| /lib/liblwip/src/core/ |
| D | tcp_out.c | 63 #define TCP_DATA_COPY(dst, src, len, seg) do { \ argument 64 tcp_seg_add_chksum(LWIP_CHKSUM_COPY(dst, src, len), \ 67 #define TCP_DATA_COPY2(dst, src, len, chksum, chksum_swapped) \ argument 68 tcp_seg_add_chksum(LWIP_CHKSUM_COPY(dst, src, len), len, chksum, chksum_swapped); 70 #define TCP_DATA_COPY(dst, src, len, seg) MEMCPY(dst, src, len) argument 71 #define TCP_DATA_COPY2(dst, src, len, chksum, chksum_swapped) MEMCPY(dst, src, len) argument
|
| /lib/liblwip/src/netif/ |
| D | etharp.c | 415 etharp_send_ip(struct netif *netif, struct pbuf *p, struct eth_addr *src, struct eth_addr *dst) in etharp_send_ip() argument 421 ETHADDR32_COPY(ðhdr->dest, dst); in etharp_send_ip()
|