Searched refs:dest (Results 101 - 125 of 807) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.sbin/ppp/
H A Dtcp.c66 struct sockaddr_in dest; local
70 dest.sin_family = AF_INET;
71 dest.sin_addr = GetIpAddr(host);
72 if (dest.sin_addr.s_addr == INADDR_NONE) {
76 dest.sin_port = htons(atoi(port));
77 if (dest.sin_port == 0) {
80 dest.sin_port = sp->s_port;
92 if (connect(sock, (struct sockaddr *)&dest, sizeof dest) < 0) {
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_mbstr.c100 ASN1_STRING *dest; local
192 dest = *out;
193 if (dest->data) {
194 dest->length = 0;
195 OPENSSL_free(dest->data);
196 dest->data = NULL;
198 dest->type = str_type;
201 dest = ASN1_STRING_type_new(str_type);
202 if (!dest) {
206 *out = dest;
[all...]
/freebsd-11-stable/contrib/flex/
H A Dregex.c98 * @param dest The destination buffer.
100 * @return dest
102 char *regmatch_cpy (regmatch_t * m, char *dest, const char *src) argument
105 if (dest)
106 dest[0] = '\0';
107 return dest;
110 snprintf (dest, regmatch_len(m), "%s", src + m->rm_so);
111 return dest;
/freebsd-11-stable/contrib/sendmail/libsm/
H A Db-strl.c70 char dest[SRC_SIZE], source[SRC_SIZE];
94 ** Let's place a small string at the head of dest for
97 (void) sm_strlcpy(dest, "a small string at the start! ", SRC_SIZE - 1);
117 strlcat(dest, source, SRC_SIZE - 1);
128 sm_strlcat(dest, source, SRC_SIZE - 1);
158 strlcpy(dest, source, SRC_SIZE - 1);
169 sm_strlcpy(dest, source, SRC_SIZE - 1);
/freebsd-11-stable/sys/powerpc/include/
H A Dstdarg.h51 #define va_copy(dest, src) \
52 __builtin_va_copy((dest), (src))
54 #define __va_copy(dest, src) \
55 va_copy((dest), (src))
143 #define va_copy(dest, src) \
144 ((dest) = (src))
/freebsd-11-stable/stand/uboot/lib/
H A Dcopy.c149 uboot_copyin(const void *src, vm_offset_t dest, const size_t len) argument
151 bcopy(src, (void *)dest, len);
156 uboot_copyout(const vm_offset_t src, void *dest, const size_t len) argument
158 bcopy((void *)src, dest, len);
163 uboot_readin(const int fd, vm_offset_t dest, const size_t len) argument
165 return (read(fd, (void *)dest, len));
/freebsd-11-stable/sys/security/mac_lomac/
H A Dmac_lomac.c478 lomac_copy(struct mac_lomac *source, struct mac_lomac *dest) argument
482 lomac_copy_single(source, dest);
484 lomac_copy_auxsingle(source, dest);
486 lomac_copy_range(source, dest);
859 lomac_copy_label(struct label *src, struct label *dest) argument
862 *SLOT(dest) = *SLOT(src);
890 struct mac_lomac *source, *dest; local
893 dest = SLOT(dlabel);
895 lomac_copy_single(source, dest);
902 struct mac_lomac *source, *dest; local
994 struct mac_lomac *dest; local
1005 struct mac_lomac *dest; local
1016 struct mac_lomac *source, *dest; local
1065 struct mac_lomac *source, *dest; local
1077 struct mac_lomac *source, *dest; local
1090 struct mac_lomac *source, *dest; local
1175 struct mac_lomac *dest; local
1232 struct mac_lomac *source, *dest; local
1244 struct mac_lomac *source, *dest; local
1289 struct mac_lomac *source, *dest; local
1301 struct mac_lomac *source, *dest; local
1313 struct mac_lomac *source, *dest; local
1327 struct mac_lomac *source, *dest; local
1351 struct mac_lomac *source, *dest; local
1372 struct mac_lomac *source, *dest; local
1396 struct mac_lomac *source, *dest; local
1438 struct mac_lomac *source, *dest; local
1449 struct mac_lomac *dest; local
1460 struct mac_lomac *source, *dest; local
1471 struct mac_lomac *dest; local
1483 struct mac_lomac *source, *dest; local
1495 struct mac_lomac *source, *dest; local
1507 struct mac_lomac *dest; local
1518 struct mac_lomac *dest; local
1629 struct mac_lomac *source, *dest; local
1641 struct mac_lomac *source, *dest; local
2012 struct mac_lomac *source, *dest; local
2024 struct mac_lomac *source, *dest; local
2038 struct mac_lomac source, *dest; local
2055 struct mac_lomac *source, *dest; local
2069 struct mac_lomac *source, *dest; local
2084 struct mac_lomac source, *dest; local
2100 struct mac_lomac *source, *dest; local
2111 struct mac_lomac *source, *dest; local
2276 struct mac_lomac ml_temp, *source, *dest; local
2324 struct mac_lomac *source, *dest; local
2783 struct mac_lomac *source, *dest, *dir, temp; local
2813 struct mac_lomac *source, *dest, *obj, *robj; local
2867 struct mac_lomac *source, *dest; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec_key.c140 EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src) argument
144 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))
162 if (dest->pub_key)
163 EC_POINT_free(dest->pub_key);
164 dest
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dcselib.c1190 cselib_invalidate_rtx (rtx dest)
1192 while (GET_CODE (dest) == SUBREG
1193 || GET_CODE (dest) == ZERO_EXTRACT
1194 || GET_CODE (dest) == STRICT_LOW_PART)
1195 dest = XEXP (dest, 0);
1197 if (REG_P (dest))
1198 cselib_invalidate_regno (REGNO (dest), GET_MODE (dest));
1199 else if (MEM_P (dest))
1188 cselib_invalidate_rtx(rtx dest) argument
1211 cselib_invalidate_rtx_note_stores(rtx dest, rtx ignore ATTRIBUTE_UNUSED, void *data ATTRIBUTE_UNUSED) argument
1222 cselib_record_set(rtx dest, cselib_val *src_elt, cselib_val *dest_addr_elt) argument
1268 rtx dest; member in struct:set
1322 rtx dest = sets[i].dest; local
1358 rtx dest = sets[i].dest; local
1375 rtx dest = sets[i].dest; local
[all...]
H A Dcfgloopanal.c57 int src, dest; /* Source and destination. */ member in struct:edge
106 fprintf (f, " %d", e->dest);
132 e->dest = t;
161 #define EDGE_SRC(E) (forward ? (E)->src : (E)->dest)
162 #define EDGE_DEST(E) (forward ? (E)->dest : (E)->src)
214 gcc_assert (g->vertices[e->src].component >= g->vertices[e->dest].component);
216 if (g->vertices[e->src].component != g->vertices[e->dest].component)
220 if (flow_bb_inside_loop_p (real->src->loop_father, real->dest))
274 int i, src, dest; local
296 if (e->dest
[all...]
H A Dcfgcleanup.c130 jump_block = cbranch_fallthru_edge->dest;
153 cbranch_dest_block = cbranch_jump_edge->dest;
194 rtx dest;
202 dest = XEXP (exp, 0);
203 regno = REGNO (dest);
207 int n = hard_regno_nregs[regno][GET_MODE (dest)];
217 dest = SET_DEST (exp);
218 if (dest == pc_rtx)
220 if (!REG_P (dest))
222 regno = REGNO (dest);
191 rtx dest; local
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dstdarg.h54 #define va_copy(dest, src) \
55 __builtin_va_copy((dest), (src))
/freebsd-11-stable/sys/contrib/ncsw/inc/
H A Dstdlib_ext.h105 * @dest: Where to copy the string to
113 char * strncpy(char * dest,const char *src,size_t count);
117 * @dest: Where to copy the string to
120 char * strcpy(char * dest,const char *src);
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_er_ssdp.c130 struct sockaddr_in dest; local
145 os_memset(&dest, 0, sizeof(dest));
146 dest.sin_family = AF_INET;
147 dest.sin_addr.s_addr = inet_addr(UPNP_MULTICAST_ADDRESS);
148 dest.sin_port = htons(UPNP_MULTICAST_PORT);
151 (struct sockaddr *) &dest, sizeof(dest)) < 0)
/freebsd-11-stable/sys/riscv/include/
H A Dstdarg.h54 #define va_copy(dest, src) \
55 __builtin_va_copy((dest), (src))
/freebsd-11-stable/tools/test/hwpmc/
H A Dpmctest.py67 parser.add_option("-p", "--program", dest="program",
69 parser.add_option("-w", "--wait", action="store_true", dest="wait",
/freebsd-11-stable/usr.sbin/kldxref/
H A Def_sparc64.c42 * relocation address of the data in `dest'.
46 Elf_Off dataoff, size_t len, void *dest)
59 memcpy((u_char *)dest + (relbase + a->r_offset -
45 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, Elf_Off dataoff, size_t len, void *dest) argument
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-dma-engine.h316 * @param dest Pointer to the destination memory. cvmx_ptr_to_phys() will be
327 static inline int cvmx_dma_engine_memcpy(int engine, void *dest, void *source, int length) argument
333 cvmx_ptr_to_phys(dest), length);
341 * @param dest Pointer to the destination memory. cvmx_ptr_to_phys() will be
353 static inline int cvmx_dma_engine_memcpy_zero_byte(int engine, void *dest, void *source, int length, int core) argument
371 cvmx_ptr_to_phys(dest), length);
/freebsd-11-stable/sys/mips/include/
H A Dstdarg.h140 #define __va_copy(dest, src) (dest) = (src)
141 #define va_copy(dest, src) (dest) = (src)
/freebsd-11-stable/sys/netinet/
H A Dip_fastfwd.c112 ip_findroute(struct nhop4_basic *pnh, struct in_addr dest, struct mbuf *m) argument
116 if (fib4_lookup_nh_basic(M_GETFIB(m), dest, 0, 0, pnh) != 0) {
154 struct in_addr dest, odest, rtdest; local
224 odest.s_addr = dest.s_addr = ip->ip_dst.s_addr;
241 dest.s_addr = ip->ip_dst.s_addr;
246 if (odest.s_addr != dest.s_addr) {
250 if (in_localip(dest))
302 dest.s_addr = ((struct sockaddr_in *)
311 if (ip_findroute(&nh, dest, m) != 0)
317 rtdest.s_addr = dest
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dsigsetops.c86 sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right) argument
91 dest->__bits[i] = left->__bits[i] | right->__bits[i];
96 sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right) argument
101 dest->__bits[i] = left->__bits[i] & right->__bits[i];
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic.c174 void __atomic_load_c(int size, void *src, void *dest, int model) { argument
176 *((type *)dest) = __c11_atomic_load((_Atomic(type) *)src, model); \
182 memcpy(dest, src, size);
188 void __atomic_store_c(int size, void *dest, void *src, int model) { argument
190 __c11_atomic_store((_Atomic(type) *)dest, *(type *)src, model); \
194 Lock *l = lock_for_pointer(dest);
196 memcpy(dest, src, size);
274 void __atomic_store_##n(type *dest, type val, int model) { \
276 __c11_atomic_store((_Atomic(type) *)dest, val, model); \
279 Lock *l = lock_for_pointer(dest); \
[all...]
/freebsd-11-stable/contrib/ldns/ldns/
H A Dhost2wire.h126 * Allocates an array of uint8_t at dest, and puts the wireformat of the
131 * \param[out] dest pointer to the array of bytes to be created
135 ldns_status ldns_rdf2wire(uint8_t **dest, const ldns_rdf *rdf, size_t *size);
138 * Allocates an array of uint8_t at dest, and puts the wireformat of the
146 * \param[out] dest pointer to the array of bytes to be created
150 ldns_status ldns_rr2wire(uint8_t **dest, const ldns_rr *rr, int, size_t *size);
153 * Allocates an array of uint8_t at dest, and puts the wireformat of the
158 ldns_status ldns_pkt2wire(uint8_t **dest, const ldns_pkt *p, size_t *size);
/freebsd-11-stable/contrib/apr/encoding/
H A Dapr_encode.c211 APR_DECLARE(apr_status_t) apr_encode_base64(char *dest, const char *src,
224 if (dest) {
225 register char *bufout = dest;
262 *len = bufout - dest;
277 APR_DECLARE(apr_status_t) apr_encode_base64_binary(char *dest, const unsigned char *src,
286 if (dest) {
287 register char *bufout = dest;
324 *len = bufout - dest;
377 APR_DECLARE(apr_status_t) apr_decode_base64(char *dest, const char *src,
388 if (dest) {
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DThunks.cpp52 AArch64ABSLongThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {} argument
60 AArch64ADRPThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {} argument
76 ARMThunk(Symbol &dest) : Thunk(dest, 0) {} argument
106 ThumbThunk(Symbol &dest) : Thunk(dest, 0) { alignment = 2; } argument
129 ARMV7ABSLongThunk(Symbol &dest) : ARMThunk(dest) {} argument
138 ARMV7PILongThunk(Symbol &dest) argument
147 ThumbV7ABSLongThunk(Symbol &dest) argument
156 ThumbV7PILongThunk(Symbol &dest) argument
170 ARMV5ABSLongThunk(Symbol &dest) argument
181 ARMV5PILongThunk(Symbol &dest) argument
193 ThumbV6MABSLongThunk(Symbol &dest) argument
202 ThumbV6MPILongThunk(Symbol &dest) argument
212 MipsThunk(Symbol &dest) argument
223 MicroMipsThunk(Symbol &dest) argument
234 MicroMipsR6Thunk(Symbol &dest) argument
246 PPC32PltCallStub(const InputSection &isec, const Relocation &rel, Symbol &dest) argument
261 PPC32LongThunk(Symbol &dest, int64_t addend) argument
277 PPC64PltCallStub(Symbol &dest) argument
298 PPC64LongBranchThunk(Symbol &dest, int64_t addend) argument
303 PPC64PILongBranchThunk(Symbol &dest, int64_t addend) argument
318 PPC64PDLongBranchThunk(Symbol &dest, int64_t addend) argument
[all...]

Completed in 207 milliseconds

1234567891011>>