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

1234567891011>>

/haiku/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/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/src/libs/icon/transformer/
H A DTransformerFactory.cpp28 TransformerFactory::TransformerFor(uint32 type, VertexSource& source, Shape* shape) argument
32 return new AffineTransformer(source);
34 return new PerspectiveTransformer(source, shape);
36 return new ContourTransformer(source);
38 return new StrokeTransformer(source);
46 TransformerFactory::TransformerFor(BMessage* message, VertexSource& source, Shape* shape) argument
50 return new AffineTransformer(source, message);
52 return new PerspectiveTransformer(source, shape, message);
54 return new ContourTransformer(source, message);
56 return new StrokeTransformer(source, messag
[all...]
H A DPathTransformer.h26 PathTransformer(VertexSource& source) argument
27 : fSource(&source) {}
36 virtual void SetSource(VertexSource& source) argument
37 { fSource = &source; }
/haiku/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/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/src/tools/fs_shell/
H A Dstring.cpp15 fssh_memchr(const void *source, int value, fssh_size_t length) argument
17 return memchr((void*)source, value, length);
29 fssh_memcpy(void *dest, const void *source, fssh_size_t length) argument
31 return memcpy(dest, source, length);
37 fssh_memccpy(void *dest, const void *source, int stopByte, fssh_size_t length)
39 return memccpy(dest, source, stopByte, length);
45 fssh_memmove(void *dest, const void *source, fssh_size_t length) argument
47 return memmove(dest, source, length);
59 fssh_strcpy(char *dest, const char *source) argument
61 return strcpy(dest, source);
66 fssh_strncpy(char *dest, const char *source, fssh_size_t length) argument
73 fssh_strcat(char *dest, const char *source) argument
80 fssh_strncat(char *dest, const char *source, fssh_size_t length) argument
234 fssh_stpcpy(char *dest, const char *source) argument
250 fssh_strlcat(char *dest, const char *source, fssh_size_t length) argument
257 fssh_strlcpy(char *dest, const char *source, fssh_size_t length) argument
[all...]
/haiku/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/headers/private/shared/
H A DAttributeUtilities.h18 status_t CopyAttributes(BNode& source, BNode& destination);
/haiku/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/src/add-ons/translators/rtf/
H A Dconvert.h16 BPositionIO* source, BPositionIO* target);
18 BPositionIO& source, BPositionIO& target);
/haiku/headers/private/system/
H A Dconvertutf.h18 ssize_t utf16le_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
21 ssize_t utf16be_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
/haiku/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/headers/posix/
H A Dstring.h19 extern void *memchr(const void *source, int value, size_t length);
21 extern void *memcpy(void *dest, const void *source, size_t length);
22 extern void *memccpy(void *dest, const void *source, int stopByte, size_t length);
23 extern void *memmove(void *dest, const void *source, size_t length);
27 extern void *memrchr(const void *source, int value, size_t length);
31 extern char *strcpy(char *dest, const char *source);
32 extern char *strncpy(char *dest, const char *source, size_t length);
33 extern char *strcat(char *dest, const char *source);
34 extern char *strncat(char *dest, const char *source, size_t length);
64 extern char *stpcpy(char *dest, const char *source);
[all...]
/haiku/src/system/kernel/slab/
H A DObjectCache.cpp200 ObjectCache::ReturnObjectToSlab(slab* source, void* object, uint32 flags) argument
202 if (source == NULL) {
207 ParanoiaChecker _(source);
210 uint8* objectsStart = (uint8*)source->pages + source->offset;
212 || object >= objectsStart + source->size * object_size
222 object, link, source, source->size - source->count,
225 _push(source
250 ObjectAtIndex(slab* source, int32 index) const argument
263 slab* source = ObjectSlab(object); local
[all...]
/haiku/src/add-ons/screen_savers/nebula/
H A DDraw.c25 unsigned char* source; local
32 source = dst;
34 source += half_length; // Right segment
35 source++; // Don't overlap at middle
54 tmp = source[offset] + (center_shade >> 8); // Increment right pixel.
56 source[offset] = 255;
58 source[offset] = tmp;
/haiku/src/build/libshared/
H A DNaturalCompare.cpp39 FetchNaturalChunk(natural_chunk& chunk, const char* source) argument
44 while (!isdigit(source[pos]) && !isspace(source[pos])
45 && source[pos] != '\0') {
48 strlcpy(chunk.buffer, source, pos + 1);
55 while (source[0] == '0' || isspace(source[0])) {
56 source++;
62 while (isdigit(source[pos])) {
66 strlcpy(chunk.buffer, source, po
[all...]
/haiku/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
/haiku/src/add-ons/kernel/network/stack/
H A Dsimple_net_buffer.h15 struct sockaddr_storage source; member in struct:simple_net_buffer::__anon2547
/haiku/src/kits/shared/
H A DAttributeUtilities.cpp23 CopyAttributes(BNode& source, BNode& destination) argument
26 while (source.GetNextAttrName(attrName) == B_OK) {
29 status_t status = source.GetAttrInfo(attrName, &attrInfo);
46 ssize_t bytesRead = source.ReadAttr(attrName, attrInfo.type,
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlighter.h17 virtual status_t ParseText(LineDataSource* source,
/haiku/headers/compatibility/gnu/
H A Dstring.h19 extern void *memmem(const void *source, size_t sourceLength,
/haiku/docs/interface_guidelines/docbook-css/
H A Dopera.css19 -o-link-source: current;

Completed in 221 milliseconds

1234567891011>>