Searched refs:out (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/haiku/src/libs/uuid/
H A Dpack.c41 unsigned char *out = ptr; local
44 out[3] = (unsigned char) tmp;
46 out[2] = (unsigned char) tmp;
48 out[1] = (unsigned char) tmp;
50 out[0] = (unsigned char) tmp;
53 out[5] = (unsigned char) tmp;
55 out[4] = (unsigned char) tmp;
58 out[7] = (unsigned char) tmp;
60 out[6] = (unsigned char) tmp;
63 out[
[all...]
H A Dunparse.c51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument
56 sprintf(out, fmt,
63 void uuid_unparse_lower(const uuid_t uu, char *out) argument
65 uuid_unparse_x(uu, out, fmt_lower);
68 void uuid_unparse_upper(const uuid_t uu, char *out) argument
70 uuid_unparse_x(uu, out, fmt_upper);
73 void uuid_unparse(const uuid_t uu, char *out) argument
75 uuid_unparse_x(uu, out, FMT_DEFAULT);
/haiku/src/tests/kits/media/nodetest/
H A Dmisc.cpp7 out("OK\n");
9 out("failed\n");
15 out("OK\n");
17 out("failed, 0x%08x, %s\n",status,strerror(status));
23 out("OK\n");
25 out("failed, size %" B_PRIdSSIZE ", error %s\n", size, strerror(size));
30 out("press enter to continue\n");
34 void out(const char *format,...) function
H A Dmain.cpp20 out("Basic BBufferProducer, BBufferConsumer, BMediaRoster test\n");
21 out("for Haiku by Marcus Overhagen <Marcus@Overhagen.de>\n\n");
22 out("Creating BApplication now\n");
25 out("Creating MediaRoster\n");
29 out("Creating ProducerNode\n");
33 out("Creating ConsumerNode\n");
37 out("Registering ProducerNode\n");
41 out("Registering ConsumerNode\n");
48 out("Calling producer->Node()\n");
51 out("Callin
[all...]
H A Dmisc.h9 void out(const char *format,...);
H A DProducerNode.cpp26 out("ProducerNode::ProducerNode\n");
33 out("ProducerNode::~ProducerNode\n");
42 out("ProducerNode::NodeRegistered\n");
66 out("ProducerNode::FormatSuggestionRequested\n");
84 out("ProducerNode::FormatProposal\n");
101 out("ProducerNode::FormatChangeRequested\n");
109 out("ProducerNode::GetNextOutput\n");
122 out("ProducerNode::DisposeOutputCookie\n");
136 out("ProducerNode::SetBufferGroup\n");
173 out("ProducerNod
[all...]
H A DConsumerNode.cpp18 out("ConsumerNode::ConsumerNode\n");
24 out("ConsumerNode::~ConsumerNode\n");
32 out("ConsumerNode::NodeRegistered\n");
42 out("ConsumerNode::AcceptFormat\n");
60 out("ConsumerNode::GetNextInput\n");
76 out("ConsumerNode::DisposeInputCookie\n");
84 out("ConsumerNode::BufferReceived, sheduled time = %5.4f\n",
99 out("ConsumerNode::ProducerDataStatus\n");
114 out("ConsumerNode::GetLatencyFor\n");
130 out("ConsumerNod
[all...]
/haiku/src/add-ons/print/drivers/canon_lips/lips3/
H A DCompress3.h9 int compress3(unsigned char* out, unsigned char* in, int bytes);
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_mmx.h8 void gfx_conv_null_mmx(AVFrame *in, AVFrame *out, int width, int height);
11 void gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
12 void gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
13 void gfx_conv_yuv420p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height);
14 void gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
15 void gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
16 void gfx_conv_yuv422p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height);
19 void gfx_conv_yuv422_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
20 void gfx_conv_yuv422_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
21 void gfx_conv_yuv422_rgba32_ssse3(AVFrame *in, AVFrame *out, in
[all...]
H A Dgfx_conv_c.h12 void gfx_conv_null(AVFrame *in, AVFrame *out, int width, int height);
15 void gfx_conv_yuv410p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
17 void gfx_conv_yuv411p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
19 void gfx_conv_yuv420p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
23 void gfx_conv_yuv420p10le_rgb32_c(AVFrame *in, AVFrame *out, int width,
25 void gfx_conv_yuv410p_rgb32_c(AVFrame *in, AVFrame *out, int width,
27 void gfx_conv_yuv411p_rgb32_c(AVFrame *in, AVFrame *out, int width,
29 void gfx_conv_YCbCr420p_RGB32_c(AVFrame *in, AVFrame *out, int width,
31 void gfx_conv_YCbCr422_RGB32_c(AVFrame *in, AVFrame *out, int width,
33 void gfx_conv_GBRP_RGB32_c(AVFrame *in, AVFrame *out, in
[all...]
H A Dgfx_conv_mmx.cpp23 gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
25 // in and out buffers must be aligned to 16 bytes,
27 if ((off_t)out->data[0] % 16 != 0) {
28 gfx_conv_YCbCr420p_RGB32_c(in, out, width, height);
35 uint8 *rgbbase = (uint8 *)out->data[0];
40 int rgbBaseInc = out->linesize[0];
59 gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
61 // in and out buffers must be aligned to 32 bytes,
63 if ((off_t)out->data[0] % 32 != 0) {
64 gfx_conv_YCbCr420p_RGB32_c(in, out, widt
95 gfx_conv_yuv420p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
131 gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
161 gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
191 gfx_conv_yuv422p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
221 gfx_conv_yuv422_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
242 gfx_conv_yuv422_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
263 gfx_conv_yuv422_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
[all...]
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_tracing.h23 void AddDump(TraceOutput& out, const char* name) argument
25 out.Print("ahci port");
26 out.Print(" - %s - ", name);
27 out.Print("controller: %p", fController);
28 out.Print(", index: %d", fIndex);
47 void AddDump(TraceOutput& out) argument
49 AHCIPortTraceEntry::AddDump(out, "prd table");
51 out.Print(", address: %p", fAddress);
52 out.Print(", size: %lu", fSize);
/haiku/src/apps/cortex/Persistence/
H A DExportContext.cpp100 BString out; local
101 out << "\n" << indentString() << '<' << name;
102 writeString(out);
126 BString out; local
130 out << "/>";
132 out << "\n" << indentString() << "</" << entry.name.String() << ">";
134 writeString(out);
156 BString out = ">"; local
157 writeString(out);
176 BString out;\
365 _dumpElementStack( BString& out) argument
[all...]
/haiku/src/kits/support/
H A DBase64.cpp26 encode_base64(char *out, const char *in, off_t length, int headerMode) argument
44 out[k++] = kBase64Alphabet[(concat >> 18) & 63];
45 out[k++] = kBase64Alphabet[(concat >> 12) & 63];
46 out[k++] = kBase64Alphabet[(concat >> 6) & 63];
47 out[k++] = kBase64Alphabet[concat & 63];
52 out[k-v] = '=';
61 out[k++] = '\r';
62 out[k++] = '\n';
73 decode_base64(char *out, const char *in, off_t length) argument
121 out[outInde
134 encode_base64(char *out, char *in, off_t length) argument
139 decode_base64(char *out, const char *in, off_t length, bool ) argument
[all...]
/haiku/src/libs/libtelnet/
H A Dpk.h58 extern void pk_encode(char *in, char *out, DesData *deskey);
59 extern void pk_decode(char *in, char *out, DesData *deskey);
/haiku/src/tools/fs_shell/
H A Dfs_shell_command_unix.cpp22 FILE* out = fdopen(4, "w"); local
23 if (out == NULL) {
38 if (fputs(command, out) == EOF || fputc('\n', out) == EOF
39 || fflush(out) == EOF) {
H A Dexternal_commands_unix.cpp57 FILE* out = get_output(); local
58 if (out == NULL) {
64 if (fprintf(out, "%d\n", result) < 0 || fflush(out) == EOF) {
/haiku/headers/private/libroot/locale/
H A DICUCollateData.h30 status_t Strcoll(const char* a, const char* b, int& out);
31 status_t Strxfrm(char* out, const char* in,
34 int& out);
35 status_t Wcsxfrm(wchar_t* out, const wchar_t* in,
40 U_NAMESPACE_QUALIFIER UnicodeString& out);
/haiku/headers/os/mail/
H A Dmail_encoding.h36 ssize_t encode(mail_encoding encoding, char *out, const char *in,
39 ssize_t decode(mail_encoding encoding, char *out, const char *in, off_t length,
46 ssize_t encode_base64(char *out, const char *in, off_t length, int headerMode);
47 ssize_t decode_base64(char *out, const char *in, off_t length);
49 ssize_t encode_qp(char *out, const char *in, off_t length, int headerMode);
50 ssize_t decode_qp(char *out, const char *in, off_t length, int underscore_is_space);
53 ssize_t uu_decode(char *out, const char *in, off_t length);
/haiku/src/tests/kits/app/bmessage/
H A DMessageInt32ItemTest.cpp27 int32 out = 0; local
28 CPPUNIT_ASSERT(msg.FindInt32("an int32", &out) == B_NAME_NOT_FOUND);
29 CPPUNIT_ASSERT(out == 0);
32 const void* ptr = &out;
43 int32 out = 0; local
47 CPPUNIT_ASSERT(msg.FindInt32("an int32", &out) == B_OK);
48 CPPUNIT_ASSERT(out == in);
62 int32 out = 0; local
67 CPPUNIT_ASSERT(msg.FindInt32("an int32", &out) == B_OK);
68 CPPUNIT_ASSERT(out
81 int32 out = 0; local
97 int32 out = 0; local
124 int32 out = 0; local
150 int32 out = 0; local
169 int32 out = 0; local
[all...]
/haiku/src/bin/debug/profile/
H A DCallgrindProfileResult.cpp191 "%s/callgrind.out.%" B_PRId32 ".%s.%" B_PRId64 "ms",
196 FILE* out = fopen(fileName, "w+"); local
197 if (out == NULL) {
204 fprintf(out, "version: 1\n");
205 fprintf(out, "creator: Haiku profile\n");
206 fprintf(out, "pid: %" B_PRId32 "\n", fEntity->EntityID());
207 fprintf(out, "cmd: %s\n", fEntity->EntityName());
208 fprintf(out, "part: 1\n\n");
210 fprintf(out, "positions: line\n");
211 fprintf(out, "event
289 _PrintFunction(FILE* out, CallgrindImageProfileResult* image, int32 functionIndex, bool called) argument
[all...]
/haiku/src/apps/cortex/addons/common/
H A Daudio_buffer_tools.h51 void convert_sample(from_sample_t in, to_sample_t& out) {
52 out = (to_sample_t)in; // +++++ arbitrary conversion stub
56 inline void convert_sample(float& in, float& out) { argument
57 out = in;
60 inline void convert_sample(uchar& in, float& out) { argument
61 out = (float)(in - 128) / 127.0;
64 inline void convert_sample(short& in, float& out) { argument
65 out = (float)in / 32767.0;
68 inline void convert_sample(int32& in, float& out) { argument
69 out
72 convert_sample(float& in, uchar& out) argument
76 convert_sample(float& in, short& out) argument
80 convert_sample(float& in, int32& out) argument
84 swap_convert_sample(float& in, float& out) argument
88 swap_convert_sample(uchar& in, float& out) argument
93 swap_convert_sample(short& in, float& out) argument
97 swap_convert_sample(int32& in, float& out) argument
101 swap_convert_sample(float& in, uchar& out) argument
105 swap_convert_sample(float& in, short& out) argument
109 swap_convert_sample(float& in, int32& out) argument
115 convert_sample(void* pIn, to_sample_t& out, int32 in_audio_format) argument
[all...]
/haiku/headers/private/mail/
H A Dcrypt.h15 void passwd_crypt(char *in,char *out,int length);
/haiku/src/system/libroot/posix/sys/
H A Dpriority.c72 int out; local
74 out = NZERO
78 out = NZERO
82 return CLIP_TO_UNIX(out);
90 int out; local
93 out = BZERO - ((prio - NZERO) * (BZERO - BMIN)) / (NZERO - 1);
95 out = BZERO + ((NZERO - prio) * (BMAX - BZERO)) / (NZERO);
96 return CLIP_TO_BEOS(out);
104 int out = -100; local
115 if (thread.priority > out) {
[all...]
/haiku/src/add-ons/kernel/file_systems/bindfs/
H A DDebugSupport.cpp36 static int out = -1; variable
47 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
48 if (out < 0) {
76 close(out);
77 out = -1;
146 write(out, buffer, strlen(buffer));

Completed in 402 milliseconds

1234567891011>>