HomeSort by relevance Sort by last modified time
    Searched refs:channels (Results 51 - 75 of 1456) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/nio/channels/
ReadPendingExceptionTest.java 17 package libcore.java.nio.channels;
21 import java.nio.channels.ReadPendingException;
26 * java.nio.channels.ReadPendingException#ReadPendingException()
ShutdownChannelGroupExceptionTest.java 17 package libcore.java.nio.channels;
21 import java.nio.channels.ShutdownChannelGroupException;
26 * java.nio.channels.ShutdownChannelGroupException#ShutdownChannelGroupException()
WritePendingExceptionTest.java 17 package libcore.java.nio.channels;
21 import java.nio.channels.WritePendingException;
26 * java.nio.channels.WritePendingException#WritePendingException()
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectionKey.java 26 package java.nio.channels.spi;
28 import java.nio.channels.*;
  /external/adhd/cras/src/server/
cras_audio_area.c 42 if (!(src->channels[src_idx].ch_set &
43 dst->channels[dst_idx].ch_set))
46 schan = src->channels[src_idx].buf +
47 src_offset * src->channels[src_idx].step_bytes;
48 dchan = dst->channels[dst_idx].buf +
49 dst_offset * dst->channels[dst_idx].step_bytes;
53 dst->channels[dst_idx].step_bytes,
54 src->channels[src_idx].step_bytes,
80 channel_area_set_channel(area->channels, CRAS_CH_FL);
81 channel_area_set_channel(area->channels, CRAS_CH_FR)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_classifier.cc 42 int channels) {
44 assert((input_length / channels) == kDefaultFrameSizeSamples);
47 assert(channels == 1 || channels == 2);
61 channels,
audio_classifier_unittest.cc 40 size_t channels) {
42 rtc::scoped_ptr<int16_t[]> in(new int16_t[channels * kFrameSize]);
51 while (fread(in.get(), sizeof(int16_t), channels * kFrameSize, audio_file) ==
52 channels * kFrameSize) {
54 classifier.Analysis(in.get(), channels * kFrameSize, channels);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 17 package org.apache.harmony.tests.java.nio.channels.spi;
19 import java.nio.channels.SelectableChannel;
20 import java.nio.channels.SelectionKey;
21 import java.nio.channels.Selector;
22 import java.nio.channels.spi.AbstractSelectionKey;
MockAbstractSelector.java 17 package org.apache.harmony.tests.java.nio.channels.spi;
20 import java.nio.channels.SelectionKey;
21 import java.nio.channels.Selector;
22 import java.nio.channels.spi.AbstractSelectableChannel;
23 import java.nio.channels.spi.AbstractSelectionKey;
24 import java.nio.channels.spi.AbstractSelector;
25 import java.nio.channels.spi.SelectorProvider;
  /external/autotest/client/site_tests/audio_Microphone/
audio_Microphone.py 23 self, filesize, duration, channels, rate, bits=16):
24 expected = duration * channels * (bits / 8) * rate
29 def verify_alsa_capture(self, channels, rate, device, bits=16):
32 recorded_file.name, duration=DURATION, channels=channels,
36 DURATION, channels, rate, bits)
39 def verify_cras_capture(self, channels, rate):
42 recorded_file.name, duration=DURATION, channels=channels,
46 DURATION, channels, rate
    [all...]
  /external/aac/libPCMutils/src/
