HomeSort by relevance Sort by last modified time
    Searched defs:Channel (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /external/tensorflow/tensorflow/compiler/xla/service/
channel_tracker.h 42 // communicate via each channel are destructed.
47 // A struct that keeps the current status of each channel. has_sender and
50 // as Send or Recv instructions using the channel are requested.
51 struct Channel {
56 // Creates a new Channel object and returns the corresponding
60 // Informs that the given channel handle is used for a Send operation.
64 // Informs that the given channel handle is used for a Recv operation.
79 // Guards the channel mapping.
82 // The next sequence number to assign to a channel.
86 // Channel object
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
Channel.java 35 * <p> A channel represents an open connection to an entity such as a hardware
40 * <p> A channel is either open or closed. A channel is open upon creation,
41 * and once closed it remains closed. Once a channel is closed, any attempt to
43 * to be thrown. Whether or not a channel is open may be tested by invoking
56 public interface Channel extends Closeable {
59 * Tells whether or not this channel is open.
61 * @return <tt>true</tt> if, and only if, this channel is open
66 * Closes this channel.
68 * <p> After a channel is closed, any further attempt to invoke I/
    [all...]
  /external/mesa3d/src/intel/isl/
gen_format_layout.py 76 <% channel = getattr(format, mask, None) %>\\
77 % if channel.type is not None:
78 .${mask} = { ISL_${channel.type}, ${channel.size} },
95 class Channel(object):
96 """Class representing a Channel.
144 self.r = Channel(line[5])
145 self.g = Channel(line[6])
146 self.b = Channel(line[7])
147 self.a = Channel(line[8]
    [all...]
  /external/tensorflow/tensorflow/core/platform/
subprocess.h 21 // Channel identifiers.
22 enum Channel {
28 // Specify how a channel is handled.
34 // Make a pipe to the channel. It is used in the Communicate() method to
  /external/webrtc/webrtc/modules/audio_coding/test/
Channel.cc 11 #include "webrtc/modules/audio_coding/test/Channel.h"
22 int32_t Channel::SendData(FrameType frameType,
52 rtpInfo.type.Audio.channel = 1;
89 rtpInfo.type.Audio.channel = 1;
93 rtpInfo.type.Audio.channel = 2;
130 void Channel::CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize) {
225 Channel::Channel(int16_t chID)
267 Channel::~Channel() {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SaveMemoryConfig/
SaveMemoryConfig.c 61 UINT8 Channel, Slot;
124 for (Channel = 0; Channel < CH_NUM; Channel ++){
126 MemInfoProtocol->MemInfoData.dimmSize[Slot + (Channel * DIMM_NUM)] = PlatformInfoHobPtr->MemData.DimmSize[Slot + (Channel * DIMM_NUM)];
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 41 * and tokens are prefiltered for a certain channel (the parser will only
42 * see these tokens and cannot change the filter channel number during the
50 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
60 public CommonTokenStream(ITokenSource tokenSource, int channel)
62 this._channel = channel;
65 public int Channel {
82 /** Always leave p on an on-channel token. */
88 while (_tokens[_p].Channel != _channel) {
102 // skip off-channel tokens
122 // skip off-channel token
    [all...]
IToken.cs 59 int Channel {
ClassicToken.cs 49 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
63 channel = oldToken.Channel;
71 public ClassicToken(int type, string text, int channel) {
74 this.channel = channel;
114 public int Channel {
116 return channel;
119 channel = value;
160 if (channel > 0)
    [all...]
CommonToken.cs 43 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) {
74 this.channel = channel;
81 this.channel = TokenChannels.Default;
91 channel = oldToken.Channel;
151 public int Channel {
153 return channel;
156 channel = value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
IToken.cs 65 int Channel
ClassicToken.cs 51 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
67 channel = oldToken.Channel;
76 public ClassicToken( int type, string text, int channel )
80 this.channel = channel;
132 public int Channel
136 return channel;
140 channel = value;
194 if ( channel > 0
    [all...]
CommonToken.cs 45 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
79 this.channel = channel;
87 this.channel = TokenChannels.Default;
98 channel = oldToken.Channel;
170 public int Channel
174 return channel;
178 channel = value
    [all...]
  /external/skia/include/core/
SkICC.h 72 struct Channel {
78 Channel fRed;
79 Channel fGreen;
80 Channel fBlue;
  /external/skqp/include/core/
SkICC.h 72 struct Channel {
78 Channel fRed;
79 Channel fGreen;
80 Channel fBlue;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.h 37 // Adds |length| zeros to the beginning of each channel. Removes
45 // Inserts |length| zeros into each channel at index |position|. The size of
47 // elements in each channel will be purged.
50 // Overwrites each channel in this SyncBuffer with values taken from
53 // channel. The size of the SyncBuffer is kept constant. That is, if |length|
66 // Reads |requested_len| samples from each channel and writes them interleaved
79 const AudioVector& Channel(size_t n) const { return *channels_[n]; }
80 AudioVector& Channel(size_t n) { return *channels_[n]; }
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 100 public int Channel
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.hpp 78 CHANNEL_R = (1u<<0), // Has "R" (0) channel
79 CHANNEL_G = (1u<<1), // Has "G" (1) channel
80 CHANNEL_B = (1u<<2), // Has "B" (2) channel
81 CHANNEL_A = (1u<<3), // Has "A" (3) channel
91 struct Channel
103 Channel channels[MAX_CHANNELS];
  /frameworks/base/core/java/android/se/omapi/
Channel.java 34 * Instances of this class represent an ISO/IEC 7816-4 channel opened to a
35 * Secure Element. It can be either a logical channel or the basic channel. They
42 public final class Channel implements java.nio.channels.Channel {
44 private static final String TAG = "OMAPI.Channel";
50 Channel(@NonNull SEService service, @NonNull Session session,
51 @NonNull ISecureElementChannel channel) {
52 if (service == null || session == null || channel == null) {
57 mChannel = channel;
    [all...]
  /external/libmojo/mojo/edk/system/
channel.cc 5 #include "mojo/edk/system/channel.h"
31 IsAlignedForChannelMessage(sizeof(Channel::Message::LegacyHeader)),
34 static_assert(IsAlignedForChannelMessage(sizeof(Channel::Message::Header)),
37 static_assert(sizeof(Channel::Message::LegacyHeader) == 8,
40 static_assert(offsetof(Channel::Message::LegacyHeader, num_bytes) ==
41 offsetof(Channel::Message::Header, num_bytes),
43 static_assert(offsetof(Channel::Message::LegacyHeader, message_type) ==
44 offsetof(Channel::Message::Header, message_type),
55 Channel::Message::Message(size_t payload_size, size_t max_handles)
64 Channel::Message::Message(size_t payload_size
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/
service.h 41 // System message sent when a new client channel is open.
43 // System message sent when a channel is closed.
54 * Base class of service-side per-channel context classes.
56 class Channel : public std::enable_shared_from_this<Channel> {
58 Channel() {}
59 virtual ~Channel() {}
62 * Utility to get a shared_ptr reference from the channel context pointer.
64 static std::shared_ptr<Channel> GetFromMessageInfo(const MessageInfo& info);
187 * Update the channel event bits with the given clear and set masks
    [all...]
  /packages/apps/SecureElement/src/com/android/se/
Channel.java 40 * Represents a Channel opened with the Secure Element
42 public class Channel implements IBinder.DeathRecipient {
44 private final String mTag = "SecureElement-Channel";
56 Channel(SecureElementSession session, Terminal terminal, int channelNumber,
78 * Close this channel if the client died.
90 * Closes the channel.
95 Log.i(mTag, "Close basic channel - Select without AID ...");
115 throw new IllegalStateException("Channel is closed");
121 throw new SecurityException("Channel access not set");
134 throw new SecurityException("MANAGE CHANNEL command not allowed")
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
AppLinkCardView.java 38 import com.android.tv.data.api.Channel;
60 private Channel mChannel;
94 Channel newChannel = item.getChannel();
119 case Channel.APP_LINK_TYPE_CHANNEL:
155 Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON,
159 this, mChannel, Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON));
194 case Channel.APP_LINK_TYPE_APP:
251 Channel.LOAD_IMAGE_TYPE_APP_LINK_POSTER_ART,
255 this, mChannel, Channel.LOAD_IMAGE_TYPE_APP_LINK_POSTER_ART));
264 AppLinkCardView cardView, final Channel channel, final int type)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
IdeBus.h 85 EFI_IDE_CHANNEL Channel;
512 @param IdeChannel Pointer to the Ide Channel number. Primary or secondary.

Completed in 567 milliseconds

1 2 3 4 5 6 7 8