Searched refs:dest (Results 176 - 200 of 738) sorted by relevance

1234567891011>>

/freebsd-10.3-release/contrib/gcc/
H A Dtree-ssa-copy.c61 may_propagate_copy (tree dest, tree orig) argument
63 tree type_d = TREE_TYPE (dest);
106 if (TREE_CODE (dest) == SSA_NAME
111 tree mt_dest = var_ann (SSA_NAME_VAR (dest))->symbol_mem_tag;
122 if (SSA_NAME_PTR_INFO (orig) && SSA_NAME_PTR_INFO (dest))
125 struct ptr_info_def *dest_ptr_info = SSA_NAME_PTR_INFO (dest);
139 if (TREE_CODE (dest) == SSA_NAME && !is_gimple_reg (dest))
159 if (TREE_CODE (dest) == SSA_NAME
160 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (dest))
170 may_propagate_copy_into_asm(tree dest) argument
467 set_copy_of_val(tree dest, tree first, tree mem_ref) argument
[all...]
H A Dtracer.c112 return e1->dest->index > e2->dest->index;
127 if (!best || ignore_bb_p (best->dest))
183 bb = e->dest;
336 if (e->dest != EXIT_BLOCK_PTR
337 && e->dest != single_succ (ENTRY_BLOCK_PTR)
338 && !e->dest->il.rtl->visited
344 end->aux = best->dest;
345 best->dest->il.rtl->visited = 1;
H A Dcse.c5059 rtx dest = SET_DEST (sets[i].rtl);
5066 if (GET_CODE (dest) == ZERO_EXTRACT)
5068 validate_change (insn, &XEXP (dest, 1),
5069 canon_reg (XEXP (dest, 1), insn), 1);
5070 validate_change (insn, &XEXP (dest, 2),
5071 canon_reg (XEXP (dest, 2), insn), 1);
5074 while (GET_CODE (dest) == SUBREG
5075 || GET_CODE (dest) == ZERO_EXTRACT
5076 || GET_CODE (dest) == STRICT_LOW_PART)
5077 dest
5037 rtx dest = SET_DEST (sets[i].rtl); local
5080 rtx src, dest; local
5978 rtx dest = SET_DEST (sets[0].rtl); local
6024 rtx dest = SET_DEST (sets[i].rtl); local
6096 rtx dest = SET_DEST (sets[i].rtl); local
6134 rtx dest = SET_DEST (sets[i].rtl); local
6237 rtx dest = SET_DEST (sets[i].rtl); local
6443 rtx dest = SET_DEST (sets[0].rtl); local
6667 invalidate_skipped_set(rtx dest, rtx set, void *data ATTRIBUTE_UNUSED) argument
7290 count_reg_usage(rtx x, int *counts, rtx dest, int incr) argument
7341 count_reg_usage (CALL_INSN_FUNCTION_USAGE (x), counts, dest, incr); local
7342 count_reg_usage (PATTERN (x), counts, dest, incr); local
7384 count_reg_usage (ASM_OPERANDS_INPUT (x, i), counts, dest, incr); local
7398 count_reg_usage (XEXP (x, i), counts, dest, incr); local
7401 count_reg_usage (XVECEXP (x, i, j), counts, dest, incr); local
[all...]
H A Dcfghooks.c125 if (last_visited [e->dest->index] == bb)
128 e->src->index, e->dest->index);
134 e->src->index, e->dest->index, e->probability);
140 e->src->index, e->dest->index, (int)e->count);
144 last_visited [e->dest->index] = bb;
161 edge_checksum[e->dest->index] += (size_t) e;
171 if (e->dest != bb)
195 edge_checksum[e->dest->index] -= (size_t) e;
205 edge_checksum[e->dest->index] += (size_t) e;
208 edge_checksum[e->dest
283 redirect_edge_and_branch(edge e, basic_block dest) argument
301 redirect_edge_and_branch_force(edge e, basic_block dest) argument
[all...]
H A Dcfgrtl.c725 && EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target))
784 if (e->dest == target)
788 INSN_UID (insn), e->dest->index, target->index);
871 if (e->dest != target)
883 rtx old_label = BB_HEAD (e->dest);
953 e->src->index, e->dest->index, target->index);
955 if (e->dest != target)
980 if (e->dest == target)
1011 if (e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR
1013 && JUMP_LABEL (BB_END (e->src)) == BB_HEAD (e->dest))
2364 cfg_layout_redirect_edge_and_branch(edge e, basic_block dest) argument
2447 cfg_layout_redirect_edge_and_branch_force(edge e, basic_block dest) argument
[all...]
/freebsd-10.3-release/contrib/ldns/
H A Dhost2wire.c339 ldns_rdf2wire(uint8_t **dest, const ldns_rdf *rdf, size_t *result_size) argument
344 *dest = NULL;
350 *dest = (uint8_t *) ldns_buffer_export(buffer);
357 ldns_rr2wire(uint8_t **dest, const ldns_rr *rr, int section, size_t *result_size) argument
362 *dest = NULL;
368 *dest = (uint8_t *) ldns_buffer_export(buffer);
375 ldns_pkt2wire(uint8_t **dest, const ldns_pkt *packet, size_t *result_size) argument
380 *dest = NULL;
386 *dest = (uint8_t *) ldns_buffer_export(buffer);
/freebsd-10.3-release/contrib/subversion/subversion/include/
H A Dsvn_cmdline.h65 /** Set @a *dest to an output-encoded C string from UTF-8 C string @a
66 * src; allocate @a *dest in @a pool.
69 svn_cmdline_cstring_from_utf8(const char **dest,
79 /** Set @a *dest to a UTF-8-encoded C string from input-encoded C
80 * string @a src; allocate @a *dest in @a pool.
83 svn_cmdline_cstring_to_utf8(const char **dest,
87 /** Set @a *dest to an output-encoded natively-formatted path string
88 * from canonical path @a src; allocate @a *dest in @a pool.
91 svn_cmdline_path_local_style_from_utf8(const char **dest,
/freebsd-10.3-release/contrib/xz/src/liblzma/rangecoder/
H A Drange_decoder.h171 #define rc_direct(dest, seq) \
178 dest = (dest << 1) + (rc_bound + 1); \
/freebsd-10.3-release/lib/libc/tests/nss/
H A Dgetgr_test.c81 clone_group(struct group *dest, struct group const *src) argument
83 ATF_REQUIRE(dest != NULL);
89 memset(dest, 0, sizeof(struct group));
92 dest->gr_name = strdup(src->gr_name);
93 ATF_REQUIRE(dest->gr_name != NULL);
97 dest->gr_passwd = strdup(src->gr_passwd);
98 ATF_REQUIRE(dest->gr_passwd != NULL);
100 dest->gr_gid = src->gr_gid;
107 dest->gr_mem = calloc(1, (members_num + 1) * sizeof(char *));
108 ATF_REQUIRE(dest
[all...]
H A Dgetserv_test.c79 clone_servent(struct servent *dest, struct servent const *src) argument
81 ATF_REQUIRE(dest != NULL);
87 memset(dest, 0, sizeof(struct servent));
90 dest->s_name = strdup(src->s_name);
91 ATF_REQUIRE(dest->s_name != NULL);
95 dest->s_proto = strdup(src->s_proto);
96 ATF_REQUIRE(dest->s_proto != NULL);
98 dest->s_port = src->s_port;
105 dest->s_aliases = calloc(1, (aliases_num + 1) * sizeof(char *));
106 ATF_REQUIRE(dest
[all...]
H A Dgetusershell_test.c69 clone_usershell(struct usershell *dest, struct usershell const *src) argument
71 assert(dest != NULL);
75 dest->path = strdup(src->path);
76 assert(dest->path != NULL);
/freebsd-10.3-release/sys/boot/i386/libi386/
H A Dbiosdisk.c95 caddr_t dest);
97 caddr_t dest);
426 bd_edd_io(struct disk_devdesc *dev, daddr_t dblk, int blks, caddr_t dest, argument
433 packet.off = VTOPOFF(dest);
434 packet.seg = VTOPSEG(dest);
451 bd_chs_io(struct disk_devdesc *dev, daddr_t dblk, int blks, caddr_t dest, argument
478 v86.es = VTOPSEG(dest);
479 v86.ebx = VTOPOFF(dest);
485 bd_io(struct disk_devdesc *dev, daddr_t dblk, int blks, caddr_t dest, int write) argument
495 p = dest;
587 bd_read(struct disk_devdesc *dev, daddr_t dblk, int blks, caddr_t dest) argument
594 bd_write(struct disk_devdesc *dev, daddr_t dblk, int blks, caddr_t dest) argument
[all...]
/freebsd-10.3-release/sys/dev/ixl/
H A Di40e_lan_hmc.c765 u8 *from, *dest; local
783 dest = hmc_bits + (ce_info->lsb / 8);
785 i40e_memcpy(&dest_byte, dest, sizeof(dest_byte), I40E_DMA_TO_NONDMA);
791 i40e_memcpy(dest, &dest_byte, sizeof(dest_byte), I40E_NONDMA_TO_DMA);
805 u8 *from, *dest; local
827 dest = hmc_bits + (ce_info->lsb / 8);
829 i40e_memcpy(&dest_word, dest, sizeof(dest_word), I40E_DMA_TO_NONDMA);
835 i40e_memcpy(dest, &dest_word, sizeof(dest_word), I40E_NONDMA_TO_DMA);
849 u8 *from, *dest; local
879 dest
901 u8 *from, *dest; local
948 i40e_read_byte(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) argument
985 i40e_read_word(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) argument
1029 i40e_read_dword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) argument
1082 i40e_read_qword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) argument
1135 i40e_get_hmc_context(u8 *context_bytes, struct i40e_context_ele *ce_info, u8 *dest) argument
1187 i40e_set_hmc_context(u8 *context_bytes, struct i40e_context_ele *ce_info, u8 *dest) argument
[all...]
/freebsd-10.3-release/contrib/wpa/src/wps/
H A Dwps_upnp_ssdp.c233 struct sockaddr_in dest; local
242 os_memset(&dest, 0, sizeof(dest));
243 dest.sin_family = AF_INET;
244 dest.sin_addr.s_addr = inet_addr(UPNP_MULTICAST_ADDRESS);
245 dest.sin_port = htons(UPNP_MULTICAST_PORT);
252 0, (struct sockaddr *) &dest, sizeof(dest)) < 0) {
270 struct sockaddr_in dest; local
291 os_memset(&dest,
[all...]
/freebsd-10.3-release/contrib/unbound/util/data/
H A Dmsgencode.h57 * @param dest: buffer to put message into; will truncate if it does not fit.
70 uint16_t id, uint16_t qflags, struct sldns_buffer* dest, time_t timenow,
/freebsd-10.3-release/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c204 void *memmove(void *dest, const void *src, size_t size) argument
206 uint8_t *d = dest;
219 return dest;
252 int (*fill)(void *dest, unsigned int size),
251 unxz(unsigned char *in, int in_size, int (*fill)(void *dest, unsigned int size), int (*flush)(void *src, unsigned int size), unsigned char *out, int *in_used, void (*error)(char *x)) argument
/freebsd-10.3-release/contrib/apr/strings/
H A Dapr_cpystrn.c216 /* length of dest assumed >= length of src
217 * collapse in place (src == dest) is legal.
218 * returns terminating null ptr to dest string.
220 APR_DECLARE(char *) apr_collapse_spaces(char *dest, const char *src) argument
224 *dest++ = *src;
227 *dest = 0;
228 return (dest);
/freebsd-10.3-release/contrib/atf/atf-c/detail/
H A Dtext.c64 atf_text_format(char **dest, const char *fmt, ...) argument
70 err = atf_text_format_ap(dest, fmt, ap);
77 atf_text_format_ap(char **dest, const char *fmt, va_list ap) argument
87 *dest = atf_dynstr_fini_disown(&tmp);
/freebsd-10.3-release/sys/amd64/vmm/
H A Dvmm_lapic.c105 uint32_t dest; local
122 * The 'dest' is interpreted as a logical APIC ID if both
126 dest = (addr >> 12) & 0xff;
132 VM_CTR3(vm, "lapic MSI %s dest %#x, vec %d",
133 phys ? "physical" : "logical", dest, vec);
135 vlapic_deliver_intr(vm, LAPIC_TRIG_EDGE, dest, phys, delmode, vec);
/freebsd-10.3-release/tools/regression/lib/libc/nss/
H A Dtest-getusershell.c71 clone_usershell(struct usershell *dest, struct usershell const *src) argument
73 assert(dest != NULL);
77 dest->path = strdup(src->path);
78 assert(dest->path != NULL);
H A Dtest-getproto.c82 clone_protoent(struct protoent *dest, struct protoent const *src) argument
84 assert(dest != NULL);
90 memset(dest, 0, sizeof(struct protoent));
93 dest->p_name = strdup(src->p_name);
94 assert(dest->p_name != NULL);
97 dest->p_proto = src->p_proto;
104 dest->p_aliases = (char **)malloc((aliases_num+1) * (sizeof(char *)));
105 assert(dest->p_aliases != NULL);
106 memset(dest->p_aliases, 0, (aliases_num+1) * (sizeof(char *)));
109 dest
[all...]
H A Dtest-getrpc.c82 clone_rpcent(struct rpcent *dest, struct rpcent const *src) argument
84 assert(dest != NULL);
90 memset(dest, 0, sizeof(struct rpcent));
93 dest->r_name = strdup(src->r_name);
94 assert(dest->r_name != NULL);
97 dest->r_number = src->r_number;
104 dest->r_aliases = (char **)malloc((aliases_num+1) * (sizeof(char *)));
105 assert(dest->r_aliases != NULL);
106 memset(dest->r_aliases, 0, (aliases_num+1) * (sizeof(char *)));
109 dest
[all...]
/freebsd-10.3-release/contrib/ofed/management/infiniband-diags/src/
H A Dibportstate.c63 get_node_info(ib_portid_t *dest, uint8_t *data) argument
67 if (!smp_query(data, dest, IB_ATTR_NODE_INFO, 0, 0))
78 get_port_info(ib_portid_t *dest, uint8_t *data, int portnum, int port_op) argument
83 if (!smp_query(data, dest, IB_ATTR_PORT_INFO, portnum, 0))
112 printf("# Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
117 set_port_info(ib_portid_t *dest, uint8_t *data, int portnum, int port_op) argument
122 if (!smp_set(data, dest, IB_ATTR_PORT_INFO, portnum, 0))
134 printf("# Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
210 "-t(imeout) timeout_ms] <dest dr_path|lid|guid> <portnum> [<op>]\n",
/freebsd-10.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-tra.h122 * |sta| address[35:0] | 0 | src id| dest id |IOBLD8 | diff timestamp|
124 * |sta| address[35:1] | 0 | src id| dest id |IOBLD16| diff timestamp|
126 * |sta| address[35:2] | 0 | src id| dest id |IOBLD32| diff timestamp|
128 * |sta| address[35:3] | 0 | src id| dest id |IOBLD64| diff timestamp|
130 * |sta| address[35:3] | * or 16B mask | src id| dest id |IOBST | diff timestamp|
132 * |sta| * or address[35:3] | * or length | src id| dest id |IOBDMA | diff timestamp|
145 * |sta| address[37:0] | 0 |s-did| dest id | src id | Group 3 | diff timestamp|
147 * |sta| *address[37:3] | *Length | dest id | src id | Group 4 | diff timestamp|
203 * - dest id is unused (can only be L2c)
207 * - dest i
438 uint64_t dest : 5; member in struct:__anon7614::__anon7618
463 uint64_t dest : 5; member in struct:__anon7614::__anon7619
539 uint64_t dest : 5; member in struct:__anon7614::__anon7622
566 uint64_t dest : 5; member in struct:__anon7614::__anon7623
[all...]
/freebsd-10.3-release/contrib/apr/threadproc/unix/
H A Dthreadpriv.c25 void (*dest)(void *),
36 return pthread_key_create(&(*key)->key, dest);

Completed in 217 milliseconds

1234567891011>>