pcm_utils.cpp 110 const UINT channels, const UINT frameSize,
114 for (UINT ch = 0; ch < channels; ch++) {
122 const UINT channels, const UINT frameSize,
126 for (UINT ch = 0; ch < channels; ch++) {
134 const UINT channels, const UINT frameSize,
138 for (UINT ch = 0; ch < channels; ch++) {
146 const UINT channels, const UINT frameSize,
148 for (UINT ch = 0; ch < channels; ch++) {
153 In += channels;
159 const UINT channels, const UINT frameSize
    [all...]
  /external/aac/libPCMutils/include/
pcm_utils.h 110 const UINT channels, const UINT frameSize,
113 const UINT channels, const UINT frameSize,
116 const UINT channels, const UINT frameSize,
120 const UINT channels, const UINT frameSize,
123 const UINT channels, const UINT frameSize,
126 const UINT channels, const UINT frameSize,
129 const UINT channels, const UINT frameSize,
  /external/tensorflow/tensorflow/contrib/lite/examples/label_image/
bitmap_helpers.cc 32 int width, int height, int channels, bool top_down) {
39 src_pos = ((height - 1 - i) * row_size) + j * channels;
41 src_pos = i * row_size + j * channels;
44 dst_pos = (i * width + j) * channels;
46 switch (channels) {
64 LOG(FATAL) << "Unexpected number of channels: " << channels;
74 int* channels, Settings* s) {
98 *channels = bpp / 8;
101 LOG(INFO) << "width, height, channels: " << *width << ", " << *heigh
102 << ", " << *channels << "\\n"; local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectableChannel.java 26 package java.nio.channels;
29 import java.nio.channels.spi.AbstractInterruptibleChannel;
30 import java.nio.channels.spi.SelectorProvider;
63 * <p> Selectable channels are safe for use by multiple concurrent
77 * <p> Newly-created selectable channels are always in blocking mode.
243 * #register(java.nio.channels.Selector,int,java.lang.Object)
AsynchronousChannel.java 26 package java.nio.channels;
59 * <p> Asynchronous channels are safe for use by multiple concurrent threads.
CompletionHandler.java 26 package java.nio.channels;
31 * <p> The asynchronous channels defined in this package allow a completion
ReadableByteChannel.java 26 package java.nio.channels;
WritableByteChannel.java 26 package java.nio.channels;
69 * writing all of the <i>r</i> requested bytes. Some types of channels,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AudioQuality.java 24 int channels; field in class:AudioQuality
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
PipeTest.java 17 package org.apache.harmony.tests.java.nio.channels;
21 import java.nio.channels.Pipe;
22 import java.nio.channels.Pipe.SinkChannel;
23 import java.nio.channels.Pipe.SourceChannel;
34 * @tests java.nio.channels.Pipe#open()
42 * @tests java.nio.channels.Pipe#sink()
51 * @tests java.nio.channels.Pipe#source()
SelectableChannelTest.java 17 package org.apache.harmony.tests.java.nio.channels;
20 import java.nio.channels.ClosedChannelException;
21 import java.nio.channels.SelectableChannel;
22 import java.nio.channels.SelectionKey;
23 import java.nio.channels.Selector;
24 import java.nio.channels.spi.SelectorProvider;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
ChannelHelper.java 28 * adjusted based on the amount of information known about the available channels.
32 // TODO: Currently this is simply an estimate and is used for both active and passive channels
43 * Create a new collection that can be used to store channels
53 * Get the channels that are available for scanning on the supplied band.
75 * Object that supports accumulation of channels and bands
83 * Add all channels in the band to the collection
91 * @return true if the collection contains all the channels of the supplied band
95 * @return true if the collection contains some of the channels of the supplied band
99 * @return true if the collection contains no channels
103 * @return true if the collection contains all available channels
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_utils.c 87 for (i = 0; i < a->channels; i++) {
88 for (j = 0; j < b->channels; j++) {
91 res->channel[res->channels] = a->channel[i];
92 res->channels++;
93 if (res->channels == P2P_MAX_REG_CLASS_CHANNELS)
102 * @a: First set of supported channels
103 * @b: Second set of supported channels
104 * @res: Data structure for returning the intersection of support channels
106 * This function can be used to find a common set of supported channels. Both
107 * input channels sets are assumed to use the same country code. If differen
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op_gpu.cu.cc 39 int channels, int out_height,
42 // out_idx = c + channels * (x + out_width * (y + out_height * b))
44 const int c = idx % channels;
45 idx /= channels;
65 channels +
69 channels +
73 channels +
77 channels +
90 int channels, int resized_height, int resized_width, T* output_grad) {
92 // in_idx = c + channels * (x + resized_width * (y + resized_height * b)
158 const int channels = images.dimension(3); local
185 const int channels = output_grad.dimension(3); local
    [all...]
encode_png_op.cc 63 const int32 channels = static_cast<int32>(image.dim_size(2)); variable
65 // In some cases, we pass width*channels*2 to png.
68 OP_REQUIRES(context, FastBoundsCheck(width * channels, max_row_width),
71 OP_REQUIRES(context, channels >= 1 && channels <= 4,
73 "image must have 1, 2, 3, or 4 channels, got ", channels));
82 height, width * channels, channels,
90 width * channels * 2, channels, desired_channel_bits_
    [all...]

Completed in 462 milliseconds

1 23 4 5 6 7 8 91011>>