Searched refs:dest (Results 51 - 75 of 202) sorted by relevance

123456789

/haiku/src/apps/soundrecorder/
H A DFileUtils.h17 status_t CopyFile(BFile& dest, BFile& src);
/haiku/src/kits/media/experimental/
H A DMediaClientNode.h61 virtual status_t AcceptFormat(const media_destination& dest,
71 virtual status_t GetLatencyFor(const media_destination& dest,
76 const media_destination& dest,
81 const media_destination& dest);
95 const media_destination& dest,
105 const media_destination& dest,
111 const media_destination& dest,
115 const media_destination& dest);
120 const media_destination& dest,
123 void ProducerDataStatus(const media_destination& dest,
[all...]
H A DMediaClientNode.cpp146 BMediaClientNode::AcceptFormat(const media_destination& dest, argument
151 BMediaInput* conn = fOwner->_FindInput(dest);
202 BMediaClientNode::GetLatencyFor(const media_destination& dest, argument
207 BMediaInput* conn = fOwner->_FindInput(dest);
219 const media_destination& dest, const media_format& format,
224 BMediaInput* conn = fOwner->_FindInput(dest);
248 const media_destination& dest)
252 BMediaInput* conn = fOwner->_FindInput(dest);
271 const media_destination& dest,
319 const media_destination& dest, media_forma
218 Connected(const media_source& source, const media_destination& dest, const media_format& format, media_input* outInput) argument
247 Disconnected(const media_source& source, const media_destination& dest) argument
270 FormatChanged(const media_source& source, const media_destination& dest, int32 tag, const media_format& format) argument
318 FormatChangeRequested(const media_source& source, const media_destination& dest, media_format* format, int32* _deprecated_) argument
397 PrepareToConnect(const media_source& source, const media_destination& dest, media_format* format, media_source* out_source, char *name) argument
429 Connect(status_t status, const media_source& source, const media_destination& dest, const media_format& format, char* name) argument
468 Disconnect(const media_source& source, const media_destination& dest) argument
515 LatencyChanged(const media_source& source, const media_destination& dest, bigtime_t latency, uint32 flags) argument
523 ProducerDataStatus(const media_destination& dest, int32 status, bigtime_t when) argument
612 media_destination dest; local
[all...]
/haiku/src/libs/mapm/
H A Dmapmutl2.c142 void m_apm_copy(M_APM dest, M_APM src) argument
148 if (j > dest->m_apm_malloclength)
150 if ((vp = MAPM_REALLOC(dest->m_apm_data, (j + 32))) == NULL)
157 dest->m_apm_malloclength = j + 28;
158 dest->m_apm_data = (UCHAR *)vp;
161 dest->m_apm_datalength = src->m_apm_datalength;
162 dest->m_apm_exponent = src->m_apm_exponent;
163 dest->m_apm_sign = src->m_apm_sign;
165 memcpy(dest->m_apm_data, src->m_apm_data, j);
/haiku/headers/build/gcc-2.95.3/
H A Dva-pa.h50 #define __va_copy(dest, src) (dest) = (src)
H A Dva-alpha.h126 #define __va_copy(dest, src) (dest) = (src)
H A Dva-clipper.h58 #define __va_copy(dest, src) (dest) = (src)
H A Dva-i960.h76 #define __va_copy(dest, src) (dest) = (src)
H A Dva-m88k.h85 #define __va_copy(dest, src) (dest) = (src)
H A Dva-spur.h64 #define __va_copy(dest, src) (dest) = (src)
/haiku/src/tests/add-ons/kernel/file_systems/cdda/
H A Dcdda_text.cpp21 user_memcpy(void *dest, const void *source, size_t length) argument
23 memcpy(dest, source, length);
/haiku/headers/os/support/
H A DUTF8.h52 int32* sourceLength, char* dest, int32* destLength, int32* state,
56 int32* sourceLength, char* dest, int32* destLength, int32* state,
/haiku/src/system/libnetwork/musl/network/
H A Dinet_aton.c8 int __inet_aton(const char *s0, struct in_addr *dest) argument
11 unsigned char *d = (void *)dest;
/haiku/headers/posix/
H A Dstrings.h29 #define bcopy(source, dest, length) memmove((dest), (source), (length))
/haiku/src/apps/showimage/
H A DFilter.cpp299 BRect dest(0, 0, fRect.IntegerWidth(), fRect.IntegerHeight());
300 BBitmap* destImage = new BBitmap(dest,
346 BBitmap* dest; local
361 dest = fScaledImage;
365 destW = dest->Bounds().IntegerWidth();
366 destH = dest->Bounds().IntegerHeight();
369 destBits = (uchar*)dest->Bits();
371 destBPR = dest->BytesPerRow();
482 BBitmap* dest; local
497 dest
643 BBitmap* dest; local
771 BBitmap* dest; local
1050 CopyPixel(uchar* dest, int32 destX, int32 destY, const uchar* src, int32 x, int32 y) argument
1075 InvertPixel(int32 x, int32 y, uchar* dest, const uchar* src) argument
1108 uchar* dest = (uchar*)GetDestImage()->Bits(); local
[all...]
/haiku/src/kits/tracker/
H A DBitmaps.cpp145 BBitmap* dest) const
153 && BIconUtils::GetVectorIcon((uint8*)data, length, dest) == B_OK) {
166 if (dest->ColorSpace() == B_RGBA32) {
168 uint8* destBits = (uint8*)dest->Bits();
170 while (i < dest->BitsLength()) {
179 dest) == B_OK) {
184 uint8* destBits = (uint8*)dest->Bits();
185 for (int32 i = 0; i < dest->BitsLength(); i++)
189 // import bits into the middle of dest without scaling
191 float x = roundf((dest
[all...]
/haiku/src/add-ons/media/media-add-ons/firewire_dv/
H A DFireWireCard.cpp158 FireWireCard::Extract(void* dest, void** src, ssize_t* sizeUsed) argument
161 return MpegtsExtract(dest, src, sizeUsed);
163 return DvExtract(dest, src, sizeUsed);
274 FireWireCard::DvExtract(void* dest, void** src, ssize_t* sizeUsed) argument
321 memcpy(dest, fPad, npad);
322 dest = (char*)dest + npad;
336 memcpy(dest, dv, DV_DSIZE);
337 dest = (char*)dest
384 MpegtsExtract(void* dest, void** src, ssize_t* sizeUsed) argument
[all...]
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.c1015 re_node_set_init_copy (re_node_set *dest, const re_node_set *src)
1017 dest->nelem = src->nelem;
1020 dest->alloc = dest->nelem;
1021 dest->elems = re_malloc (int, dest->alloc);
1022 if (BE (dest->elems == NULL, 0))
1024 dest->alloc = dest->nelem = 0;
1027 memcpy (dest
1013 re_node_set_init_copy(re_node_set *dest, const re_node_set *src) argument
1038 re_node_set_add_intersect(re_node_set *dest, const re_node_set *src1, const re_node_set *src2) argument
1129 re_node_set_init_union(re_node_set *dest, const re_node_set *src1, const re_node_set *src2) argument
1182 re_node_set_merge(re_node_set *dest, const re_node_set *src) argument
[all...]
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMediaFormatIO.cpp339 color_space& dest) {
342 dest = B_RGB32;
344 dest = B_RGBA32;
346 dest = B_RGB24;
348 dest = B_RGB16;
350 dest = B_RGB15;
352 dest = B_RGBA15;
354 dest = B_CMAP8;
356 dest = B_GRAY8;
358 dest
337 import_color_space( const char* value, color_space& dest) argument
[all...]
/haiku/headers/private/fs_shell/
H A Dfssh_kernel_export.h22 extern fssh_status_t fssh_user_memcpy(void *dest, const void *source,
/haiku/src/kits/game/
H A DGSUtility.h53 void media_to_gs_format(gs_audio_format* dest,
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8192c/pci/
H A Dr92ce_tx.c82 r92ce_copy_tx_desc(void *dest, const void *src) argument
84 struct r92ce_tx_desc *txd = dest;
89 memcpy(dest, src, len);
91 memset(dest, 0, len);
/haiku/src/bin/filteredquery/
H A DFilteredQuery.cpp12 CopyQuery(const BQuery &query, BQuery *dest) argument
14 ASSERT(dest);
23 dest->SetPredicate(buffer.String());
27 dest->SetVolume(&volume);
/haiku/src/tools/fs_shell/
H A Dkernel_export.cpp32 fssh_user_memcpy(void *dest, const void *source, fssh_size_t length) argument
34 memcpy(dest, source, length);
/haiku/src/preferences/backgrounds/
H A DImageFilePanel.cpp123 BRect dest(fImageView->Bounds());
125 dest.InsetBy(0, (dest.Height() + 1
128 * (dest.Width() + 1))) / 2);
130 dest.InsetBy((dest.Width() + 1
133 * (dest.Height() + 1))) / 2, 0);
135 fImageView->SetViewBitmap(bitmap, bitmap->Bounds(), dest,

Completed in 185 milliseconds

123456789