Searched refs:to (Results 1 - 25 of 1425) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dder_copy.c20 * may be used to endorse or promote products derived from this software
42 heim_general_string *to)
44 *to = strdup(*from);
45 if(*to == NULL)
51 der_copy_integer (const int *from, int *to) argument
53 *to = *from;
58 der_copy_unsigned (const unsigned *from, unsigned *to) argument
60 *to = *from;
65 der_copy_generalized_time (const time_t *from, time_t *to) argument
67 *to
41 der_copy_general_string(const heim_general_string *from, heim_general_string *to) argument
72 der_copy_utctime(const time_t *from, time_t *to) argument
79 der_copy_utf8string(const heim_utf8_string *from, heim_utf8_string *to) argument
85 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
98 der_copy_ia5_string(const heim_ia5_string *from, heim_ia5_string *to) argument
105 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
116 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
128 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
135 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
146 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
158 der_copy_oid(const heim_oid *from, heim_oid *to) argument
170 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dbcopywrap.c13 int bcopywrap(from, to, size)
14 void *from, *to;
17 bcopy((caddr_t)from, (caddr_t)to, size);
H A Dkmemcpywrap.c14 int kmemcpywrap(from, to, size)
15 void *from, *to;
20 ret = kmemcpy((caddr_t)to, (u_long)from, size);
/freebsd-11-stable/lib/libc/string/
H A Dstpcpy.c16 * may be used to endorse or promote products derived from this software
41 stpcpy(char * __restrict to, const char * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
45 return(to);
H A Dstrcpy.c14 * may be used to endorse or promote products derived from this software
39 strcpy(char * __restrict to, const char * __restrict from) argument
41 char *save = to;
43 for (; (*to = *from); ++from, ++to);
H A Dwcpcpy.c16 * may be used to endorse or promote products derived from this software
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
45 return(to);
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dswab.c18 * may be used to endorse or promote products derived from this software
40 swab (char *from, char *to, int nbytes) argument
43 *(to + 1) = *from;
44 *to = *(from + 1);
45 to += 2;
/freebsd-11-stable/sys/libkern/
H A Dstrcpy.c14 * may be used to endorse or promote products derived from this software
36 strcpy(char * __restrict to, const char * __restrict from) argument
38 char *save = to;
40 for (; (*to = *from) != 0; ++from, ++to);
/freebsd-11-stable/usr.sbin/fifolog/lib/
H A Dminiobj.h31 #define ALLOC_OBJ(to, type_magic) \
33 (to) = calloc(1, sizeof *(to)); \
34 if ((to) != NULL) \
35 (to)->magic = (type_magic); \
38 #define FREE_OBJ(to) \
40 (to)->magic = (0); \
41 free(to); \
64 #define CAST_OBJ(to, from, type_magic) \
66 (to)
[all...]
/freebsd-11-stable/lib/libc/amd64/string/
H A Dstrcpy.c34 strcpy(char * __restrict to, const char * __restrict from) argument
36 __stpcpy(to, from);
37 return(to);
/freebsd-11-stable/sys/kern/
H A Dtty_outq.c49 * bits for parity marking and such. This mechanism is similar to the
50 * old clists, but only contains the features we need to buffer the
61 #define TTYOUTQ_INSERT_TAIL(to, tob) do { \
62 if (to->to_end == 0) { \
63 tob->tob_next = to->to_firstblock; \
64 to->to_firstblock = tob; \
66 tob->tob_next = to->to_lastblock->tob_next; \
67 to->to_lastblock->tob_next = tob; \
69 to->to_nblocks++; \
72 #define TTYOUTQ_REMOVE_HEAD(to) d
85 ttyoutq_flush(struct ttyoutq *to) argument
93 ttyoutq_setsize(struct ttyoutq *to, struct tty *tp, size_t size) argument
125 ttyoutq_free(struct ttyoutq *to) argument
141 ttyoutq_read(struct ttyoutq *to, void *buf, size_t len) argument
202 ttyoutq_read_uio(struct ttyoutq *to, struct tty *tp, struct uio *uio) argument
278 ttyoutq_write(struct ttyoutq *to, const void *buf, size_t nbytes) argument
323 ttyoutq_write_nofrag(struct ttyoutq *to, const void *buf, size_t nbytes) argument
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dbzero.c20 bzero (void *to, size_t count) argument
22 memset (to, 0, count);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dbzero.c20 bzero (void *to, size_t count) argument
22 memset (to, 0, count);
/freebsd-11-stable/contrib/wpa/src/fst/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-11-stable/contrib/wpa/src/pae/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dcopy_host_realm.c18 * may be used to endorse or promote products derived from this software
37 * Copy the list of realms from `from' to `to'.
40 * @param from list of realms to copy from.
41 * @param to list of realms to copy to, free list of krb5_free_host_realm().
43 * @return Returns 0 to indicate success. Otherwise an kerberos et
52 krb5_realm **to)
60 *to
50 krb5_copy_host_realm(krb5_context context, const krb5_realm *from, krb5_realm **to) argument
[all...]
/freebsd-11-stable/share/examples/ypldap/
H A Dypldap.conf15 # starting point for groups directory search, default to basedn
21 attribute name maps to "uid"
23 attribute uid maps to "uidNumber"
24 attribute gid maps to "gidNumber"
25 attribute gecos maps to "cn"
26 attribute home maps to "homeDirectory"
27 attribute shell maps to "loginShell"
35 attribute groupname maps to "cn"
37 attribute groupgid maps to "gidNumber"
39 list groupmembers maps to "memberUi
[all...]
/freebsd-11-stable/contrib/ldns/compat/
H A Dmemmove.c17 uint8_t* to = (uint8_t*) dest; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
24 /* <to........> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from-to < (in
[all...]
/freebsd-11-stable/contrib/unbound/compat/
H A Dmemmove.c17 uint8_t* to = (uint8_t*) dest; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
24 /* <to........> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from-to < (in
[all...]
/freebsd-11-stable/sys/fs/tmpfs/
H A Dtmpfs_fifoops.h7 * This code is derived from software contributed to The NetBSD Foundation
39 #error not supposed to be exposed to userland.
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_random_private.h30 #error This header is only to be used internally to libarchive.
H A Darchive_platform_xattr.h35 #error This header is only to be used internally to libarchive.
H A Darchive_getdate.h32 #error This header is only to be used internally to libarchive.
H A Darchive_write_disk_private.h33 #error This header is only to be used internally to libarchive.
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dalloc_ttype.c4 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
24 * holders shall not be used in advertising or otherwise to promote the *
50 * so we do not have to worry about order dependencies.
94 to
97 realign_data(TERMTYPE *to, char **ext_Names, int ext_Booleans, int ext_Numbers, int ext_Strings) argument
343 adjust_cancels(TERMTYPE *to, TERMTYPE *from) argument
388 _nc_align_termtype(TERMTYPE *to, TERMTYPE *from) argument
[all...]

Completed in 122 milliseconds

1234567891011>>