Searched refs:channels (Results 1 - 25 of 83) sorted by relevance

1234

/macosx-10.10/WebCore-7600.1.25/dom/
H A DMessagePort.cpp69 std::unique_ptr<MessagePortChannelArray> channels; local
79 channels = MessagePort::disentanglePorts(ports, ec);
83 m_entangledChannel->postMessageToRemote(message, WTF::move(channels));
156 std::unique_ptr<MessagePortChannelArray> channels; local
157 while (m_entangledChannel && m_entangledChannel->tryGetMessageFromRemote(message, channels)) {
163 std::unique_ptr<MessagePortArray> ports = MessagePort::entanglePorts(*m_scriptExecutionContext, WTF::move(channels));
213 std::unique_ptr<MessagePortArray> MessagePort::entanglePorts(ScriptExecutionContext& context, std::unique_ptr<MessagePortChannelArray> channels) argument
215 if (!channels || !channels->size())
218 auto portArray = std::make_unique<MessagePortArray>(channels
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Doggstream.tcl24 sound s -channel $sock -channels 2 -rate 44100 -fileformat ogg
H A Dlevelmeter.tcl7 snack::sound s -channels 2
H A Dgenerator2.tcl7 snack::sound s1 -channels 2
12 snack::sound s2 -channels 2
H A Dmixer.tcl24 if {[snack::mixer channels $line] == "Mono"} {
H A Drecord.tcl52 set ::s(chan) [s cget -channels]
90 s configure -rate $::s(rate) -channels $::s(chan) -encoding $::s(enc)
91 t configure -rate $::s(rate) -channels $::s(chan) -encoding $::s(enc)
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngwtran.c41 /* png_byte channels; number of channels (1-4) */
42 /* png_byte pixel_depth; bits per pixel (depth*channels) */
88 * row_info bit depth should be 8 (one pixel per byte). The channels
97 row_info->channels == 1)
200 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
224 int channels = 0; local
228 shift_start[channels] = row_info->bit_depth - bit_depth->red;
229 shift_dec[channels] = bit_depth->red;
230 channels
[all...]
H A Dpngrtran.c571 * to alpha channels.
631 /* Expand tRNS chunks to alpha channels. */
1250 info_ptr->channels = 1;
1252 info_ptr->channels = 3;
1254 info_ptr->channels = 1;
1262 info_ptr->channels++;
1270 info_ptr->channels++;
1283 if (info_ptr->channels < png_ptr->user_transform_channels)
1284 info_ptr->channels = png_ptr->user_transform_channels;
1288 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
1652 int channels = 0; local
[all...]
/macosx-10.10/ruby-106/ruby/sample/rss/
H A Dlist_description.rb15 channels = {}
71 channels[rss.channel.title] ||= []
72 channels[rss.channel.title] << item if item.description
78 channels.sort do |x, y|
/macosx-10.10/WebCore-7600.1.25/dom/default/
H A DPlatformMessagePortChannel.cpp40 PlatformMessagePortChannel::EventData::EventData(PassRefPtr<SerializedScriptValue> message, std::unique_ptr<MessagePortChannelArray> channels) argument
42 , m_channels(WTF::move(channels))
89 void MessagePortChannel::postMessageToRemote(PassRefPtr<SerializedScriptValue> message, std::unique_ptr<MessagePortChannelArray> channels) argument
94 bool wasEmpty = m_channel->m_outgoingQueue->appendAndCheckEmpty(std::make_unique<PlatformMessagePortChannel::EventData>(message, WTF::move(channels)));
99 bool MessagePortChannel::tryGetMessageFromRemote(RefPtr<SerializedScriptValue>& message, std::unique_ptr<MessagePortChannelArray>& channels) argument
107 channels = result->channels();
H A DPlatformMessagePortChannel.h55 std::unique_ptr<MessagePortChannelArray> channels() { return WTF::move(m_channels); } function in class:WebCore::PlatformMessagePortChannel::EventData
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/contrib/pngminus/
H A Dpnm2png.c204 int channels; local
318 /* calculate the number of channels and store alpha-presence */
320 channels = 1;
322 channels = 2;
324 channels = 3;
326 channels = 4;
328 channels = 0; /* should not happen */
330 alpha_present = (channels - 1) % 2;
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
333 row_bytes = width * channels * ((bit_dept
[all...]
H A Dpng2pnm.c201 int channels; local
276 * get rowbytes and channels, and allocate image memory */
293 /* calculate new number of channels and store alpha-presence */
295 channels = 1;
297 channels = 2;
299 channels = 3;
301 channels = 4;
303 channels = 0; /* should never happen */
304 alpha_present = (channels - 1) % 2;
314 /* row_bytes is the width x number of channels
[all...]
/macosx-10.10/WebCore-7600.1.25/workers/
H A DDedicatedWorkerGlobalScope.cpp74 std::unique_ptr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec); local
77 thread().workerObjectProxy().postMessageToWorkerObject(message, WTF::move(channels));
H A DWorker.cpp118 std::unique_ptr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec); local
121 m_contextProxy->postMessageToWorkerGlobalScope(message, WTF::move(channels));
H A DWorkerMessagingProxy.cpp96 void WorkerMessagingProxy::postMessageToWorkerObject(PassRefPtr<SerializedScriptValue> message, std::unique_ptr<MessagePortChannelArray> channels) argument
98 MessagePortChannelArray* channelsPtr = channels.release();
109 void WorkerMessagingProxy::postMessageToWorkerGlobalScope(PassRefPtr<SerializedScriptValue> message, std::unique_ptr<MessagePortChannelArray> channels) argument
114 MessagePortChannelArray* channelsPtr = channels.release();
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXfilecmds.c74 Tcl_Channel channels [2];
80 if (TclXOSpipe (interp, channels) != TCL_OK)
84 channelNames [0] = Tcl_GetChannelName (channels [0]);
85 channelNames [1] = Tcl_GetChannelName (channels [1]);
104 Tcl_Close (NULL, channels [0]);
105 Tcl_Close (NULL, channels [1]);
73 Tcl_Channel channels [2]; local
/macosx-10.10/emacs-93/emacs/src/
H A Dsound.c154 u_int16_t channels; member in struct:wav_header
192 /* Number of interleaved channels. */
193 u_int32_t channels; member in struct:au_header
227 int channels; member in struct:sound_device
577 header->channels = le2hs (header->channels);
610 sd->channels = header->channels;
685 header->channels = be2hl (header->channels);
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DAssertions.cpp454 WTFLogChannel* WTFLogChannelByName(WTFLogChannel* channels[], size_t count, const char* name) argument
457 WTFLogChannel* channel = channels[i];
465 static void setStateOfAllChannels(WTFLogChannel* channels[], size_t channelCount, WTFLogChannelState state) argument
468 channels[i]->state = state;
471 void WTFInitializeLogChannelStatesFromString(WTFLogChannel* channels[], size_t count, const char* logLevel) argument
487 setStateOfAllChannels(channels, count, logChannelState);
491 if (WTFLogChannel* channel = WTFLogChannelByName(channels, count, component.utf8().data()))
/macosx-10.10/bind9-45.101/bind9/contrib/zkt/
H A DREADME.logging10 to the default stdout and stderr channels, and the logging itself
36 For both channels, the log level could be set to one of six log levels:
/macosx-10.10/bind9-45.101/
H A Dnamed.conf6 // Declares control channels to be used by the rndc utility.
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/htdocs/raw/
H A Dindex.exp20 channel types for in-memory channels and the appropriate commands for
H A Dmem_event.exp10 generation of file events for memory based channels.
42 impact on their transfer performance) for memory channels to the
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/transfer/
H A Ddsource.tcl144 if {![llength [file channels $newvalue]]} {
/macosx-10.10/tcl-105/tcl_ext/trf/trf/htdocs/raw/
H A Dindex.exp19 The underlying functionlaity in the core is that of ''stacked channels

Completed in 189 milliseconds

1234