HomeSort by relevance Sort by last modified time
    Searched full:channels (Results 726 - 750 of 4938) sorted by null

<<21222324252627282930>>

  /packages/apps/TV/src/com/android/tv/search/
SearchInterface.java 31 * Search channels, inputs, or programs. This assumes that parental control settings will not be
  /packages/apps/TV/tests/input/res/values/
strings.xml 22 <string name="simple_setup_message" translatable="false">Do you want to register detected channels?</string>
  /prebuilts/go/darwin-x86/misc/cgo/life/
life.go 22 // Keep the channels visible from Go.
  /prebuilts/go/darwin-x86/test/chan/
fifo.go 7 // Test that unbuffered channels act as pure fifos.
  /prebuilts/go/darwin-x86/test/
gc2.go 8 // Test that buffered channels are garbage collected properly.
  /prebuilts/go/linux-x86/misc/cgo/life/
life.go 22 // Keep the channels visible from Go.
  /prebuilts/go/linux-x86/test/chan/
fifo.go 7 // Test that unbuffered channels act as pure fifos.
  /prebuilts/go/linux-x86/test/
gc2.go 8 // Test that buffered channels are garbage collected properly.
  /system/media/audio_utils/
Android.bp 25 "channels.c",
  /system/media/audio_utils/tests/
build_and_run_all_unit_tests.sh 30 echo "testing channels"
  /external/ImageMagick/ImageMagick/api/
channel.html 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Get or Set Image Channels</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, get, or, set, image, channels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
59 <p>ChannelFxImage() applies a channel expression to the specified image. The expression consists of one or more channels, either mnemonic or numeric (e.g. red, 1), separated by actions as follows:</p>
64 <dd> &lt;=&gt; exchange two channels (e.g. red&lt;=&gt;blue) =&gt; copy one channel to another channel (e.g. red=&gt;green) = assign a constant value to a channel (e.g. red=50) , write new image channels in the specified order (e.g. red, green) | add a new output image for the next set of channel operations ; move to the next input image for the source of channel data </dd>
66 <dd> For example, to create 3 grayscale images from the red, green, and blue channels of an image, use: </dd>
103 <p>CombineImages() combines one or more images into a single image. The grayscale value of the pixels of each image in the sequence is assigned in order to the specified channels of the combined image. The typical ordering would be image 1 =&gt; Red, 2 =&gt; Green, 3 =&gt; Blue, etc.</p>
  /external/ImageMagick/www/api/
channel.html 8 <title>ImageMagick: MagickCore, C API for ImageMagick: Get or Set Image Channels</title>
17 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, get, or, set, image, channels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
63 <p>ChannelFxImage() applies a channel expression to the specified image. The expression consists of one or more channels, either mnemonic or numeric (e.g. red, 1), separated by actions as follows:</p>
68 <dd> &lt;=&gt; exchange two channels (e.g. red&lt;=&gt;blue) =&gt; copy one channel to another channel (e.g. red=&gt;green) = assign a constant value to a channel (e.g. red=50) , write new image channels in the specified order (e.g. red, green) | add a new output image for the next set of channel operations ; move to the next input image for the source of channel data </dd>
70 <dd> For example, to create 3 grayscale images from the red, green, and blue channels of an image, use: </dd>
107 <p>CombineImages() combines one or more images into a single image. The grayscale value of the pixels of each image in the sequence is assigned in order to the specified channels of the combined image. The typical ordering would be image 1 =&gt; Red, 2 =&gt; Green, 3 =&gt; Blue, etc.</p>
channel.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Get or Set Image Channels</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, get, or, set, image, channels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
59 <p>ChannelFxImage() applies a channel expression to the specified image. The expression consists of one or more channels, either mnemonic or numeric (e.g. red, 1), separated by actions as follows:</p>
64 <dd> &lt;=&gt; exchange two channels (e.g. red&lt;=&gt;blue) =&gt; copy one channel to another channel (e.g. red=&gt;green) = assign a constant value to a channel (e.g. red=50) , write new image channels in the specified order (e.g. red, green) | add a new output image for the next set of channel operations ; move to the next input image for the source of channel data </dd>
66 <dd> For example, to create 3 grayscale images from the red, green, and blue channels of an image, use: </dd>
103 <p>CombineImages() combines one or more images into a single image. The grayscale value of the pixels of each image in the sequence is assigned in order to the specified channels of the combined image. The typical ordering would be image 1 =&gt; Red, 2 =&gt; Green, 3 =&gt; Blue, etc.</p>
  /external/opencv/cxcore/include/
cxcore.hpp 50 CvImage( CvSize size, int depth, int channels )
52 image = cvCreateImage( size, depth, channels );
86 void create( CvSize size, int depth, int channels )
90 image->depth != depth || image->nChannels != channels )
91 attach( cvCreateImage( size, depth, channels ));
154 int channels() const { return image ? image->nChannels : 0; } function in class:CvImage
322 int channels() const { return matrix ? CV_MAT_CN(matrix->type) : 0; } function in class:CvMatrix
  /external/opencv/otherlibs/highgui/
