Searched refs:dest (Results 151 - 175 of 835) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/gcc/
H A Dtree-ssa-loop-ch.c65 if (flow_bb_inside_loop_p (loop, EDGE_SUCC (header, 0)->dest)
66 && flow_bb_inside_loop_p (loop, EDGE_SUCC (header, 1)->dest))
177 if (flow_bb_inside_loop_p (loop, EDGE_SUCC (header, 0)->dest))
183 header = exit->dest;
192 loop->num, exit->src->index, exit->dest->index);
196 if (!single_pred_p (exit->dest))
H A Ddomwalk.c146 basic_block dest; local
219 for (dest = first_dom_son (walk_data->dom_direction, bb);
220 dest; dest = next_dom_son (walk_data->dom_direction, dest))
221 worklist[sp++] = dest;
H A Dgcse.c1137 record_set_info (rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data)
1141 if (REG_P (dest) && REGNO (dest) >= FIRST_PSEUDO_REGISTER)
1142 record_one_set (REGNO (dest), record_set_insn);
1341 mems_conflict_for_gcse_p (rtx dest, rtx setter ATTRIBUTE_UNUSED,
1344 while (GET_CODE (dest) == SUBREG
1345 || GET_CODE (dest) == ZERO_EXTRACT
1346 || GET_CODE (dest) == STRICT_LOW_PART)
1347 dest = XEXP (dest,
1129 record_set_info(rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data) argument
1332 mems_conflict_for_gcse_p(rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data ATTRIBUTE_UNUSED) argument
1687 rtx dest = SET_DEST (pat); local
1998 record_last_set_info(rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data) argument
2319 rtx dest = SET_DEST (pat); local
2499 rtx dest, dest_addr; local
2883 rtx dest = SET_DEST (sset); local
3345 basic_block bb, dest; local
3577 basic_block dest, old_dest; local
3682 rtx dest; local
4374 gcse_emit_move_after(rtx src, rtx dest, rtx insn) argument
5296 rtx dest = SET_DEST (PATTERN (insn)); local
5467 reg_set_info(rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data) argument
5487 reg_clear_last_set(rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data) argument
5630 rtx dest, set, tmp; local
5942 rtx dest = SET_DEST (pat); local
[all...]
H A Dtree-ssa-threadupdate.c117 /* An outgoing edge from B. DUP_BLOCK will have OUTGOING_EDGE->dest as
122 OUTGOING_EDGE->dest. */
193 if (e->dest != dest_bb)
228 return e->dest->index;
314 edge e = make_edge (rd->dup_block, rd->outgoing_edge->dest, EDGE_FALLTHRU);
324 for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
472 edge dest = NULL; local
534 if (!dest)
535 dest = e2;
536 else if (e2 != dest)
[all...]
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzutil.c155 void zmemcpy(dest, source, len)
156 Bytef* dest;
162 *dest++ = *source++; /* ??? to be unrolled */
179 void zmemzero(dest, len)
180 Bytef* dest;
185 *dest++ = 0; /* ??? to be unrolled */
/freebsd-12-stable/sys/sys/
H A Dzutil.h183 # define zmemzero(dest, len) _fmemset(dest, 0, len)
187 # define zmemzero(dest, len) memset(dest, 0, len)
190 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
192 extern void zmemzero OF((Bytef* dest, uInt len));
/freebsd-12-stable/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h281 # define VA_COPY(dest, src) va_copy(dest, src)
284 # define VA_COPY(dest, src) __va_copy(dest, src)
286 # define VA_COPY(dest, src) (dest) = (src)
/freebsd-12-stable/contrib/ldns/ldns/
H A Dhost2wire.h158 * Allocates an array of uint8_t at dest, and puts the wireformat of the
163 * \param[out] dest pointer to the array of bytes to be created
167 ldns_status ldns_rdf2wire(uint8_t **dest, const ldns_rdf *rdf, size_t *size);
170 * Allocates an array of uint8_t at dest, and puts the wireformat of the
178 * \param[out] dest pointer to the array of bytes to be created
183 ldns_status ldns_rr2wire(uint8_t **dest, const ldns_rr *rr, int section, size_t *size);
186 * Allocates an array of uint8_t at dest, and puts the wireformat of the
191 ldns_status ldns_pkt2wire(uint8_t **dest, const ldns_pkt *p, size_t *size);
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c42 blkcpy_64(escrypt_block_t *dest, const escrypt_block_t *src) argument
48 dest->w[i] = src->w[i];
52 dest->d[i] = src->d[i];
58 blkxor_64(escrypt_block_t *dest, const escrypt_block_t *src) argument
64 dest->w[i] ^= src->w[i];
68 dest->d[i] ^= src->d[i];
74 blkcpy(escrypt_block_t *dest, const escrypt_block_t *src, size_t len) argument
81 dest->w[i] = src->w[i];
86 dest->d[i] = src->d[i];
92 blkxor(escrypt_block_t *dest, cons argument
[all...]
/freebsd-12-stable/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_private.h89 char *dest; local
93 dest = malloc(len + 1, M_BHND_NVRAM, M_NOWAIT);
94 if (dest == NULL)
97 memcpy(dest, str, len);
98 dest[len] = '\0';
100 return (dest);
107 char *dest; local
110 dest = malloc(len + 1, M_BHND_NVRAM, M_NOWAIT);
111 if (dest == NULL)
114 memcpy(dest, st
[all...]
/freebsd-12-stable/tests/sys/cddl/zfs/tests/cli_root/zfs_rename/
H A Dzfs_rename.kshlib67 function rename_dataset # src dest
70 typeset dest=$2
72 log_must $ZFS rename $src $dest
78 log_must datasetexists $dest
/freebsd-12-stable/contrib/less/
H A Dregexp.h31 extern void regsub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
/freebsd-12-stable/sys/dev/hptmv/
H A Draid5n.h64 #define xor_add_item(handle, dest, src, nsrc, bytes) \
66 if (((void**)(src))[0]==dest)\
67 DoXor2((PULONG)(dest), ((PULONG *)(src))[1], bytes);\
69 DoXor1((PULONG)(dest), ((PULONG *)(src))[0], ((PULONG *)(src))[1], bytes);\
/freebsd-12-stable/sys/dev/rtwn/rtl8192c/pci/
H A Dr92ce_tx.c82 r92ce_copy_tx_desc(void *dest, const void *src) argument
84 struct r92ce_tx_desc *txd = dest;
89 memcpy(dest, src, len);
91 memset(dest, 0, len);
/freebsd-12-stable/stand/i386/libi386/
H A Dlibi386.h56 uint32_t dest; member in struct:relocate_data
107 ssize_t i386_copyin(const void *src, vm_offset_t dest, const size_t len);
108 ssize_t i386_copyout(const vm_offset_t src, void *dest, const size_t len);
109 ssize_t i386_readin(readin_handle_t fd, vm_offset_t dest, const size_t len);
/freebsd-12-stable/crypto/openssh/
H A Dcipher-chachapoly.h35 u_char *dest, const u_char *src, u_int len, u_int aadlen, u_int authlen,
/freebsd-12-stable/contrib/ofed/infiniband-diags/src/
H A Drdma-ndd.c87 static void build_node_desc(char *dest, size_t len, argument
90 char *end = dest + len-1;
94 while (*src && (dest < end)) {
96 *dest++ = *src++;
102 while (*field && (*field != '.') && (dest < end))
103 *dest++ = *field++;
107 while (*field && (dest < end))
108 *dest++ = *field++;
114 *dest = 0;
/freebsd-12-stable/stand/efi/loader/
H A Dcopy.c310 efi_copyin(const void *src, vm_offset_t dest, const size_t len) argument
314 stage_offset = (vm_offset_t)staging - dest;
319 if (!efi_check_space(dest + stage_offset + len)) {
323 bcopy(src, (void *)(dest + stage_offset), len);
328 efi_copyout(const vm_offset_t src, void *dest, const size_t len) argument
336 bcopy((void *)(src + stage_offset), dest, len);
342 efi_readin(readin_handle_t fd, vm_offset_t dest, const size_t len) argument
345 if (!efi_check_space(dest + stage_offset + len)) {
349 return (VECTX_READ(fd, (void *)(dest + stage_offset), len));
/freebsd-12-stable/usr.bin/env/
H A Denvopts.c169 char *dest, **newargv, *newstr, **nextarg, **oldarg; local
196 for (src = str, dest = newstr; *src != '\0'; src++) {
199 * what should be copied to *dest. It only decides what
200 * character(s) to copy, it should not modify *dest. In some
219 bq_destlen = dest - *(nextarg - 1);
228 &dest, &src);
244 bq_destlen = dest - *(nextarg - 1);
334 * needs to be copied, copy whatever that is to *dest.
339 *nextarg++ = dest;
344 *dest
[all...]
/freebsd-12-stable/contrib/xz/src/liblzma/common/
H A Dindex.c741 /// Add the Stream nodes from the source index to dest using recursion.
767 lzma_index_cat(lzma_index *restrict dest, lzma_index *restrict src,
770 const lzma_vli dest_file_size = lzma_index_file_size(dest);
774 || dest->uncompressed_size + src->uncompressed_size
786 dest->record_count, dest->index_list_size);
794 // to be done before modifying dest or src.
796 index_stream *s = (index_stream *)(dest->streams.rightmost);
838 // Add all the Streams from src to dest. Update the base offsets
841 .uncompressed_size = dest
929 lzma_index *dest = index_init_plain(allocator); local
[all...]
/freebsd-12-stable/contrib/wpa/src/utils/
H A Dos_internal.c279 void * os_memcpy(void *dest, const void *src, size_t n) argument
281 char *d = dest;
285 return dest;
289 void * os_memmove(void *dest, const void *src, size_t n) argument
291 if (dest < src)
292 os_memcpy(dest, src, n);
295 char *d = (char *) dest + n;
300 return dest;
433 size_t os_strlcpy(char *dest, const char *src, size_t siz) argument
439 /* Copy string up to the maximum size of the dest buffe
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp42 std::string &dest) const {
63 dest = reg_sstr.GetString();
117 dest = sstr.GetString();
120 return !dest.empty();
141 std::string &dest) const {
142 dest.clear();
194 dest = sstr.GetString();
195 return !dest.empty();
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
H A D__bsd_locale_defaults.h31 #define __libcpp_mbsrtowcs_l(dest, src, len, ps, l) mbsrtowcs_l(dest, src, len, ps, l)
/freebsd-12-stable/contrib/libstdc++/libsupc++/
H A Deh_throw.cc58 void (*dest) (void *))
62 header->exceptionDestructor = dest;
/freebsd-12-stable/bin/pax/
H A Dgen_subs.c184 * copy src to dest up to len chars (stopping at first '\0').
192 l_strncpy(char *dest, const char *src, int len) argument
197 stop = dest + len;
198 start = dest;
199 while ((dest < stop) && (*src != '\0'))
200 *dest++ = *src++;
201 len = dest - start;
202 while (dest < stop)
203 *dest++ = '\0';

Completed in 333 milliseconds

1234567891011>>