HomeSort by: relevance | last modified time | path
    Searched refs:Channel (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
RemoteJITUtils.cpp 51 std::unique_ptr<RPCChannel> Channel,
58 std::unique_ptr<RPCChannel> Channel;
67 ExecutionSession &ES, std::unique_ptr<RPCChannel> Channel,
71 Channel(std::move(Channel)), Endpoint(std::move(Endpoint)) {
250 auto Channel =
253 std::make_unique<RemoteTargetProcessControl::RPCEndpoint>(*Channel, true);
255 TPC = std::make_unique<RemoteTargetProcessControl>(ES, std::move(Channel),
330 auto Channel = std::make_unique<RPCChannel>(*SockFD, *SockFD);
332 std::make_unique<RemoteTargetProcessControl::RPCEndpoint>(*Channel, true)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 57 shared::FDRawByteChannel Channel(InFD, OutFD);
60 JITServer Server(Channel, SymbolLookup, RegisterEHFrames, DeregisterEHFrames);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600RegisterInfo.cpp 24 unsigned R600RegisterInfo::getSubRegFromChannel(unsigned Channel) {
32 assert(Channel < array_lengthof(SubRegFromChannelTable));
33 return SubRegFromChannelTable[Channel];
R600RegisterInfo.h 25 /// \returns the sub reg enum value for the given \p Channel
27 static unsigned getSubRegFromChannel(unsigned Channel);
33 /// get the HW encoding for a register's channel.
R600ISelLowering.h 95 unsigned &Channel, unsigned &PtrIncr) const;
R600InstrInfo.h 148 /// An instruction group can only access 2 channel pair (either [XY] or [ZW])
220 /// \p Channel
225 /// and \p Channel.
226 unsigned calculateIndirectAddress(unsigned RegIndex, unsigned Channel) const;
R600InstrInfo.cpp 996 unsigned Channel) const {
997 assert(Channel == 0);
1016 unsigned Channel = MI.getOperand(ChanOpIdx).getImm();
1017 unsigned Address = calculateIndirectAddress(RegIndex, Channel);
1030 unsigned Channel = MI.getOperand(ChanOpIdx).getImm();
1031 unsigned Address = calculateIndirectAddress(RegIndex, Channel);
1038 calculateIndirectAddress(RegIndex, Channel),
1060 RI.getHWRegChan(MI.getOperand(1).getReg())); // Channel
1105 default: llvm_unreachable("Invalid Channel");
1137 default: llvm_unreachable("Invalid Channel");
    [all...]
SIRegisterInfo.h 53 /// \returns the sub reg enum value for the given \p Channel
55 static unsigned getSubRegFromChannel(unsigned Channel, unsigned NumRegs = 1);
SIRegisterInfo.cpp 427 unsigned SIRegisterInfo::getSubRegFromChannel(unsigned Channel,
432 assert(Channel < SubRegFromChannelTable[NumRegIndex - 1].size());
433 return SubRegFromChannelTable[NumRegIndex - 1][Channel];
R600ISelLowering.cpp 1022 unsigned &Channel,
1027 Channel = 0;
1035 Channel = ElemIdx % 2;
1043 Channel = ElemIdx;
SIInstrInfo.cpp 622 unsigned Channel = RI.getChannelFromSubReg(SubIdx);
623 SubIdx = RI.getSubRegFromChannel(Channel, 2);
5206 unsigned Channel = 0;
5209 .addImm(TRI->getSubRegFromChannel(Channel++));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.h 76 std::unique_ptr<LLVMJITLinkChannel> Channel,
80 Channel(std::move(Channel)), Endpoint(std::move(Endpoint)) {
103 std::unique_ptr<LLVMJITLinkChannel> Channel;
llvm-jitlink.cpp 653 // Return an RPC channel connected to our end of the pipes.
655 auto Channel = std::make_unique<shared::FDRawByteChannel>(
657 auto Endpoint = std::make_unique<LLVMJITLinkRPCEndpoint>(*Channel, true);
666 std::move(SSP), std::move(Channel), std::move(Endpoint),
751 auto Channel = std::make_unique<shared::FDRawByteChannel>(*SockFD, *SockFD);
752 auto Endpoint = std::make_unique<LLVMJITLinkRPCEndpoint>(*Channel, true);
761 std::move(SSP), std::move(Channel), std::move(Endpoint),
  /src/sys/arch/atari/atari/
vectors.s 187 VECTOR(badtrap) | 96: SCC Tx empty channel B
189 VECTOR(badtrap) | 98: SCC Ext./Status Channel B
191 VECTOR(badtrap) | 100: SCC Rx Channel B
193 VECTOR(badtrap) | 102: SCC Special Rx cond. Channel B
195 VECTOR(badtrap) | 104: SCC Tx empty channel A
197 VECTOR(badtrap) | 106: SCC Ext./Status Channel A
199 VECTOR(badtrap) | 108: SCC Rx Channel A
201 VECTOR(badtrap) | 110: SCC Special Rx cond. Channel A
  /src/sys/dev/usb/
if_atureg.h 273 uByte Channel;
292 uByte Channel;
312 uByte channel; member in struct:atu_cmd_join
327 uByte Channel;
if_atu.c 484 Request.Channel = (uint8_t)sc->atu_desired_channel;
486 Request.Channel = ATU_DEFAULT_CHANNEL;
545 Scan.Channel = (uint8_t)sc->atu_desired_channel;
547 Scan.Channel = sc->atu_channel;
549 ic->ic_curchan = &ic->ic_channels[Scan.Channel];
554 /* the time we stay on one channel */
656 cmd.Channel = (uint8_t)sc->atu_desired_channel;
658 cmd.Channel = sc->atu_channel;
800 join.channel = ieee80211_chan2ieee(&sc->sc_ic, node->ni_chan);
1238 uint8_t mode, channel; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 703 /// Channel is the ChannelT instance to communicate on. It is assumed that
704 /// the channel is ready to be read from and written to.
706 Create(shared::RawByteChannel &Channel, ExecutionSession &ES) {
709 new OrcRemoteTargetClient(Channel, ES, Err));
808 OrcRemoteTargetClient(shared::RawByteChannel &Channel, ExecutionSession &ES,
810 : shared::SingleThreadedRPCEndpoint<shared::RawByteChannel>(Channel,
OrcRemoteTargetServer.h 57 OrcRemoteTargetServer(ChannelT &Channel, SymbolLookupFtor SymbolLookup,
60 : shared::SingleThreadedRPCEndpoint<shared::RawByteChannel>(Channel,
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/
RPCUtils.h 13 // communications channel.
403 // channel, with the given sequence number.
413 // Send an empty response message on the given channel to indicate that
539 // Serialize arguments to the channel.
545 // Deserialize arguments from the channel.
646 // Handle the result by deserializing it from the channel then passing it
709 // Handle the result by deserializing it from the channel then passing it
743 // Handle the result by deserializing it from the channel then passing it
979 /// Construct an RPC instance on a channel.
994 /// Negotiate a function id for Func with the other end of the channel
    [all...]
  /src/external/gpl3/autoconf/dist/lib/Autom4te/
ChannelDefs.pm 23 Autom4te::ChannelDefs - channel definitions for Automake and helper functions
63 C<Autom4te::Channel::msg>. For some of them we list a shorthand
70 Fatal errors. Use C<&fatal> to send messages over this channel.
74 Common errors. Use C<&error> to send messages over this channel.
90 Internal errors. Use C<&prog_error> to send messages over this channel.
135 # if you add or change a warning channel.
188 Signal a programming error (on channel C<automake>),
241 If C<$CATEGORY> is C<mumble>, turn on channel C<mumble>.
  /src/sys/arch/sh3/sh3/
exception_vector.S 112 mov.w r2, @r1 /* disable UBC channel A */
131 !! We are returning from DDB to do single step. Channel A in
  /src/sys/external/bsd/acpica/dist/include/
acrestyp.h 199 UINT8 Channel;
  /src/sbin/efi/
devpath3.c 649 18 Fibre Channel [RFC4338]

Completed in 81 milliseconds