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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 60 state.channel = _channel;
80 state.channel = _channel;
100 state.channel = _channel;
120 state.channel = _channel;
140 state.channel = _channel;
160 state.channel = _channel;
181 state.channel = _channel;
202 state.channel = _channel;
223 state.channel = _channel;
244 state.channel = _channel
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 60 state.channel = _channel;
80 state.channel = _channel;
100 state.channel = _channel;
120 state.channel = _channel;
140 state.channel = _channel;
160 state.channel = _channel;
181 state.channel = _channel;
202 state.channel = _channel;
223 state.channel = _channel;
244 state.channel = _channel
    [all...]
  /external/autotest/server/cros/ap_configurators/
ap_spec_unittest.py 23 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL)
30 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL)
37 self.assertEquals(spec.channel, ap_spec.DEFAULT_5GHZ_CHANNEL)
45 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL)
52 self.assertEquals(spec.channel, ap_spec.DEFAULT_5GHZ_CHANNEL)
59 self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL)
63 """Test setting only a 2GHz channel."""
64 spec = ap_spec.APSpec(channel=ap_spec.DEFAULT_2GHZ_CHANNEL)
70 """Test setting only a 5GHz channel."""
71 spec = ap_spec.APSpec(channel=ap_spec.DEFAULT_5GHZ_CHANNEL
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_vm_protos.h 116 * Sets the priority and MIP level for a MIDI channel
120 * channel - MIDI channel number
131 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
170 * channel if possible.
173 * nChannel - the MIDI channel
182 void VMStartNote (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 note, EAS_U8 velocity);
193 * nChannel - synth channel that wants to start a new note
208 void VMCheckKeyGroup (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U16 keyGroup, EAS_U8 channel);
214 * We only play at most 2 of the same note on a MIDI channel
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
op_classes.c 43 static int get_center_80mhz(struct hostapd_hw_modes *mode, u8 channel)
54 * so the center channel is 6 channels away from the start/end.
56 if (channel >= center_channels[i] - 6 &&
57 channel <= center_channels[i] + 6)
65 static enum chan_allowed verify_80mhz(struct hostapd_hw_modes *mode, u8 channel)
71 center_chan = get_center_80mhz(mode, channel);
100 static int get_center_160mhz(struct hostapd_hw_modes *mode, u8 channel)
111 * so the center channel is 14 channels away from the start/end.
113 if (channel >= center_channels[i] - 14 &&
114 channel <= center_channels[i] + 14
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/notification/
VoicemailChannelUtils.java 93 // by using the default channel.
97 "no phone account on a multi-SIM device, using default channel");
105 "phone account is not for a SIM, using default channel");
114 "voicemail channel not found for phone account (possible SIM swap?), creating a new one");
131 * Creates a voicemail channel but doesn't associate it with a SIM. For devices with only one SIM
135 NotificationChannel channel = newChannel(context, GLOBAL_VOICEMAIL_CHANNEL_ID, null); local
136 migrateGlobalVoicemailSoundSettings(context, channel);
137 context.getSystemService(NotificationManager.class).createNotificationChannel(channel);
142 Context context, NotificationChannel channel) {
164 migrateVoicemailSoundSettings(context, channel, handle)
183 NotificationChannel channel = local
221 NotificationChannel channel = local
    [all...]
  /external/mesa3d/src/mesa/main/
format_parser.py 45 class Channel:
46 """Describes a color channel."""
101 """Returns the datatype corresponding to a channel type and size"""
108 channels in another. Each channel in the destination format is
111 * SWIZZLE_X: The first channel in the source format
112 * SWIZZLE_Y: The second channel in the source format
113 * SWIZZLE_Z: The third channel in the source format
114 * SWIZZLE_W: The fourth channel in the source format
117 * SWIZZLE_NONE: No data available for this channel
124 channels maps to the first luminance-alpha channel and the alpha channe
    [all...]
  /frameworks/native/services/vr/bufferhubd/
buffer_hub.cpp 21 using android::pdx::Channel;
69 for (const auto& channel : channels) {
70 if (channel->channel_type() == BufferHubChannel::kProducerType) {
71 BufferHubChannel::BufferInfo info = channel->GetBufferInfo();
106 if (channel->channel_type() == BufferHubChannel::kDetachedBufferType) {
107 BufferHubChannel::BufferInfo info = channel->GetBufferInfo();
154 for (const auto& channel : channels) {
155 if (channel->channel_type() == BufferHubChannel::kProducerQueueType) {
156 BufferHubChannel::BufferInfo info = channel->GetBufferInfo();
187 for (const auto& channel : channels)
232 auto channel = message.GetChannel<BufferHubChannel>(); local
335 std::unique_ptr<DetachedBufferChannel> channel = local
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
hostapd_config.py 24 def ht40_plus_allowed(channel):
26 channel_supported = (channel in hostapd_constants.HT40_ALLOW_MAP[
31 def ht40_minus_allowed(channel):
33 channel_supported = (channel in hostapd_constants.HT40_ALLOW_MAP[
38 def get_frequency_for_channel(channel):
39 """The frequency associated with a given channel number.
42 value: int channel number.
45 int, frequency in MHz associated with the channel.
50 if channel == channel_iter:
53 raise ValueError('Unknown channel value: %r.' % channel
166 def channel(self): member in class:HostapdConfig
171 def channel(self, value): member in class:HostapdConfig
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
meminit_utils.c 45 uint8_t channel,
55 DPF(D_TRN, "Rcvn ch%d rnk%d ln%d : pi=%03X\n", channel, rank, byte_lane, pi_count);
60 reg = B01PTRCTL0 + ((byte_lane >> 1) * DDRIODQ_BL_OFFSET) + (channel * DDRIODQ_CH_OFFSET);
72 reg += (((byte_lane >> 1) * DDRIODQ_BL_OFFSET) + (channel * DDRIODQ_CH_OFFSET));
80 reg = B01DBCTL1 + ((byte_lane >> 1) * DDRIODQ_BL_OFFSET) + (channel * DDRIODQ_CH_OFFSET);
100 training_message(channel, rank, byte_lane);
110 // This function will return the current RCVEN delay on the given channel, rank, byte_lane as an absolute PI count.
113 uint8_t channel,
126 reg = B01PTRCTL0 + ((byte_lane >> 1) * DDRIODQ_BL_OFFSET) + (channel * DDRIODQ_CH_OFFSET);
138 reg += (((byte_lane >> 1) * DDRIODQ_BL_OFFSET) + (channel * DDRIODQ_CH_OFFSET));
    [all...]
  /external/webrtc/webrtc/common_audio/vad/
vad_core.c 126 int channel, k; local
177 // here defined as |channel|.
178 for (channel = 0; channel < kNumChannels; channel++) {
179 // For each channel we model the probability with a GMM consisting of
185 gaussian = channel + k * kNumChannels;
188 tmp1_s32 = WebRtcVad_GaussianProbability(features[channel],
197 tmp1_s32 = WebRtcVad_GaussianProbability(features[channel],
231 (int32_t) (log_likelihood_ratio * kSpectrumWeight[channel]);
    [all...]
  /bionic/libc/kernel/uapi/linux/
stm.h 25 __u16 channel; member in struct:stp_policy_id
  /external/aac/libAACdec/src/
FDK_delay.h 113 USHORT delay; /*!< Delay required in samples (per channel). */
121 * \param delay Required delay value in samples per channel.
130 * \brief Apply delay to one channel (non-interleaved storage assumed).
136 * \param channel Index of current channel (0 <= channel < num_channels).
141 const UINT frame_length, const UCHAR channel);
  /external/kernel-headers/original/uapi/linux/
stm.h 28 * @channel: first assigned channel
34 * fills out @master, @channel and @width.
39 __u16 channel; member in struct:stp_policy_id
  /external/libmojo/mojo/edk/embedder/
connection_params.h 18 explicit ConnectionParams(ScopedPlatformHandle channel);
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_service.proto 29 message Channel {
43 Channel channel = 2;
49 Channel channel = 2;
  /external/walt/ios/WALT/
MIDIMessage.h 20 * A MIDI channel number.
22 * Note that the first channel is '1'.
28 // Channel messages
61 * describe a channel message.
72 /** Returns the MIDI status byte for a message type sent to a particular channel. */
73 MIDIByte MIDIStatusByte(MIDIMessageType type, MIDIChannel channel);
75 /** Creates a complete MIDI message packet for a given message type, channel, and its body. */
76 NSData *MIDIMessageCreate(MIDIMessageType type, MIDIChannel channel, NSData *body);
79 NSData *MIDIMessageCreateSimple1(MIDIMessageType type, MIDIChannel channel, MIDIByte first);
83 MIDIChannel channel,
    [all...]
  /external/webrtc/webrtc/modules/video_processing/test/
writeYUV420file.m 15 % Write U channel
18 % Write V channel
  /external/webrtc/webrtc/p2p/base/
p2ptransport.h 28 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
  /external/webrtc/webrtc/test/channel_transport/
channel_transport.cc 30 int channel)
31 : channel_(channel),
34 socket_transport_ = UdpTransport::Create(channel, socket_threads);
35 int registered = voe_network_->RegisterExternalTransport(channel,
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 99 void SoundPool::addToRestartList(SoundChannel* channel)
103 mRestart.push_back(channel);
108 void SoundPool::addToStopList(SoundChannel* channel)
112 mStop.push_back(channel);
132 SoundChannel* channel; local
133 ALOGV("Getting channel from stop list");
135 channel = *iter;
138 if (channel != 0) {
140 channel->stop();
147 SoundChannel* channel; local
252 SoundChannel* channel; local
288 SoundChannel* channel = NULL; local
341 SoundChannel* channel = findChannel(channelID); local
352 SoundChannel* channel = &mChannelPool[i]; local
361 SoundChannel* channel = findChannel(channelID); local
385 SoundChannel* channel = &mChannelPool[i]; local
394 SoundChannel* channel = findChannel(channelID); local
407 SoundChannel* channel = findChannel(channelID); local
417 SoundChannel* channel = findChannel(channelID); local
427 SoundChannel* channel = findChannel(channelID); local
437 SoundChannel* channel = findChannel(channelID); local
873 SoundChannel* channel = static_cast<SoundChannel*>((void *)((unsigned long)user & ~1)); local
    [all...]
  /frameworks/native/libs/ui/tests/
GraphicBuffer_test.cpp 46 pdx::LocalChannelHandle channel{nullptr, 1234};
47 EXPECT_TRUE(channel.valid());
49 std::unique_ptr<DetachedBufferHandle> handle = DetachedBufferHandle::Create(std::move(channel));
50 EXPECT_FALSE(channel.valid());
  /packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
EpgContract.java 49 /** The delimiter between channel numbers. */
67 for (String channel : channels) {
68 channel = channel.replace(",", ".");
72 result.append(channel);
94 /** The MIME type of a single TV channel. */
119 * The channel numbers that are supported by this lineup that is displayed to the user.
121 * <p>Comma separated value of channel numbers
146 /** The MIME type of a single TV channel. */
177 * The ID of the TV input service that provides this TV channel
    [all...]
  /packages/apps/TV/src/com/android/tv/analytics/
StubTracker.java 21 import com.android.tv.data.api.Channel;
42 public void sendChannelViewStart(Channel channel, boolean tunedByRecommendation) {}
45 public void sendChannelTuneTime(Channel channel, long durationMs) {}
48 public void sendChannelViewStop(Channel channel, long durationMs) {}
96 public void sendChannelVideoUnavailable(Channel channel, int reason) {}
Tracker.java 20 import com.android.tv.data.api.Channel;
60 * Sends tracking information for starting to view a channel.
62 * @param channel the current channel
63 * @param tunedByRecommendation True, if the channel was tuned by the recommendation.
65 void sendChannelViewStart(Channel channel, boolean tunedByRecommendation);
68 * Sends tracking information for tuning to a channel.
70 * @param channel The channel that was being tuned
    [all...]

Completed in 896 milliseconds

1 2 3 4 5 6 7 8 91011>>