HomeSort by relevance Sort by last modified time
    Searched full:channels (Results 451 - 475 of 4077) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/nio/channels/
Channels.java 27 package java.nio.channels;
41 import java.nio.channels.spi.AbstractInterruptibleChannel;
49 * Utility methods for channels and streams.
62 public final class Channels {
64 private Channels() { } // No instantiation
106 // -- Byte streams from channels --
175 Channels.writeFully(ch, bb);
184 // -- Channels from streams --
321 // -- Character streams from channels --
364 * Channels.newReader(ch, csname)</pre></blockquote
    [all...]
  /external/libopus/src/
opus_multistream_decoder.c 66 int channels,
77 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
81 st->layout.nb_channels = channels;
112 int channels,
121 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
135 ret = opus_multistream_decoder_init(st, Fs, channels, streams, coupled_streams, mapping);
291 /* Handle muted channels */
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp 104 GpuMat::operator =(m.reshape(DataType<T>::channels, m.rows));
108 CV_Assert( DataType<T>::channels == m.channels() );
265 CV_DbgAssert( GpuMat::elemSize1() == sizeof(T) / DataType<T>::channels );
266 return sizeof(T) / DataType<T>::channels;
284 __host__ int GpuMat_<T>::channels() const function in class:cv::cudev::GpuMat_
286 CV_DbgAssert( GpuMat::channels() == DataType<T>::channels );
287 return DataType<T>::channels;
  /external/opencv3/modules/ts/include/opencv2/ts/
cuda_test.hpp 255 //! return vector with all types (depth: CV_8U-CV_64F, channels: 1-4).
311 IMPLEMENT_PARAM_CLASS(Channels, int)
313 #define ALL_CHANNELS testing::Values(Channels(1), Channels(2), Channels(3), Channels(4))
314 #define IMAGE_CHANNELS testing::Values(Channels(1), Channels(3), Channels(4))
  /external/webrtc/webrtc/p2p/base/
transport.h 11 // A Transport manages a set of named channels of the same type.
14 // however, this base class keeps track of the channels by name, watches their
16 // requests to begin connecting or to reset to each of the channels.
130 // Information about all the channels of a transport.
174 // Returns whether the client has requested the channels to connect.
198 // Create, destroy, and lookup the channels of this type by their components.
220 // Tells all current and future channels to start connecting.
223 // Tells channels to start gathering candidates if necessary.
228 // Resets all of the channels back to their initial state. They are no
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_stress_test.cc 94 printf(" (3) Create/delete channels\n");
191 printf("Running create/delete channels test\n");
222 // Start call on all or some channels.
223 // Two parts: first have a slight overweight to creating channels,
224 // then to deleting. (To ensure we hit max channels and go to zero.)
227 // Set up, start with maxChannels/2 channels
247 // Create/delete channels with slight
292 VALIDATE_STRESS(base->Terminate()); // Deletes all channels
373 VALIDATE_STRESS(base->Terminate()); // Deletes all channels
  /frameworks/av/services/audioflinger/tests/
test-mixer.cpp 39 fprintf(stderr, "Usage: %s [-f] [-m] [-c channels]"
44 fprintf(stderr, " -c number of mixer output channels\n");
50 fprintf(stderr, " <command> can be 'sine:[(i|f),]<channels>,<frequency>,<samplerate>'\n");
51 fprintf(stderr, " 'chirp:[(i|f),]<channels>,<samplerate>'\n");
55 uint32_t sampleRate, uint32_t channels, size_t frames, bool isBufferFloat) {
63 info.channels = channels;
65 printf("saving file:%s channels:%u samplerate:%u frames:%zu\n",
66 filename, info.channels, info.samplerate, frames);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 18 package libcore.java.nio.channels;
28 import java.nio.channels.NoConnectionPendingException;
29 import java.nio.channels.NotYetConnectedException;
30 import java.nio.channels.SelectionKey;
31 import java.nio.channels.ServerSocketChannel;
32 import java.nio.channels.SocketChannel;
33 import java.nio.channels.UnresolvedAddressException;
34 import java.nio.channels.UnsupportedAddressTypeException;
35 import java.nio.channels.spi.SelectorProvider;
  /packages/apps/TV/src/com/android/tv/
ChannelTuner.java 41 * It manages the current tuned channel among browsable channels. And it determines the next channel
134 * Returns true, if all the channels are loaded.
148 * Returns the number of browsable channels.
334 * Called when all the channels are loaded.
366 private void updateChannelData(List<Channel> channels) {
368 mChannels.addAll(channels);
372 for (int i = 0; i < channels.size(); ++i) {
373 Channel channel = channels.get(i);
390 // channels are changed.
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
OpenALAudioDevice.java 36 private final int channels; field in class:OpenALAudioDevice
50 channels = isMono ? 1 : 2;
53 this.format = channels > 1 ? AL_FORMAT_STEREO16 : AL_FORMAT_MONO16;
55 secondsPerBuffer = (float)bufferSize / bytesPerSample / channels / sampleRate;
208 return channels == 1;
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
OpenALAudioDevice.java 36 private final int channels; field in class:OpenALAudioDevice
50 channels = isMono ? 1 : 2;
53 this.format = channels > 1 ? AL_FORMAT_STEREO16 : AL_FORMAT_MONO16;
55 secondsPerBuffer = (float)bufferSize / bytesPerSample / channels / sampleRate;
208 return channels == 1;
  /external/opencv3/modules/core/include/opencv2/core/cuda/
utility.hpp 91 : mask(mask_), channels(channels_) {}
93 :mask(mask_.mask), channels(mask_.channels){}
97 return mask.ptr(y)[x / channels] != 0;
101 int channels; member in struct:cv::cuda::device::SingleMaskChannels
  /external/opencv3/modules/imgproc/test/ocl/
test_accumulate.cpp 55 PARAM_TEST_CASE(AccumulateBase, std::pair<MatDepth, MatDepth>, Channels, bool)
57 int sdepth, ddepth, channels; local
70 channels = GET_PARAM(1);
76 const int stype = CV_MAKE_TYPE(sdepth, channels),
77 dtype = CV_MAKE_TYPE(ddepth, channels);
  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_payload_registry.h 32 const size_t channels,
42 const size_t channels,
64 const size_t channels,
74 const size_t channels,
176 const size_t channels,
  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
conference_transport.h 38 // for local channels and the other for remote channels. There is a simulated
39 // reflector, which exchanges RTCP with local channels. For simplicity, it
40 // also uses the Voice Engine for remote channels. One can add streams by
51 * Set RTT between local channels and reflector.
  /frameworks/av/include/media/stagefright/
YUVImage.h 26 // to YUV channels for different formats:
30 // - getOffsets() returns the correct offset for the different channels
32 // Location of any pixel's YUV channels can then be easily computed using these.
153 // for the YUV channels. Note that this corresponds to data rows and not pixel rows.
154 // E.g. depending on formats, U/V channels may have only one data row corresponding
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
java.nio.channels.FileLock.html 10 java.nio.channels.FileLock
74 Class java.nio.channels.<A HREF="../../../../reference/java/nio/channels/FileLock.html" target="_top"><font size="+2"><code>FileLock</code></font></A>
87 <A NAME="java.nio.channels.FileLock.close_added()"></A>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/nio/channels/FileLock.html#close()" target="_top"><code>close</code></A>()</nobr>
pkg_java.nio.channels.html 10 java.nio.channels
74 Package <A HREF="../../../../reference/java/nio/channels/package-summary.html" target="_top"><font size="+1"><code>java.nio.channels</code></font></A>
85 <nobr><A HREF="java.nio.channels.FileLock.html">FileLock</A></nobr>
92 <nobr><A HREF="java.nio.channels.Selector.html">Selector</A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/24/changes/
java.nio.channels.FileChannel.html 10 java.nio.channels.FileChannel
74 Class java.nio.channels.<A HREF="../../../../reference/java/nio/channels/FileChannel.html" target="_top"><font size="+2"><code>FileChannel</code></font></A>
76 <p><font xsize="+1">Removed interface <code>java.nio.channels.ByteChannel</code>.<br> Added interface <code>java.nio.channels.SeekableByteChannel</code>.<br></font>
java.nio.channels.FileLock.html 10 java.nio.channels.FileLock
74 Class java.nio.channels.<A HREF="../../../../reference/java/nio/channels/FileLock.html" target="_top"><font size="+2"><code>FileLock</code></font></A>
86 <A NAME="java.nio.channels.FileLock.acquiredBy_added()"></A>
87 <nobr><code>Channel</code>&nbsp;<A HREF="../../../../reference/java/nio/channels/FileLock.html#acquiredBy()" target="_top"><code>acquiredBy</code></A>()</nobr>
java.nio.channels.spi.SelectorProvider.html 10 java.nio.channels.spi.SelectorProvider
74 Class java.nio.channels.spi.<A HREF="../../../../reference/java/nio/channels/spi/SelectorProvider.html" target="_top"><font size="+2"><code>SelectorProvider</code></font></A>
86 <A NAME="java.nio.channels.spi.SelectorProvider.openDatagramChannel_added(java.net.ProtocolFamily)"></A>
87 <nobr><code>DatagramChannel</code>&nbsp;<A HREF="../../../../reference/java/nio/channels/spi/SelectorProvider.html#openDatagramChannel(java.net.ProtocolFamily)" target="_top"><code>openDatagramChannel</code></A>(<code>ProtocolFamily</code>)</nobr>
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
BackgroundScanScheduler.java 49 * where each bucket represents a set of channels and an interval to scan at. This
67 // Max channels that can be specified per bucket
93 * intersecting channels will result in those channels being scanned exactly once at the smaller
341 // TODO: find a way to get max channels
571 settings.channels = originalSettings.channels;
590 // channels from the other bucket
592 currentBucketSettings.channels = new WifiScanner.ChannelSpec[currentBucketChannels.size()];
595 currentBucketSettings.channels[chanIdx++] = new WifiScanner.ChannelSpec(channel)
    [all...]
ScanScheduleUtil.java 61 if (!channelEquals(bucket1.channels[c], bucket2.channels[c])) {
145 * will always be included (filtered to only include requested channels). If it indicates that
150 * channels.
171 // channels were scanned.
  /frameworks/wilhelm/src/android/
channels.c 20 #include "channels.h"
88 * Get the number of active channels in an OpenSL ES channel mask.
201 // of channels requested. If the bitcount of 'bitsOut' isn't
203 // channels that the app requested. That will cause an
206 SL_LOGW("Conversion from OpenSL ES %s channel mask %#x to Android mask %#x %s channels",
  /tools/test/connectivity/acts/tests/google/wifi/
WifiScannerScanTest.py 511 """Common logic to check available channels for a band.
513 1. Get available channels for band.
514 2. Verify that channels match with supported channels for band.
549 """Test available channels for different bands.
551 1. Get available channels for different bands.
552 2. Verify that channels match with supported channels for respective band.
564 """Test WiFi scanner single scan for channels with enumerated settings.
566 1. Start WifiScanner single scan for different channels with enumerate
    [all...]

Completed in 1594 milliseconds

<<11121314151617181920>>