loadsave.cpp 505 int channels, ipl_depth; local
515 channels = CV_MAT_CN( image->type );
516 if( channels != 1 && channels != 3 && channels != 4 )
536 image->cols, CV_MAKETYPE(CV_8U,channels)) );
543 image->height, ipl_depth, channels ))
  /external/tensorflow/tensorflow/core/ops/
summary_ops.cc 188 height, width, channels]` and where `channels` can be:
194 The images have the same number of channels as the input tensor. For float
214 non-finite input values. It is a `unit8` 1-D tensor of length `channels`.
223 tensor: 4-D of shape `[batch_size, height, width, channels]` where
224 `channels` is 1, 3, or 4.
242 frames, channels]` or 2-D with shape `[batch_size, frames]`. The values are
  /external/tinyalsa/
tinyhostless.c 48 unsigned int c_device, unsigned int channels,
206 can_play &= check_param(params, PCM_PARAM_CHANNELS, config->channels, "Sample", " channels");
217 unsigned int c_device, unsigned int channels,
232 config.channels = channels;
271 printf("Sample: %u ch, %u hz, %u bit\n", channels, rate, bits);
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec.cc 48 size_t channels) {
50 ACMCodecDB::CodecId(payload_name, sampling_freq_hz, channels));
66 size_t channels) {
68 CodecIdByParams(payload_name, sampling_freq_hz, channels);
74 // Keep the number of channels from the function call. For most codecs it
76 ci->channels = channels;
  /external/webrtc/webrtc/modules/media_file/
media_file_utility.h 42 // audio with more channels (in which case the audio will be converted to
62 // Note: codecInst.channels should be set to 2 for stereo (and 1 for
183 size_t channels,
190 // Update the WAV header. freqInHz, bytesPerSample, channels, format,
193 // bytes. channels is the number of channels, e.g. 1 is mono and 2 is
199 size_t channels,
  /external/webrtc/webrtc/voice_engine/
voe_codec_impl.cc 68 "channels=%" PRIuS ", rate=%d",
70 codec.channels, codec.rate);
88 if ((codec.channels != 1) && (codec.channels != 2)) {
90 "SetSendCodec() invalid number of channels");
165 "codec: plname=%s, plfreq=%d, pltype=%d, channels=%" PRIuS ", "
167 codec.plname, codec.plfreq, codec.pltype, codec.channels,
  /frameworks/wilhelm/tools/permute/
permute.c 191 switch (sfinfo_in.channels) {
194 frameSizeRead = sampleSizeRead * sfinfo_in.channels;
197 fprintf(stderr, "%s: unsupported channels %d\n", path_in, sfinfo_in.channels);
260 sfinfo_out.channels = sfinfo_in.channels;
270 count = sf_writef_short(sf_out, &((short *) ptr)[sfinfo_in.channels * s.mSegmentArray[i]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 60 virtual uint32_t channels() const = 0;
71 uint32_t frameSize() const { return audio_channel_count_from_out_mask(channels())*
142 virtual uint32_t channels() const = 0;
153 uint32_t frameSize() const { return audio_channel_count_from_in_mask(channels())*
256 uint32_t *channels=0,
263 uint32_t *channels=0,
272 uint32_t *channels,
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 17 package libcore.java.nio.channels;
35 import java.nio.channels.AlreadyBoundException;
36 import java.nio.channels.ClosedChannelException;
37 import java.nio.channels.NotYetConnectedException;
38 import java.nio.channels.SelectionKey;
39 import java.nio.channels.Selector;
40 import java.nio.channels.SocketChannel;
  /external/aac/libFDK/include/
FDK_qmf_domain.h 99 Description: Module to efficiently handle QMF data for multiple channels and
174 UCHAR nInputChannels; /*!< Number of QMF input channels. */
177 UCHAR nOutputChannels; /*!< Number of QMF output channels. */
195 channels. */
199 channels. */
219 nQmfProcChannels; /*!< Number of complete QMF channels which need to
222 between audio channels. */
232 * may be shared between channels if the codec processes all QMF channels in a
271 * Structure representing the QMF domain for multiple channels
    [all...]
  /external/adhd/cras/src/alsa_plugin/
pcm_cras.c 16 * channels - Number of channels.
32 unsigned int channels; member in struct:snd_pcm_cras
166 for (chan = 0; chan < io->channels; chan++) {
171 io->channels;
184 for (chan = 0; chan < io->channels; chan++)
263 io->channels);
410 pcm_cras->channels);
453 pcm_cras->channels = 2;
464 pcm_cras->areas = calloc(pcm_cras->channels,
    [all...]

Completed in 674 milliseconds

<<21222324252627282930>>