/hardware/libhardware_legacy/audio/ |
A2dpAudioInterface.h | 58 uint32_t *channels=0, 66 uint32_t *channels, 88 virtual uint32_t channels() const { return AudioSystem::CHANNEL_OUT_STEREO; } function in class:android_audio_legacy::A2dpAudioInterface::A2dpAudioStreamOut
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
gscancommand.h | 40 wifi_channel channels[]; member in struct:__anon52549 59 wifi_channel *channels; member in struct:__anon52552 122 virtual void setChannels(int *channels);
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
ChannelInputStream.java | 31 import java.nio.channels.*; 35 * This class is defined here rather than in java.nio.channels.Channels
|
AsynchronousChannelGroupImpl.java | 28 import java.nio.channels.Channel; 29 import java.nio.channels.AsynchronousChannelGroup; 30 import java.nio.channels.spi.AsynchronousChannelProvider; 223 * Returns true if there are no channels in the group 239 * Closes all channels in the group 264 // if there are channels in the group then shutdown will continue
|
/packages/apps/TV/src/com/android/tv/recommendation/ |
NotificationService.java | 285 List<Channel> channels = recommendChannels(); local 286 for (Channel c : channels) { 292 // Cancel notification whose channels are not recommended anymore. 301 for (Channel c : channels) { 316 List<Channel> channels = recommendChannels(); local 321 for (Channel c : channels) { 332 List channels = mRecommender.recommendChannels(); local 333 if (channels.contains(mPlayingChannel)) { 334 channels = new ArrayList<>(channels); [all...] |
/packages/providers/TvProvider/src/com/android/providers/tv/ |
TransientRowHelper.java | 22 import android.media.tv.TvContract.Channels; 80 // Delete all the transient programs and channels. 82 db.delete(TvProvider.CHANNELS_TABLE, Channels.COLUMN_TRANSIENT + "=1", null);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/ |
pcm_extplug.h | 44 SND_PCM_EXTPLUG_HW_CHANNELS, /**< channels */ 102 * channels hw parameter; filled after hw_params is caled 104 unsigned int channels; member in struct:snd_pcm_extplug
|
/external/autotest/server/site_tests/brillo_RecordingAudioTest/ |
brillo_RecordingAudioTest.py | 17 # Number of channels to record. 49 @param num_channels: Number of channels to use for recording. 85 @param num_channels: Number of channels to use for recording. 137 @param num_channels_arr: Array of number of channels to test record with. 158 logging.info('Number of channels: %d', num_channels) 180 logging.error('Sample rate: %i, Sample width: %i, Num Channels '
|
/external/opencv/ |
cvjni.h | 171 int channels,
174 int fileStep = (width*channels + 3) & -4;
182 int paletteSize = channels > 1 ? 0 : 1024;
204 m_strm->PutWord( channels << 3 );
212 if( channels == 1 )
218 width *= channels;
|
/external/tensorflow/tensorflow/core/kernels/ |
adjust_hue_op.cc | 63 auto channels = input.dim_size(input.dims() - 1); variable 65 context, channels == 3, 66 errors::InvalidArgument("input must have 3 channels but instead has ", 67 channels, " channels.")); 74 const int64 channel_count = input.NumElements() / channels;
|
adjust_saturation_op.cc | 62 auto channels = input.dim_size(input.dims() - 1); variable 64 context, channels == 3, 65 errors::InvalidArgument("input must have 3 channels but instead has ", 66 channels, " channels.")); 73 const int64 channel_count = input.NumElements() / channels;
|
resize_nearest_neighbor_op.cc | 94 const int channels = input.dimension(3); local 110 std::copy_n(&input(b, in_y, in_x, 0), channels, &output(b, y, x, 0)); local 150 const int64 channels = input.dim_size(3); variable 159 0, TensorShape({batch_size, out_height, out_width, channels}), 205 const int channels = input.dimension(3); local 223 for (int c = 0; c < channels; ++c) {
|
/external/tensorflow/tensorflow/core/ops/ |
image_ops.cc | 73 int32 channels; local 74 TF_RETURN_IF_ERROR(c->GetAttr("channels", &channels)); 75 if (channels == 0) { 78 if (channels < 0) { 79 return errors::InvalidArgument("channels must be non-negative, got ", 80 channels); 82 channels_dim = c->MakeDim(channels); 239 DimensionHandle channels = c->Dim(image, -1); 255 c->set_output(0, c->MakeShape({h, w, channels})); [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioBiquadFilter.h | 29 // channels is supported. 37 // Max number of channels (can be changed here, and everything should work). 43 // nChannels Number of input/output channels. 48 // nChannels Number of input/output channels. 122 // Number of channels. 143 // number of channels).
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
DatagramChannelTest.java | 17 package libcore.java.nio.channels; 33 import java.nio.channels.AlreadyBoundException; 34 import java.nio.channels.ClosedChannelException; 35 import java.nio.channels.DatagramChannel; 36 import java.nio.channels.UnsupportedAddressTypeException; 37 import java.nio.channels.spi.SelectorProvider;
|
SelectorTest.java | 16 package libcore.java.nio.channels; 24 import java.nio.channels.NoConnectionPendingException; 25 import java.nio.channels.SelectionKey; 26 import java.nio.channels.Selector; 27 import java.nio.channels.ServerSocketChannel; 28 import java.nio.channels.SocketChannel;
|
/libcore/ojluni/src/main/java/java/nio/channels/spi/ |
AsynchronousChannelProvider.java | 26 package java.nio.channels.spi; 28 import java.nio.channels.*; 38 * Service-provider class for asynchronous channels. 93 String cn = System.getProperty("java.nio.channels.spi.AsynchronousChannelProvider"); 140 * <tt>java.nio.channels.spi.AsynchronousChannelProvider</tt> is defined 148 * <tt>java.nio.channels.spi.AsynchronousChannelProvider</tt> in the resource
|
/libcore/ojluni/src/main/java/java/nio/ |
package-info.java | 42 * <li><p> <a href="channels/package-summary.html"><i>Channels</i></a> of 47 * <i>selectable channels</i> define a <a 48 * href="channels/package-summary.html#multiplex">multiplexed, non-blocking <br> 56 * {@link java.nio.channels} package. Each of these subpackages has its own 115 * java.nio.channels.FileChannel#map </code><i>mapping</i><code>} a region of a
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
hostapd_constants.py | 77 # DFS channels. 98 # End DFS channels. 218 # we tolerate HT40 in channels 149-161 (not allowed in EU), but also 243 'channels': ((36, 40), (44, 48), (52, 56), (60, 64), (100, 104), 249 'channels': ((36, 48), (52, 64), (100, 112), (116, 128), (132, 144), 254 'channels': ((36, 64), (100, 128))
|
/external/adhd/cras/src/server/ |
cras_dsp.h | 73 /* Number of channels output. */ 76 /* Number of channels input. */
|
/external/autotest/client/cros/audio/ |
audio_test_data.py | 33 channel: number of channels. 168 channel: number of channels. 190 channels=data_format['channel'], 214 This test data contains frequency sweep from 20Hz to 20000Hz in two channels. 229 This test data contains fixed frequency sine wave in two channels. 243 This test data contains fixed frequency sine wave in two channels. 259 This test data contains fixed frequency sine wave in two channels. 275 This test data contains fixed frequency sine wave in two channels.
|
/external/autotest/server/site_tests/network_WiFi_ChannelHop/ |
network_WiFi_ChannelHop.py | 12 """Tests roaming when an AP changes channels on an SSID.""" 50 # Change channels on the AP. This happens in full view of the DUT
|
/external/libopus/ |
README.draft | 32 Usage: opus_demo [-e] <application> <sampling rate (Hz)> <channels (1/2)> 34 opus_demo -d <sampling rate (Hz)> <channels (1/2)> [options]
|
/external/mesa3d/src/compiler/glsl/ |
opt_vectorize.cpp | 28 * multiple channels of the same variable into a single vectorized expression 73 channels = 0; 97 unsigned channels; member in class:__anon29250::ir_vectorize_visitor 179 if (this->last_assignment && this->channels > 1) { 180 ir_swizzle_mask mask = {0, 0, 0, 0, channels, 0}; 261 this->channels >= 4 || 382 this->channels++; 393 * multiple channels of the same variable into a single vectorized expression
|
/external/python/cpython3/Doc/library/ |
sndhdr.rst | 26 value or ``0`` if unknown or difficult to decode. Similarly, *channels* will be 27 either the number of channels or ``0`` if it cannot be determined or if the
|