Searched refs:output (Results 176 - 200 of 289) sorted by relevance

1234567891011>>

/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js669 var output = new Uint32Array(imageData.data.buffer);
672 output[i] = (output[i] & 0xff) << 16 | (output[i] >> 16 & 0xff)
673 | (output[i] & 0xff00ff00);
678 output[i] |= 0xff000000;
685 var output = new Uint32Array(imageData.data.buffer);
688 output[i] = (output[i] & 0xff) << 16 | (output[
[all...]
/haiku/headers/os/media/
H A DBufferConsumer.h42 status_t SetVideoClippingFor(const media_source& output,
120 static status_t SetVideoClippingFor(const media_source& output,
H A DBufferProducer.h56 virtual status_t FormatProposal(const media_source& output,
220 int count, BRegion* output);
H A DMediaRoster.h61 // The output should not be used directly in common use cases.
126 status_t Disconnect(const media_output& output,
175 // output or input as the currently available is taken into usage.
312 status_t GetFormatFor(const media_output& output,
337 // Returns < 0 for "not present", positive size for output data size.
374 status_t SetOutputBuffersFor(const media_source& output,
/haiku/src/tests/kits/app/common/
H A DAppRunner.cpp183 const void *output = fOutput.Buffer(); local
185 buffer->SetTo((const char*)output, size);
/haiku/src/tests/system/kernel/unit/
H A DTestContext.cpp51 GlobalTestContext::GlobalTestContext(TestOutput& output, TestOptions& options) argument
55 fOutput(output),
H A DTestContext.h32 GlobalTestContext(TestOutput& output,
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DConsoleOutputView.cpp93 ConsoleOutputView::ConsoleOutputReceived(int32 fd, const BString& output) argument
100 OutputInfo* info = new(std::nothrow) OutputInfo(fd, output);
183 fOutputWorker = spawn_thread(_OutputWorker, "output worker", B_LOW_PRIORITY, this);
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerUtils.cpp321 StringForFormat(char *buf, MixerOutput *output) argument
323 return StringForFormat(buf, output->MediaOutput().format);
/haiku/src/kits/package/hpkg/
H A DPackageFileHeapAccessorBase.cpp209 BDataIO* output)
276 error = output->WriteExactly(
208 ReadDataToOutput(off_t offset, size_t size, BDataIO* output) argument
/haiku/src/add-ons/accelerants/nvidia/engine/
H A Dnv_dac.c17 uint32 output, dac; local
20 /* save output connector setting */
21 output = DACR(OUTPUT);
30 DACW(OUTPUT, (output & 0x0000feee));
39 DACW(OUTPUT, (output & 0x0000ffee));
43 /* re-enable CRT output */
48 /* route test signals to output */
68 /* restore output connector setting */
69 DACW(OUTPUT, output);
508 /* set max. useable VCO output postscale
[all...]
/haiku/src/system/libroot/posix/musl/crypt/
H A Dcrypt_des.c875 static char *_crypt_extended_r_uut(const char *_key, const char *_setting, char *output) argument
933 memcpy(output, setting, 9);
934 output[9] = '\0';
935 p = (unsigned char *)output + 9;
950 output[0] = setting[0];
951 output[1] = setting[1];
952 p = (unsigned char *)output + 2;
981 return output;
984 char *_crypt_des_r(const char *key, const char *setting, char *output) argument
1002 retval = _crypt_extended_r_uut(key, setting, output);
[all...]
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.cpp204 media_output output; local
206 if ((outputJack->getOutput(&output) == B_OK)
211 error = manager->connect(output, input, &connection);
477 if (message->GetInfo("output", &type, &count) == B_OK)
481 media_output output; local
484 if (message->FindData("output", B_RAW_TYPE, n, &data, &dataSize) == B_OK)
486 output = *reinterpret_cast<const media_output *>(data);
488 if (manager->findConnection(output.node.node, output.source, &connection) == B_OK)
686 else if (message->GetInfo("output",
690 media_output output; local
1343 media_output output; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmulti.cpp527 // for each channel, starting with the first output channel,
529 // channel, second, third, ..., followed by output bus
600 case 192000: data->output.rate = data->input.rate = B_SR_192000; break;
601 case 96000: data->output.rate = data->input.rate = B_SR_96000; break;
602 case 48000: data->output.rate = data->input.rate = B_SR_48000; break;
603 case 44100: data->output.rate = data->input.rate = B_SR_44100; break;
606 case 8: data->input.format = data->output.format = B_FMT_8BIT_U; break;
607 case 16: data->input.format = data->output.format = B_FMT_16BIT; break;
608 case 24: data->input.format = data->output.format = B_FMT_24BIT; break;
609 case 32: data->input.format = data->output
[all...]
/haiku/src/apps/text_search/
H A DGrepper.cpp305 B_TRANSLATE("Failed to open output pipe!"));
373 FILE* output = fdopen(out, "r"); local
415 if (fgets(line, sizeof(line), output) != NULL) {
416 // parse grep output
477 fclose(output);
/haiku/src/kits/network/libnetservices2/
H A DHttpFields.cpp106 BString output = BError::DebugMessage();
107 output << "\t " << input << "\n";
108 return output;
H A DHttpRequest.cpp53 BString output = BError::DebugMessage(); local
55 output << ":\t " << input << "\n";
56 return output;
/haiku/src/add-ons/media/media-add-ons/equalizer/
H A DEqualizerNode.h85 virtual status_t GetNextOutput(int32 *cookie, media_output* output);
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTNode.h92 virtual status_t GetNextOutput(int32 *cookie, media_output *output);
/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoProducer.h61 virtual status_t FormatProposal(const media_source &output,
/haiku/src/kits/media/
H A DSoundPlayNode.h55 virtual status_t FormatProposal(const media_source& output,
/haiku/src/add-ons/media/media-add-ons/tone_producer_demo/
H A DToneProducer.h72 const media_source& output,
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dice1712.h40 // 5 stereo output + the Digital mixer
110 uint8 output[5]; //an index member in struct:ice1712Settings
178 #define GPIO_SPDIF_DOUT 0x08 //data output
181 #define DELTA66_DOUT 0x10 // data output
190 #define AP2496_DOUT 0x08 // data output
198 #define DELTA1010LT_DOUT 0x08 // data output
209 #define VX442_DOUT 0x08 // data output
/haiku/src/add-ons/accelerants/via/engine/
H A Ddac.c18 uint32 output, dac; local
21 /* save output connector setting */
22 output = DACR(OUTPUT);
29 DACW(OUTPUT, (output & 0x0000feee));
32 /* re-enable CRT output */
37 /* route test signals to output */
57 /* restore output connector setting */
58 DACW(OUTPUT, output);
567 /* set max. useable VCO output postscaler divider factor */
577 * apparantly we would get distortions on high PLL output frequencie
[all...]
/haiku/headers/private/netservices/
H A DHttpRequest.h71 BDataIO* output,

Completed in 118 milliseconds

1234567891011>>