HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 101 - 125 of 2925) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_remote_worker.h 32 WorkerInterface* NewGrpcRemoteWorker(SharedGrpcChannelPtr channel,
  /external/tensorflow/tensorflow/core/lib/gif/
gif_io.cc 88 const int channel = 3; local
90 uint8* const dstdata = allocate_output(num_frames, width, height, channel);
93 uint8* this_dst = dstdata + k * width * channel * height;
117 uint8* last_dst = dstdata + (k - 1) * width * channel * height;
119 uint8* p_dst = this_dst + i * width * channel;
120 uint8* l_dst = last_dst + i * width * channel;
122 p_dst[j * channel + 0] = l_dst[j * channel + 0];
123 p_dst[j * channel + 1] = l_dst[j * channel + 1]
    [all...]
  /external/walt/ios/WALT/
MIDIMessage.m 53 MIDIByte MIDIStatusByte(MIDIMessageType type, MIDIChannel channel) {
57 return (type << 4) | (channel - 1);
61 NSData *MIDIChannelMessageCreate(MIDIMessageType type, MIDIChannel channel, NSData *body) {
65 const MIDIByte status = MIDIStatusByte(type, channel);
77 NSData *MIDIMessageCreateSimple1(MIDIMessageType type, MIDIChannel channel, MIDIByte first) {
82 const MIDIByte status = MIDIStatusByte(type, channel);
90 MIDIChannel channel,
97 const MIDIByte status = MIDIStatusByte(type, channel);
  /external/webrtc/webrtc/common_audio/vad/
vad_sp.h 45 // - channel : Channel number.
54 int channel);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingChannel.h 29 - (void)channel:(id<ARDSignalingChannel>)channel
32 - (void)channel:(id<ARDSignalingChannel>)channel
44 // Registers the channel for the given room and client id.
48 // Sends signaling message over the channel.
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockImpl.java 36 FileLockImpl(FileChannel channel, long position, long size, boolean shared)
38 super(channel, position, size, shared);
41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared)
43 super(channel, position, size, shared);
56 Channel ch = acquiredBy();
PendingFuture.java 41 private final AsynchronousChannel channel; field in class:PendingFuture
59 PendingFuture(AsynchronousChannel channel,
64 this.channel = channel;
70 PendingFuture(AsynchronousChannel channel,
74 this.channel = channel;
79 PendingFuture(AsynchronousChannel channel) {
80 this(channel, null, null);
83 PendingFuture(AsynchronousChannel channel, Object context)
87 AsynchronousChannel channel() { method in class:PendingFuture
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/notification/
NotificationChannelManager.java 49 * <li>channel management code is simpler and it's easier to ensure that the correct set of
68 "NotificationChannelManager.initChannels", "desired channel IDs: " + desiredChannelIds);
70 "NotificationChannelManager.initChannels", "existing channel IDs: " + existingChannelIds);
74 // channel that gets deleted when the user removes the SIM and is then restored when the user
101 for (NotificationChannel channel : notificationManager.getNotificationChannels()) {
102 result.add(channel.getId());
118 NotificationChannel channel = local
123 channel.setShowBadge(false);
124 channel.enableLights(true);
125 channel.enableVibration(false)
132 NotificationChannel channel = local
146 NotificationChannel channel = local
160 NotificationChannel channel = local
    [all...]
  /external/aac/libAACdec/src/
FDK_delay.cpp 130 const UINT frame_length, const UCHAR channel) {
136 FDK_ASSERT(channel < data->num_channels);
143 FDKmemcpy(&time_buffer[0], &data->delay_line[channel * data->delay],
145 FDKmemcpy(&data->delay_line[channel * data->delay], tmp,
149 FDKmemcpy(&time_buffer[0], &data->delay_line[channel * data->delay],
151 FDKmemcpy(&data->delay_line[channel * data->delay],
152 &data->delay_line[channel * data->delay + frame_length],
154 FDKmemcpy(&data->delay_line[channel * data->delay +
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
properties.rb 24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
41 channel.should == ANTLR3::DEFAULT_CHANNEL
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
51 channel.should == ANTLR3::DEFAULT_CHANNEL
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
62 channel.should == ANTLR3::DEFAULT_CHANNEL
93 { $channel = HIDDEN }
  /external/libmojo/mojo/edk/embedder/
connection_params.cc 12 ConnectionParams::ConnectionParams(ScopedPlatformHandle channel)
13 : channel_(std::move(channel)) {}
  /external/smali/smali/src/main/java/org/jf/smali/
InvalidToken.java 39 this.channel = smaliParser.ERROR_CHANNEL;
45 this.channel = smaliParser.ERROR_CHANNEL;
  /system/bt/btif/include/
btif_sock_l2cap.h 16 bt_status_t btsock_l2cap_listen(const char* name, int channel, int* sock_fd,
18 bt_status_t btsock_l2cap_connect(const RawAddress* bd_addr, int channel,
btif_sock_rfc.h 35 int channel, int* sock_fd, int flags,
38 const bluetooth::Uuid* uuid, int channel,
  /external/e2fsprogs/lib/ext2fs/
test_io.c 91 static void test_dump_block(io_channel channel,
100 for (i=0, cp = buf; i < channel->block_size; i++, cp++) {
104 for (i=0, cp = buf; i < channel->block_size; i++, cp++) {
114 static errcode_t test_flush(io_channel channel)
119 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
120 data = (struct test_private_data *)channel->private_data;
133 static void test_abort(io_channel channel, unsigned long block)
138 data = (struct test_private_data *) channel->private_data;
140 test_flush(channel);
172 static errcode_t test_open(const char *name, int flags, io_channel *channel)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Token.as 46 function get channel():int;
47 function set channel(channel:int):void;
  /external/autotest/client/cros/audio/
audio_data.py 56 @property channel: The number of channels.
57 @property channel_data: A list of lists containing samples in each channel.
58 E.g., The third sample in the second channel is
63 def __init__(self, binary, channel, sample_format):
69 @param channel: The number of channels.
72 self.channel = channel
73 self.channel_data = [[] for _ in xrange(self.channel)]
83 and shapes them into each channel.
96 n_frames = len(np_array) / self.channel
    [all...]
  /external/webrtc/webrtc/voice_engine/
channel_manager.h 29 class Channel;
39 // To access the underlying Channel, use .channel().
43 // Channel channel_owner = channel_manager.GetChannel(channel_id);
45 // channel_owner.channel()->...;
49 explicit ChannelOwner(Channel* channel);
56 Channel* channel() const { return channel_ref_->channel.get(); function in class:webrtc::voe::ChannelOwner
65 const rtc::scoped_ptr<Channel> channel; member in struct:webrtc::voe::ChannelOwner::ChannelRef
    [all...]
voe_neteq_stats_impl.cc 16 #include "webrtc/voice_engine/channel.h"
48 int VoENetEqStatsImpl::GetNetworkStatistics(int channel,
54 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
55 voe::Channel* channelPtr = ch.channel();
58 "GetNetworkStatistics() failed to locate channel");
66 int channel, AudioDecodingCallStats* stats) const {
71 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
72 voe::Channel* channelPtr = ch.channel();
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
channel_manager.cpp 16 auto channel = channels_.find(handle); local
17 if (channel == channels_.end()) {
18 ALOGE("Invalid channel handle: %d", handle);
20 channels_.erase(channel);
46 auto channel = channels_.find(handle); local
47 return channel != channels_.end() ? &channel->second : nullptr;
  /tools/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/
audio_data.py 65 @property channel: The number of channels.
66 @property channel_data: A list of lists containing samples in each channel.
67 E.g., The third sample in the second channel is
73 def __init__(self, binary, channel, sample_format):
80 channel: The number of channels.
83 self.channel = channel
84 self.channel_data = [[] for _ in range(self.channel)]
93 and shapes them into each channel.
108 n_frames = len(np_array) / self.channel
    [all...]
  /tools/test/connectivity/acts/framework/tests/
SnifferSanityTest.py 39 for channel in self._channels:
41 override_configs={Sniffer.CONFIG_KEY_CHANNEL: channel},
57 for channel in self._channels:
59 override_configs={Sniffer.CONFIG_KEY_CHANNEL: channel},
69 for channel in self._channels:
71 override_configs={Sniffer.CONFIG_KEY_CHANNEL: channel},
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
LightsPreferenceControllerTest.java 100 NotificationChannel channel = new NotificationChannel("", "", IMPORTANCE_DEFAULT); local
101 mController.onResume(appRow, channel, null, null);
109 NotificationChannel channel = new NotificationChannel("", "", IMPORTANCE_DEFAULT); local
110 mController.onResume(appRow, channel, null, null);
117 NotificationChannel channel = new NotificationChannel("", "", IMPORTANCE_LOW); local
118 mController.onResume(appRow, channel, null, null);
125 NotificationChannel channel = local
127 mController.onResume(appRow, channel, null, null);
134 NotificationChannel channel = new NotificationChannel("", "", IMPORTANCE_DEFAULT); local
135 mController.onResume(appRow, channel, null, null)
141 NotificationChannel channel = mock(NotificationChannel.class); local
157 NotificationChannel channel = mock(NotificationChannel.class); local
170 NotificationChannel channel = mock(NotificationChannel.class); local
182 NotificationChannel channel = mock(NotificationChannel.class); local
193 NotificationChannel channel = mock(NotificationChannel.class); local
204 NotificationChannel channel = local
221 NotificationChannel channel = local
    [all...]
  /external/autotest/server/site_tests/audio_LeftRightInternalSpeaker/
audio_LeftRightInternalSpeaker.py 26 1. When a file with audio on the left channel is played, that a sound is
28 2. When a file with audio on the right channel is played, that a sound
33 channel the audio was embedded in in the file.
81 self.process_and_save_data(channel='left')
82 self.validate_recorded_data(channel='left')
88 self.process_and_save_data(channel='right')
89 self.validate_recorded_data(channel='right')
92 def play_and_record(self, host, player, channel):
100 @param channel: Either 'left' or 'right'
107 'before_recording_' + channel)
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowWifiP2pManagerTest.java 23 private WifiP2pManager.Channel channel; field in class:ShadowWifiP2pManagerTest
30 channel = manager.initialize(RuntimeEnvironment.application, RuntimeEnvironment.application.getMainLooper(), mockListener);
31 assertThat(channel).isNotNull();
37 manager.createGroup(channel, testListener);
43 manager.createGroup(channel, null);
54 manager.createGroup(channel, testListener);
68 manager.createGroup(channel, testListener);
71 manager.createGroup(channel, testListener);
78 manager.removeGroup(channel, testListener)
    [all...]

Completed in 627 milliseconds

1 2 3 45 6 7 8 91011>>