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

1234567891011>>

/haiku-fatelf/headers/libs/print/libprint/
H A DPackBits.h9 int pack_bits_size(const unsigned char* source, int size);
10 int pack_bits(unsigned char* destination, const unsigned char* source,
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmemmove.c14 char const *source = source0; local
15 if (source < dest)
17 for (source += length, dest += length; length; --length)
18 *--dest = *--source;
19 else if (source != dest)
23 *dest++ = *source++;
H A Dsame.h23 bool same_name (const char *source, const char *dest);
H A Drandint.c53 /* A source of random data for generating random integers. */
56 /* The source of random bytes. */
57 struct randread_source *source; member in struct:randint_source
71 randint_new (struct randread_source *source) argument
74 s->source = source;
86 struct randread_source *source = randread_new (name, bytes_bound); local
87 return (source ? randint_new (source) : NULL);
90 /* Return the random data source o
123 struct randread_source *source = s->source; local
[all...]
/haiku-fatelf/src/system/libroot/posix/wchar/
H A Dwcslcpy.c11 __wcslcpy(wchar_t* dest, const wchar_t* source, size_t maxLength) argument
16 return __wcslen(source);
18 for (i = 0; i < maxLength - 1 && *source != L'\0'; ++i)
19 *dest++ = *source++;
23 return i + __wcslen(source);
H A Dwcslcat.c10 /** Concatenates the source string to the destination, writes
19 __wcslcat(wchar_t* dest, const wchar_t* source, size_t maxLength) argument
26 return destLength + __wcslen(source);
32 for (i = 0; i < maxLength - 1 && *source != L'\0'; ++i)
33 *dest++ = *source++;
37 return destLength + i + __wcslen(source);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dsame.h24 bool same_name (const char *source, const char *dest);
/haiku-fatelf/src/libs/icon/transformer/
H A DTransformerFactory.cpp30 TransformerFactory::TransformerFor(uint32 type, VertexSource& source) argument
34 return new AffineTransformer(source);
36 return new PerspectiveTransformer(source);
38 return new ContourTransformer(source);
40 return new StrokeTransformer(source);
49 VertexSource& source)
53 return new AffineTransformer(source, message);
55 return new PerspectiveTransformer(source, message);
57 return new ContourTransformer(source, message);
59 return new StrokeTransformer(source, messag
48 TransformerFor(BMessage* message, VertexSource& source) argument
[all...]
H A DTransformer.cpp29 Transformer::Transformer(VertexSource& source, const char* name) argument
35 fSource(source)
40 Transformer::Transformer(VertexSource& source, argument
47 fSource(source)
74 Transformer::SetSource(VertexSource& source) argument
76 fSource = source;
H A DPerspectiveTransformer.cpp24 PerspectiveTransformer::PerspectiveTransformer(VertexSource& source) argument
25 : Transformer(source, "Perspective"),
26 Perspective(source, *this)
31 PerspectiveTransformer::PerspectiveTransformer(VertexSource& source, argument
33 : Transformer(source, archive),
34 Perspective(source, *this)
46 PerspectiveTransformer::Clone(VertexSource& source) const
49 = new (nothrow) PerspectiveTransformer(source);
73 PerspectiveTransformer::SetSource(VertexSource& source) argument
75 Transformer::SetSource(source);
[all...]
/haiku-fatelf/src/system/libroot/posix/string/
H A Dstrlcat.c10 /** Concatenates the source string to the destination, writes
19 strlcat(char *dest, const char *source, size_t maxLength) argument
25 return destLength + strlen(source);
30 for (i = 0; i < maxLength - 1 && source[i]; i++) {
31 dest[i] = source[i];
36 return destLength + i + strlen(source + i);
H A Dmemccpy.c16 const uint8 *source = (const uint8 *)_source; local
20 if ((*dest++ = *source++) == (uint8)stopByte)
/haiku-fatelf/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioAdapter.cpp27 AudioAdapter::AudioAdapter(AudioReader* source, const media_format& format) argument
29 fSource(source),
38 if (source && source->Format().type == B_MEDIA_RAW_AUDIO) {
42 != source->Format().u.raw_audio.format
43 || source->Format().u.raw_audio.byte_order != hostByteOrder)) {
45 fFormatConverter = new (nothrow) AudioFormatConverter(source,
47 source = fFormatConverter;
52 != source->Format().u.raw_audio.frame_rate) {
54 source
[all...]
/haiku-fatelf/src/tools/fs_shell/
H A Dstring.cpp14 fssh_memchr(const void *source, int value, fssh_size_t length) argument
16 return memchr((void*)source, value, length);
28 fssh_memcpy(void *dest, const void *source, fssh_size_t length) argument
30 return memcpy(dest, source, length);
36 fssh_memccpy(void *dest, const void *source, int stopByte, fssh_size_t length)
38 return memccpy(dest, source, stopByte, length);
44 fssh_memmove(void *dest, const void *source, fssh_size_t length) argument
46 return memmove(dest, source, length);
58 fssh_strcpy(char *dest, const char *source) argument
60 return strcpy(dest, source);
65 fssh_strncpy(char *dest, const char *source, fssh_size_t length) argument
72 fssh_strcat(char *dest, const char *source) argument
79 fssh_strncat(char *dest, const char *source, fssh_size_t length) argument
233 fssh_stpcpy(char *dest, const char *source) argument
249 fssh_strlcat(char *dest, const char *source, fssh_size_t length) argument
256 fssh_strlcpy(char *dest, const char *source, fssh_size_t length) argument
[all...]
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_string.h18 extern void *fssh_memchr(const void *source, int value, fssh_size_t length);
21 extern void *fssh_memcpy(void *dest, const void *source,
23 extern void *fssh_memccpy(void *dest, const void *source, int stopByte,
25 extern void *fssh_memmove(void *dest, const void *source,
30 extern char *fssh_strcpy(char *dest, const char *source);
31 extern char *fssh_strncpy(char *dest, const char *source,
33 extern char *fssh_strcat(char *dest, const char *source);
34 extern char *fssh_strncat(char *dest, const char *source,
72 extern char *fssh_stpcpy(char *dest, const char *source);
73 extern const char *fssh_strtcopy(char *dest, const char *source);
[all...]
/haiku-fatelf/src/add-ons/translators/jpeg/
H A Dexif_parser.h21 status_t convert_exif_to_message(BPositionIO& source, BMessage& target);
22 status_t convert_exif_to_message_etc(BPositionIO& source, BMessage& target,
/haiku-fatelf/src/bin/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...]
/haiku-fatelf/src/bin/rc/
H A DR5Compatibility.h17 extern size_t strlcat(char *dest, const char *source, size_t length);
18 extern size_t strlcpy(char *dest, const char *source, size_t length);
/haiku-fatelf/headers/posix/
H A Dstring.h18 extern void *memchr(const void *source, int value, size_t length);
20 extern void *memcpy(void *dest, const void *source, size_t length);
21 extern void *memccpy(void *dest, const void *source, int stopByte, size_t length);
22 extern void *memmove(void *dest, const void *source, size_t length);
26 extern void *memrchr(const void *source, int value, size_t length);
30 extern char *strcpy(char *dest, const char *source);
31 extern char *strncpy(char *dest, const char *source, size_t length);
32 extern char *strcat(char *dest, const char *source);
33 extern char *strncat(char *dest, const char *source, size_t length);
67 extern char *stpcpy(char *dest, const char *source);
[all...]
/haiku-fatelf/src/bin/network/traceroute/
H A Dfindsaddr-haiku.c41 if (request->source != NULL && request->source->sa_family == AF_INET)
42 memcpy(from, request->source, sizeof(struct sockaddr_in));
46 if (request->source == NULL || request->source->sa_family != AF_INET)
/haiku-fatelf/src/system/kernel/slab/
H A DObjectCache.cpp199 ObjectCache::ReturnObjectToSlab(slab* source, void* object, uint32 flags) argument
201 if (source == NULL) {
206 ParanoiaChecker _(source);
209 uint8* objectsStart = (uint8*)source->pages + source->offset;
211 || object >= objectsStart + source->size * object_size
221 object, link, source, source->size - source->count,
224 _push(source
249 ObjectAtIndex(slab* source, int32 index) const argument
262 slab* source = ObjectSlab(object); local
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dtriostr.c163 Append @p source at the end of @p target.
166 @param source Source string.
170 contain the @p target string and @p source string.
177 TRIO_ARGS2((target, source),
179 TRIO_CONST char *source)
182 assert(source);
184 return (strcat(target, source) != NULL);
190 Append at most @p max characters from @p source to @p target.
194 @param source Source string.
198 contain the @p target string and the @p source strin
176 trio_append(target, source), char *target, TRIO_CONST char *source argument
205 trio_append_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
264 trio_copy(target, source), char *target, TRIO_CONST char *source argument
293 trio_copy_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
313 TrioDuplicateMax(source, size), TRIO_CONST char *source, size_t size argument
342 trio_duplicate(source), TRIO_CONST char *source argument
361 trio_duplicate_max(source, max), TRIO_CONST char *source, size_t max argument
825 trio_span_function(target, source, Function), char *target, TRIO_CONST char *source, int (*Function) TRIO_PROTO((int)) argument
957 trio_to_long_double(source, endp), TRIO_CONST char *source, char **endp argument
1092 trio_to_double(source, endp), TRIO_CONST char *source, char **endp argument
1115 trio_to_float(source, endp), TRIO_CONST char *source, char **endp argument
1158 trio_to_lower(source), int source argument
1207 trio_to_upper(source), int source argument
[all...]
/haiku-fatelf/src/kits/shared/
H A DNaturalCompare.cpp38 FetchNaturalChunk(natural_chunk& chunk, const char* source) argument
43 while (!isdigit(source[pos]) && !isspace(source[pos])
44 && source[pos] != '\0') {
47 strlcpy(chunk.buffer, source, pos + 1);
54 while (source[0] == '0' || isspace(source[0])) {
55 source++;
61 while (isdigit(source[pos])) {
65 strlcpy(chunk.buffer, source, po
[all...]
/haiku-fatelf/headers/libs/agg/
H A Dagg_conv_transform.h32 conv_transform(VertexSource& source, const Transformer& tr) : argument
33 m_source(&source), m_trans(&tr) {}
34 void attach(VertexSource& source) { m_source = &source; } argument

Completed in 144 milliseconds

1234567891011>>