Searched refs:source (Results 26 - 50 of 442) sorted by relevance

1234567891011>>

/freebsd-10.0-release/tools/sched/
H A Dschedgraph.py6 # Redistribution and use in source and binary forms, with or without
9 # 1. Redistributions of source code must retain the above copyright
61 # Add a per-source summary display
317 def __init__(self, master, source):
319 if (source.hidden == 1):
323 self.source = source
324 self.name = source.name
372 for source in sources:
373 self.addsource(source)
[all...]
/freebsd-10.0-release/usr.bin/dc/
H A Dinout.c34 static int src_getcharstream(struct source *);
35 static void src_ungetcharstream(struct source *);
36 static char *src_getlinestream(struct source *);
37 static int src_getcharstring(struct source *);
38 static void src_ungetcharstring(struct source *);
39 static char *src_getlinestring(struct source *);
40 static void src_freestring(struct source *);
61 src_setstream(struct source *src, FILE *stream)
69 src_setstring(struct source *src, char *p)
78 src_getcharstream(struct source *sr
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Dcolumns.c52 next_col(char *source, unsigned offset) argument
55 char *result = source + offset;
62 * Parse the source string, storing the offsets and widths of each column in
66 split_row(char *source, unsigned *offsets, unsigned *widths) argument
75 offset = (unsigned) (mark + next - source);
80 } while ((next = next_col(source, offset)) != 0);
82 offset = (unsigned) strlen(source);
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Db-strl.c70 char dest[SRC_SIZE], source[SRC_SIZE];
100 ** Let's place a larger string into source for the catenation and
103 (void) strlcpy(source,
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-10.0-release/contrib/subversion/subversion/svn/
H A Dcopy-cmd.c68 svn_client_copy_source_t *source = apr_palloc(pool, sizeof(*source));
109 source->path = src;
110 source->revision = &(opt_state->start_revision);
111 source->peg_revision = peg_revision;
113 APR_ARRAY_PUSH(sources, svn_client_copy_source_t *) = source;
66 svn_client_copy_source_t *source = apr_palloc(pool, sizeof(*source)); local
/freebsd-10.0-release/contrib/gdb/gdb/tui/
H A Dtui-source.c1 /* TUI display source window.
30 #include "source.h"
37 #include "tui/tui-source.h"
42 /* Function to display source in the source window. */
124 cur_line])->which_element.source.line;
140 element->which_element.source.line_or_addr.line_no =
142 element->which_element.source.is_exec_point =
202 cur_line])->which_element.source.line,
207 cur_line])->which_element.source
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4remotetcp.ksh62 $getaddr $tcpport | read source dest
88 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
95 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
101 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
108 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source"/
H A Dtst.ipv4remoteicmp.ksh53 $getaddr | read source dest
61 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
72 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
H A Dtst.ipv6remoteicmp.ksh53 $getaddr | read source dest
70 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
80 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
H A Dtst.remotetcpstate.ksh69 $getaddr $tcpport | read source dest
97 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
104 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
111 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
118 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
130 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
137 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
/freebsd-10.0-release/crypto/heimdal/lib/kadm5/
H A Drename_c.c6 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
40 krb5_principal source,
58 krb5_store_principal(sp, source);
39 kadm5_c_rename_principal(void *server_handle, krb5_principal source, krb5_principal target) argument
H A Drename_s.c6 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
40 krb5_principal source,
49 if(krb5_principal_compare(context->context, source, target))
55 source, HDB_F_GET_ANY|HDB_F_ADMIN_DATA, 0, &ent);
69 krb5_get_pw_salt(context->context, source, &salt2);
96 kadm5_log_rename (context, source, &ent.entry);
39 kadm5_s_rename_principal(void *server_handle, krb5_principal source, krb5_principal target) argument
/freebsd-10.0-release/sbin/mount_unionfs/
H A Dmount_unionfs.c11 * Redistribution and use in source and binary forms, with or without
14 * 1. Redistributions of source code must retain the above copyright
133 char source [MAXPATHLEN], target[MAXPATHLEN], errmsg[255]; local
177 /* resolve both target and source with realpath(3) */
180 if (checkpath(argv[1], source) != 0)
181 err(EX_USAGE, "%s", source);
183 if (subdir(target, source) || subdir(source, target))
185 argv[0], target, argv[1], source);
188 build_iovec(&iov, &iovlen, "fspath", source, (size_
[all...]
/freebsd-10.0-release/sys/contrib/ia64/libuwx/src/
H A Duwx_bstream.c34 uint64_t source,
40 bstream->source = source;
48 bstream->source = 0;
49 bstream->bufp = (unsigned char *) (intptr_t) source;
76 if (bstream->source & 0x7 || bstream->ntotal < sizeof(uint64_t))
81 bstream->source, len, bstream->cb_token);
86 bstream->source += n;
31 uwx_init_bstream( struct uwx_bstream *bstream, struct uwx_env *env, uint64_t source, unsigned int len, int request) argument
/freebsd-10.0-release/sys/security/mac_biba/
H A Dmac_biba.c20 * Redistribution and use in source and binary forms, with or without
23 * 1. Redistributions of source code must retain the above copyright
491 biba_copy(struct mac_biba *source, struct mac_biba *dest) argument
494 if (source->mb_flags & MAC_BIBA_FLAG_EFFECTIVE)
495 biba_copy_effective(source, dest);
496 if (source->mb_flags & MAC_BIBA_FLAG_RANGE)
497 biba_copy_range(source, dest);
801 struct mac_biba *source, *dest; local
803 source = SLOT(cred->cr_label);
806 biba_copy_effective(source, des
813 struct mac_biba *source, *dest; local
938 struct mac_biba *source, *dest; local
987 struct mac_biba *source, *dest; local
999 struct mac_biba *source, *dest; local
1012 struct mac_biba *source, *dest; local
1124 struct mac_biba *source, *dest; local
1136 struct mac_biba *source, *dest; local
1181 struct mac_biba *source, *dest; local
1195 struct mac_biba *source, *dest; local
1207 struct mac_biba *source, *dest; local
1221 struct mac_biba *source, *dest; local
1245 struct mac_biba *source, *dest; local
1266 struct mac_biba *source, *dest; local
1290 struct mac_biba *source, *dest; local
1352 struct mac_biba *source, *dest; local
1386 struct mac_biba *source, *dest; local
1409 struct mac_biba *source, *dest; local
1421 struct mac_biba *source, *dest; local
1591 struct mac_biba *source, *dest; local
1603 struct mac_biba *source, *dest; local
1705 struct mac_biba *source, *dest; local
1891 struct mac_biba *source, *dest; local
2247 struct mac_biba *source, *dest; local
2259 struct mac_biba *source, *dest; local
2273 struct mac_biba source, *dest; local
2290 struct mac_biba *source, *dest; local
2304 struct mac_biba *source, *dest; local
2319 struct mac_biba source, *dest; local
2334 struct mac_biba *source, *dest; local
2345 struct mac_biba *source, *dest; local
2503 struct mac_biba *source, *dest; local
2644 struct mac_biba *source, *dest; local
2742 struct mac_biba *source, *dest; local
2833 struct mac_biba *source, *dest; local
2845 struct mac_biba mb_temp, *source, *dest; local
2886 struct mac_biba *source, *dest; local
3531 struct mac_biba *source, *dest, mb_temp; local
3553 struct mac_biba *source, *dest; local
3565 struct mac_biba *source, mb_temp; local
[all...]
/freebsd-10.0-release/sys/security/mac_mls/
H A Dmac_mls.c20 * Redistribution and use in source and binary forms, with or without
23 * 1. Redistributions of source code must retain the above copyright
452 mls_copy(struct mac_mls *source, struct mac_mls *dest) argument
455 if (source->mm_flags & MAC_MLS_FLAG_EFFECTIVE)
456 mls_copy_effective(source, dest);
457 if (source->mm_flags & MAC_MLS_FLAG_RANGE)
458 mls_copy_range(source, dest);
762 struct mac_mls *source, *dest; local
764 source = SLOT(cred->cr_label);
767 mls_copy_effective(source, des
774 struct mac_mls *source, *dest; local
898 struct mac_mls *source, *dest; local
949 struct mac_mls *source, *dest; local
961 struct mac_mls *source, *dest; local
974 struct mac_mls *source, *dest; local
1042 struct mac_mls *source, *dest; local
1054 struct mac_mls *source, *dest; local
1099 struct mac_mls *source, *dest; local
1111 struct mac_mls *source, *dest; local
1123 struct mac_mls *source, *dest; local
1137 struct mac_mls *source, *dest; local
1161 struct mac_mls *source, *dest; local
1182 struct mac_mls *source, *dest; local
1206 struct mac_mls *source, *dest; local
1244 struct mac_mls *source, *dest; local
1278 struct mac_mls *source, *dest; local
1301 struct mac_mls *source, *dest; local
1313 struct mac_mls *source, *dest; local
1483 struct mac_mls *source, *dest; local
1495 struct mac_mls *source, *dest; local
1597 struct mac_mls *source, *dest; local
1783 struct mac_mls *source, *dest; local
1950 struct mac_mls *source, *dest; local
1962 struct mac_mls *source, *dest; local
1976 struct mac_mls source, *dest; local
1993 struct mac_mls *source, *dest; local
2007 struct mac_mls *source, *dest; local
2022 struct mac_mls source, *dest; local
2038 struct mac_mls *source, *dest; local
2050 struct mac_mls *source, *dest; local
2129 struct mac_mls *source, *dest; local
2270 struct mac_mls *source, *dest; local
2368 struct mac_mls *source, *dest; local
2459 struct mac_mls *source, *dest; local
2471 struct mac_mls mm_temp, *source, *dest; local
2511 struct mac_mls *source, *dest; local
3156 struct mac_mls *source, *dest, mm_temp; local
3178 struct mac_mls *source, *dest; local
3190 struct mac_mls *source, mm_temp; local
[all...]
/freebsd-10.0-release/share/mk/
H A Dbsd.kmod.mk3 # Search for kernel source tree in standard places.
12 .error Unable to locate the kernel source tree. Set SYSDIR to override.
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-dma-engine.h6 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions of source code must retain the above copyright
299 * case of EXTERNAL, this is the source PCI / PCIe address.
319 * @param source Pointer to the source memory.
327 static inline int cvmx_dma_engine_memcpy(int engine, void *dest, void *source, int length) argument
332 return cvmx_dma_engine_transfer(engine, header, cvmx_ptr_to_phys(source),
344 * @param source Pointer to the source memory.
353 static inline int cvmx_dma_engine_memcpy_zero_byte(int engine, void *dest, void *source, in argument
[all...]
H A Dcvmx-tra.h6 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions of source code must retain the above copyright
195 * - source id is encoded as follows:
205 * - source id is encoded as follows:
308 * Enumeration of the bitmask of all source commands.
332 CVMX_TRA_SID_ALL = -1ull /**< Enable tracing all the above source commands */
388 uint64_t source : 5; member in struct:__anon7123::__anon7125
396 uint64_t source : 5;
412 uint64_t source : 5; member in struct:__anon7123::__anon7126
420 uint64_t source
437 uint64_t source : 4; member in struct:__anon7123::__anon7127
462 uint64_t source : 4; member in struct:__anon7123::__anon7128
488 uint64_t source : 5; member in struct:__anon7123::__anon7129
513 uint64_t source : 5; member in struct:__anon7123::__anon7130
540 uint64_t source : 5; member in struct:__anon7123::__anon7131
567 uint64_t source : 5; member in struct:__anon7123::__anon7132
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_unget_wch.c46 * wide-character 'source'.
49 _nc_wcrtomb(char *target, wchar_t source, mbstate_t * state)
56 temp[0] = source;
60 result = wcrtomb(target, source, state);
/freebsd-10.0-release/crypto/openssl/crypto/des/
H A DFILES019 des.c - des(1) source code.
27 /* libdes.a source code */
30 ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code.
31 ecb3_enc.c - des_ecb3_encrypt() source.
32 cbc_ckm.c - des_cbc_cksum() source.
33 cbc_enc.c - des_cbc_encrypt() source.
37 cbc3_enc.c - des_3cbc_encrypt() source, don't use this function.
38 cfb_enc.c - des_cfb_encrypt() source.
43 ofb_enc.c - des_cfb_encrypt() source.
48 enc_read.c - des_enc_read() source
[all...]
/freebsd-10.0-release/sys/security/mac_lomac/
H A Dmac_lomac.c17 * Redistribution and use in source and binary forms, with or without
20 * 1. Redistributions of source code must retain the above copyright
484 lomac_copy(struct mac_lomac *source, struct mac_lomac *dest) argument
487 if (source->ml_flags & MAC_LOMAC_FLAG_SINGLE)
488 lomac_copy_single(source, dest);
489 if (source->ml_flags & MAC_LOMAC_FLAG_AUX)
490 lomac_copy_auxsingle(source, dest);
491 if (source->ml_flags & MAC_LOMAC_FLAG_RANGE)
492 lomac_copy_range(source, dest);
896 struct mac_lomac *source, *des local
908 struct mac_lomac *source, *dest; local
1022 struct mac_lomac *source, *dest; local
1071 struct mac_lomac *source, *dest; local
1083 struct mac_lomac *source, *dest; local
1096 struct mac_lomac *source, *dest; local
1238 struct mac_lomac *source, *dest; local
1250 struct mac_lomac *source, *dest; local
1295 struct mac_lomac *source, *dest; local
1307 struct mac_lomac *source, *dest; local
1319 struct mac_lomac *source, *dest; local
1333 struct mac_lomac *source, *dest; local
1357 struct mac_lomac *source, *dest; local
1378 struct mac_lomac *source, *dest; local
1402 struct mac_lomac *source, *dest; local
1444 struct mac_lomac *source, *dest; local
1477 struct mac_lomac *source, *dest; local
1500 struct mac_lomac *source, *dest; local
1512 struct mac_lomac *source, *dest; local
1646 struct mac_lomac *source, *dest; local
1658 struct mac_lomac *source, *dest; local
2032 struct mac_lomac *source, *dest; local
2044 struct mac_lomac *source, *dest; local
2058 struct mac_lomac source, *dest; local
2075 struct mac_lomac *source, *dest; local
2089 struct mac_lomac *source, *dest; local
2104 struct mac_lomac source, *dest; local
2120 struct mac_lomac *source, *dest; local
2131 struct mac_lomac *source, *dest; local
2296 struct mac_lomac ml_temp, *source, *dest; local
2344 struct mac_lomac *source, *dest; local
2803 struct mac_lomac *source, *dest, *dir, temp; local
2833 struct mac_lomac *source, *dest, *obj, *robj; local
2887 struct mac_lomac *source, *dest; local
2899 struct mac_lomac *source, temp; local
[all...]
/freebsd-10.0-release/sys/dev/random/
H A Dyarrow.c5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
70 struct source { struct in struct:random_state::pool
72 } source[ENTROPYSOURCE]; member in struct:random_state::pool
116 struct source *source; local
129 printf(" %2d %2d %02X\n", event->size, event->bits, event->source);
135 source = &random_state.pool[pl].source[event->source];
[all...]
/freebsd-10.0-release/sys/mips/rmi/
H A Dintr_machdep.c6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
91 xlr_post_filter(void *source) argument
93 struct xlr_intrsrc *src = source;
101 xlr_pre_ithread(void *source) argument
103 struct xlr_intrsrc *src = source;
110 xlr_post_ithread(void *source) argument
112 struct xlr_intrsrc *src = source;
/freebsd-10.0-release/contrib/gcc/
H A Dc-ppoutput.c36 const cpp_token *source; /* Source token for spacing. */ member in struct:__anon919
140 print.source = NULL;
148 if (print.source == NULL
149 || (!(print.source->flags & PREV_WHITE)
150 && token->val.source == NULL))
151 print.source = token->val.source;
161 if (print.source == NULL)
162 print.source = token;
163 if (print.source
[all...]

Completed in 294 milliseconds

1234567891011>>