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

1234567891011>>

/freebsd-9.3-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-9.3-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-9.3-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-9.3-release/contrib/ntp/lib/isc/win32/
H A Dentropy.c49 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
50 isc_entropy_t *ent = source->ent;
52 HCRYPTPROV hcryptprov = source->sources.file.handle;
56 if (source->bad)
66 source->bad = ISC_TRUE;
80 * Poll each source, trying to get data from it to stuff into the entropy
89 isc_entropysource_t *source; local
143 * Poll each file source to see if we can read anything useful from
157 source = ent->nextsource;
159 * Remember the first source s
230 destroyfilesource(isc_entropyfilesource_t *source) argument
235 destroyusocketsource(isc_entropyusocketsource_t *source) argument
243 isc_entropysource_t *source; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/
H A Dentropy.c73 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
74 isc_entropy_t *ent = source->ent;
76 int fd = source->sources.file.handle;
80 if (source->bad)
105 source->sources.file.handle = -1;
106 source->bad = ISC_TRUE;
113 get_from_usocketsource(isc_entropysource_t *source, isc_uint32_t desired) { argument
114 isc_entropy_t *ent = source->ent;
116 int fd = source->sources.usocket.handle;
119 size_t sz_to_recv = source
255 isc_entropysource_t *source; local
391 isc_entropysource_t *source; local
444 destroyfilesource(isc_entropyfilesource_t *source) argument
449 destroyusocketsource(isc_entropyusocketsource_t *source) argument
494 isc_entropysource_t *source; local
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/unix/
H A Dentropy.c73 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
74 isc_entropy_t *ent = source->ent;
76 int fd = source->sources.file.handle;
80 if (source->bad)
105 source->sources.file.handle = -1;
106 source->bad = ISC_TRUE;
113 get_from_usocketsource(isc_entropysource_t *source, isc_uint32_t desired) { argument
114 isc_entropy_t *ent = source->ent;
116 int fd = source->sources.usocket.handle;
119 size_t sz_to_recv = source
255 isc_entropysource_t *source; local
391 isc_entropysource_t *source; local
444 destroyfilesource(isc_entropyfilesource_t *source) argument
449 destroyusocketsource(isc_entropyusocketsource_t *source) argument
494 isc_entropysource_t *source; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Drcode.h31 isc_result_t dns_rcode_fromtext(dns_rcode_t *rcodep, isc_textregion_t *source);
33 * Convert the text 'source' refers to into a DNS error value.
38 *\li 'source' is a valid text region.
64 isc_textregion_t *source);
66 * Convert the text 'source' refers to into a TSIG/TKEY error value.
71 *\li 'source' is a valid text region.
97 dns_hashalg_fromtext(unsigned char *hashalg, isc_textregion_t *source);
99 * Convert the text 'source' refers to into a has algorithm value.
104 *\li 'source' is a valid text region.
H A Dttl.h57 dns_counter_fromtext(isc_textregion_t *source, isc_uint32_t *ttl);
67 dns_ttl_fromtext(isc_textregion_t *source, isc_uint32_t *ttl);
H A Dkeyflags.h32 dns_keyflags_fromtext(dns_keyflags_t *flagsp, isc_textregion_t *source);
34 * Convert the text 'source' refers to into a DNSSEC KEY flags value.
44 *\li 'source' is a valid text region.
H A Dtime.h39 dns_time64_fromtext(const char *source, isc_int64_t *target);
41 * Convert a date and time in YYYYMMDDHHMMSS text format at 'source'
47 dns_time32_fromtext(const char *source, isc_uint32_t *target);
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dbase32.c43 str_totext(const char *source, isc_buffer_t *target);
56 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument
66 while (source->length > 0) {
67 buf[0] = base[((source->base[0]>>3)&0x1f)]; /* 5 + */
68 if (source->length == 1) {
69 buf[1] = base[(source->base[0]<<2)&0x1c];
75 buf[1] = base[((source->base[0]<<2)&0x1c)| /* 3 = 8 */
76 ((source->base[1]>>6)&0x03)]; /* 2 + */
77 buf[2] = base[((source->base[1]>>1)&0x1f)]; /* 5 + */
78 if (source
121 isc_base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument
128 isc_base32hex_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument
324 base32_decoderegion(isc_region_t *source, const char base[], isc_buffer_t *target) argument
338 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target) argument
343 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target) argument
348 str_totext(const char *source, isc_buffer_t *target) argument
[all...]
H A Dlex.c195 inputsource *source; local
198 source = isc_mem_get(lex->mctx, sizeof(*source));
199 if (source == NULL)
201 source->result = ISC_R_SUCCESS;
202 source->is_file = is_file;
203 source->need_close = need_close;
204 source->at_eof = ISC_FALSE;
205 source->input = input;
206 source
279 inputsource *source; local
318 pushback(inputsource *source, int c) argument
330 pushandgrow(isc_lex_t *lex, inputsource *source, int c) argument
354 inputsource *source; local
863 inputsource *source; local
886 inputsource *source; local
907 inputsource *source; local
920 inputsource *source; local
934 inputsource *source; local
952 inputsource *source; local
[all...]
H A Dentropy.c23 * compiled via inclusion from the relevant OS source file, ie,
85 * pseudorandom data and they cannot provide a stronger random source,
144 isc_uint32_t total; /*%< entropy from this source */
158 #define ENTROPY_SOURCETYPE_SAMPLE 1 /*%< Type is a sample source */
159 #define ENTROPY_SOURCETYPE_FILE 2 /*%< Type is a file source */
160 #define ENTROPY_SOURCETYPE_CALLBACK 3 /*%< Type is a callback source */
161 #define ENTROPY_SOURCETYPE_USOCKET 4 /*%< Type is a Unix socket source */
186 destroyfilesource(isc_entropyfilesource_t *source);
189 destroyusocketsource(isc_entropyusocketsource_t *source);
478 get_from_callback(isc_entropysource_t *source, unsigne argument
721 isc_entropysource_t *source; local
763 isc_entropysource_t *source; local
786 isc_entropysource_t *source; local
831 isc_entropysource_t *source; local
865 isc_entropysource_t *source; local
925 isc_entropysource_t *source; local
953 isc_entropysource_t *source; local
1023 isc_entropy_addsample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument
1050 isc_entropy_addcallbacksample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument
1155 kbdstart(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument
1181 kbdstop(isc_entropysource_t *source, void *arg) argument
1192 kbdget(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument
1226 isc_entropy_usebestsource(isc_entropy_t *ectx, isc_entropysource_t **source, const char *randomfile, int use_keyboard) argument
[all...]
H A Dbase64.c43 str_totext(const char *source, isc_buffer_t *target);
53 isc_base64_totext(isc_region_t *source, int wordlength, argument
63 while (source->length > 2) {
64 buf[0] = base64[(source->base[0]>>2)&0x3f];
65 buf[1] = base64[((source->base[0]<<4)&0x30)|
66 ((source->base[1]>>4)&0x0f)];
67 buf[2] = base64[((source->base[1]<<2)&0x3c)|
68 ((source->base[2]>>6)&0x03)];
69 buf[3] = base64[source->base[2]&0x3f];
71 isc_region_consume(source,
227 str_totext(const char *source, isc_buffer_t *target) argument
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dbase32.c43 str_totext(const char *source, isc_buffer_t *target);
56 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument
66 while (source->length > 0) {
67 buf[0] = base[((source->base[0]>>3)&0x1f)]; /* 5 + */
68 if (source->length == 1) {
69 buf[1] = base[(source->base[0]<<2)&0x1c];
75 buf[1] = base[((source->base[0]<<2)&0x1c)| /* 3 = 8 */
76 ((source->base[1]>>6)&0x03)]; /* 2 + */
77 buf[2] = base[((source->base[1]>>1)&0x1f)]; /* 5 + */
78 if (source
121 isc_base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument
128 isc_base32hex_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument
324 base32_decoderegion(isc_region_t *source, const char base[], isc_buffer_t *target) argument
338 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target) argument
343 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target) argument
348 str_totext(const char *source, isc_buffer_t *target) argument
[all...]
H A Dlex.c195 inputsource *source; local
198 source = isc_mem_get(lex->mctx, sizeof(*source));
199 if (source == NULL)
201 source->result = ISC_R_SUCCESS;
202 source->is_file = is_file;
203 source->need_close = need_close;
204 source->at_eof = ISC_FALSE;
205 source->input = input;
206 source
279 inputsource *source; local
318 pushback(inputsource *source, int c) argument
330 pushandgrow(isc_lex_t *lex, inputsource *source, int c) argument
354 inputsource *source; local
860 inputsource *source; local
883 inputsource *source; local
904 inputsource *source; local
917 inputsource *source; local
931 inputsource *source; local
949 inputsource *source; local
[all...]
H A Dentropy.c23 * compiled via inclusion from the relevant OS source file, ie,
85 * pseudorandom data and they cannot provide a stronger random source,
144 isc_uint32_t total; /*%< entropy from this source */
158 #define ENTROPY_SOURCETYPE_SAMPLE 1 /*%< Type is a sample source */
159 #define ENTROPY_SOURCETYPE_FILE 2 /*%< Type is a file source */
160 #define ENTROPY_SOURCETYPE_CALLBACK 3 /*%< Type is a callback source */
161 #define ENTROPY_SOURCETYPE_USOCKET 4 /*%< Type is a Unix socket source */
186 destroyfilesource(isc_entropyfilesource_t *source);
189 destroyusocketsource(isc_entropyusocketsource_t *source);
478 get_from_callback(isc_entropysource_t *source, unsigne argument
721 isc_entropysource_t *source; local
763 isc_entropysource_t *source; local
786 isc_entropysource_t *source; local
831 isc_entropysource_t *source; local
865 isc_entropysource_t *source; local
925 isc_entropysource_t *source; local
953 isc_entropysource_t *source; local
1023 isc_entropy_addsample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument
1050 isc_entropy_addcallbacksample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument
1155 kbdstart(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument
1181 kbdstop(isc_entropysource_t *source, void *arg) argument
1192 kbdget(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument
1226 isc_entropy_usebestsource(isc_entropy_t *ectx, isc_entropysource_t **source, const char *randomfile, int use_keyboard) argument
[all...]
/freebsd-9.3-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...]
/freebsd-9.3-release/sys/dev/random/
H A Dyarrow.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
50 struct source { struct in struct:random_state::pool
54 } source[ENTROPYSOURCE]; member in struct:random_state::pool
/freebsd-9.3-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 *);
/freebsd-9.3-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-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dbase32.h42 isc_base32_totext(isc_region_t *source, int wordlength,
45 isc_base32hex_totext(isc_region_t *source, int wordlength,
57 *\li 'source' is a region containing binary data
64 * in source. The 'used' pointer in target will be advanced as
110 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target);
112 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target);
117 *\li 'source' is a valid region.
123 *\li #ISC_R_BADBASE32 -- 'source' is not a valid base32 encoding.
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dbase32.h42 isc_base32_totext(isc_region_t *source, int wordlength,
45 isc_base32hex_totext(isc_region_t *source, int wordlength,
57 *\li 'source' is a region containing binary data
64 * in source. The 'used' pointer in target will be advanced as
110 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target);
112 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target);
117 *\li 'source' is a valid region.
123 *\li #ISC_R_BADBASE32 -- 'source' is not a valid base32 encoding.
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_bstream.h28 uint64_t source; member in struct:uwx_bstream
42 uint64_t source,

Completed in 147 milliseconds

1234567891011>>