Searched refs:source (Results 1 - 25 of 442) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/boot/arm/at91/libat91/
H A Dsd-card.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
33 int MCI_write (unsigned dest, char* source, unsigned length);
34 int MCI_read (char* dest, unsigned source, unsigned length);
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dsci_util.c29 * Redistribution and use in source and binary forms, with or without
33 * * Redistributions of source code must retain the above copyright
60 U32 *source,
66 *destination = SCIC_SWAP_DWORD(*source);
68 source++;
58 scic_word_copy_with_swap( U32 *destination, U32 *source, U32 word_count ) argument
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DConvertUTF.c14 * This source code is provided as is by Unicode, Inc. No claims are
39 source sequences, enhanced error detection, added casts
121 const UTF32* source = *sourceStart; local
123 while (source < sourceEnd) {
128 ch = *source++;
133 --source; /* return to the illegal value itself */
151 --source; /* Back up source pointer! */
159 *sourceStart = source;
170 const UTF16* source local
224 const UTF16* source = *sourceStart; local
294 const UTF32* source = *sourceStart; local
354 isLegalUTF8(const UTF8 *source, int length) argument
385 isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd) argument
409 isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd) argument
425 const UTF8* source = *sourceStart; local
498 const UTF8* source = *sourceStart; local
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dmacroexp.h42 char *macro_expand (const char *source,
54 char *macro_expand_once (const char *source,
H A Dmacrotab.h28 /* How do we represent a source location? I mean, how should we
36 same source file can be #included into several different
78 /* A source file that participated in a compilation unit --- either a
84 unit, with the main source file as its root.
86 Beware --- not every source file mentioned in a compilation unit's
88 2002, GCC does record the effect of #line directives in the source
99 Suppose you take your main source file, and after each line
104 per-inclusion lines in the source files. (Obviously, #include
112 logical line numbers onto actual source filenames and line numbers,
116 object and you get nice, unambiguous source cod
[all...]
H A Dmacrotab.c47 /* The main source file for this compilation unit --- the one whose
153 /* The source file and line number where the definition's scope
158 /* The first source file and line after the definition's scope.
167 /* Return the #inclusion depth of the source file FILE. This is the
169 source file, the #inclusion depth is zero; for a file it #includes
183 /* Compare two source locations (from the same compilation unit).
187 LINE1 and LINE2 are line numbers in the source files FILE1 and
193 When the two locations are in different source files --- perhaps
194 one is in a header, while another is in the main source file --- we
205 source fil
421 macro_include(struct macro_source_file *source, int line, const char *included) argument
475 macro_lookup_inclusion(struct macro_source_file *source, const char *name) argument
665 check_for_redefinition(struct macro_source_file *source, int line, const char *name, enum macro_kind kind, int argc, const char **argv, const char *replacement) argument
720 macro_define_object(struct macro_source_file *source, int line, const char *name, const char *replacement) argument
752 macro_define_function(struct macro_source_file *source, int line, const char *name, int argc, const char **argv, const char *replacement) argument
779 macro_undef(struct macro_source_file *source, int line, const char *name) argument
821 macro_lookup_definition(struct macro_source_file *source, int line, const char *name) argument
834 macro_definition_location(struct macro_source_file *source, int line, const char *name, int *definition_line) argument
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dtemp_serializer.c40 /* An element in the structure stack. It contains a pointer to the source
48 /* the source structure passed in to *_init or *_push */
61 * the serialized result and the stack of source structure information.
74 source_stack_t *source; member in struct:svn_temp_serializer__context_t
120 /* If a source struct has been given, make it the root struct. */
123 context->source = apr_palloc(pool, sizeof(*context->source));
124 context->source->source_struct = source_struct;
125 context->source->target_offset = 0;
126 context->source
230 const void *source = *source_struct; local
[all...]
/freebsd-10.0-release/usr.bin/dc/
H A Dbcode.h65 struct source;
68 int (*readchar)(struct source *);
69 void (*unreadchar)(struct source *);
70 char *(*readline)(struct source *);
71 void (*free)(struct source *);
74 struct source { struct
87 void reset_bmachine(struct source *);
H A Dextern.h25 void src_setstream(struct source *, FILE *);
26 void src_setstring(struct source *, char *);
27 struct number *readnumber(struct source *, u_int);
29 char *read_string(struct source *);
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libzfs_core/common/
H A Dlibzfs_core_compat.c33 lzc_compat_pre(zfs_cmd_t *zc, zfs_ioc_t *ioc, nvlist_t **source) argument
51 type32 = fnvlist_lookup_int32(*source, "type");
53 nvlist_lookup_nvlist(*source, "props", &nvl);
54 *source = nvl;
57 buf = fnvlist_lookup_string(*source, "origin");
59 nvlist_lookup_nvlist(*source, "props", &nvl);
61 *source = nvl;
64 nvl = fnvlist_lookup_nvlist(*source, "snaps");
78 nvlist_lookup_nvlist(*source, "props", &nvl);
79 *source
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DConvertUTF.h14 * This source code is provided as is by Unicode, Inc. No claims are
37 here, but is handled in a separate source file.
48 and if not, whether the problem was in the source or target buffers.
56 sourceStart - pointer to a pointer to the source buffer.
79 sequence is malformed. When "sourceIllegal" is returned, the source
117 sourceExhausted, /* partial character in source, but hit end */
119 sourceIllegal /* source sequence is illegal/malformed */
156 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
158 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
197 * Convert the first UTF8 sequence in the given source buffe
211 convertUTF8Sequence(const UTF8 **source, const UTF8 *sourceEnd, UTF32 *target, ConversionFlags flags) argument
[all...]
/freebsd-10.0-release/lib/clang/
H A Dlldb.lib.mk5 CFLAGS+=-I${LLDB_SRCS}/include -I${LLDB_SRCS}/source
/freebsd-10.0-release/sbin/mount_nullfs/
H A Dmount_nullfs.c8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
68 char source[MAXPATHLEN]; local
99 /* resolve target and source with realpath(3) */
102 if (checkpath(argv[1], source) != 0)
103 err(EX_USAGE, "%s", source);
105 if (subdir(target, source) || subdir(source, target))
110 build_iovec(&iov, &iovlen, "fspath", source, (size_t)-1);
115 err(1, "%s: %s", source, errms
[all...]
/freebsd-10.0-release/sys/contrib/ia64/libuwx/src/
H A Duwx_bstream.h28 uint64_t source; member in struct:uwx_bstream
42 uint64_t source,
/freebsd-10.0-release/lib/libz/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 const Bytef *source;
33 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
/freebsd-10.0-release/sys/dev/aic7xxx/aicasm/
H A Daicasm_insformat.h8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
48 source : 9, member in struct:ins_format1
58 source : 9,
66 source : 9, member in struct:ins_format2
76 source : 9,
84 source : 9, member in struct:ins_format3
92 source : 9,
/freebsd-10.0-release/contrib/subversion/subversion/svnserve/
H A Dlog-escape.c75 apr_size_t escape_errorlog_item(char *dest, const char *source, argument
81 if (!source || !buflen) { /* be safe */
86 s = (const unsigned char *)source;
/freebsd-10.0-release/contrib/libpcap/
H A Dpcap-snoop.c5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
144 * XXX - libnet overwrites the source address with what I
217 (void)strncpy(sr.sr_ifname, p->opt.source, sizeof(sr.sr_ifname));
237 if (strncmp("et", p->opt.source, 2) == 0 || /* Challenge 10 Mbit */
238 strncmp("ec", p->opt.source, 2) == 0 || /* Indigo/Indy 10 Mbit,
240 strncmp("ef", p->opt.source, 2) == 0 || /* O200/2000 10/100 Mbit */
241 strncmp("eg", p->opt.source, 2) == 0 || /* Octane/O2xxx/O3xxx Gigabit */
242 strncmp("gfe", p->opt.source, 3) == 0 || /* GIO 100 Mbit */
243 strncmp("fxp", p->opt.source,
[all...]
/freebsd-10.0-release/bin/ln/
H A Dln.c5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
150 case 1: /* ln source */
152 case 2: /* ln source target */
223 linkit(const char *source, const char *target, int isdir) argument
233 /* If source doesn't exist, quit now. */
234 if ((Pflag ? lstat : stat)(source, &sb)) {
235 warn("%s", source);
241 warn("%s", source);
248 * append the source'
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4remoteudp.ksh58 $getaddr | read source dest
70 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
77 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
/freebsd-10.0-release/contrib/ntp/include/isc/
H A Dstring.h32 isc_string_touint64(char *source, char **endp, int base);
34 * Convert the string pointed to by 'source' to isc_uint64_t.
43 * On error 'endp' points to 'source'.
/freebsd-10.0-release/sys/dev/random/
H A Drandomdev.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
58 enum esource source; member in struct:random_hardware_source
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddsl_prop.h78 void dsl_props_set_sync_impl(struct dsl_dataset *ds, zprop_source_t source,
81 zprop_source_t source, int intsz, int numints, const void *value,
83 int dsl_props_set(const char *dsname, zprop_source_t source, nvlist_t *nvl);
85 zprop_source_t source, uint64_t value);
87 zprop_source_t source, const char *value);
89 zprop_source_t source);
92 zprop_source_t source, uint64_t value, uint64_t *newvalp);
/freebsd-10.0-release/gnu/usr.bin/rcs/lib/
H A Drcstime.c64 str2time_checked(source, default_time, default_zone)
65 char const *source;
69 time_t t = str2time(source, default_time, default_zone);
71 faterror("unknown date/time: %s", source);
80 str2date(source, target)
81 char const *source;
85 str2time_checked(source, now(),
96 date2time(source)
97 char const source[datesize];
100 return str2time_checked(date2str(source,
[all...]

Completed in 227 milliseconds

1234567891011>>