Searched refs:machine (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/ml/bordeaux/learning/multiclass_pa/native/
H A Dutil.cpp35 MulticlassPA* machine = NULL; local
37 machine = reinterpret_cast<MulticlassPA*>(
40 machine = reinterpret_cast<MulticlassPA*>(
43 machine = new MulticlassPA(num_classes, num_dimensions, aggressiveness);
45 machine = reinterpret_cast<MulticlassPA*>(
50 return machine;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GNUInfo.h22 uint32_t machine() const { return llvm::ELF::EM_386; } function in class:mcld::X86_32GNUInfo
37 uint32_t machine() const { return llvm::ELF::EM_X86_64; } function in class:mcld::X86_64GNUInfo
H A DX86LDBackend.h37 uint32_t machine() const;
49 /// dynamic - the dynamic section of the target machine.
53 /// dynamic - the dynamic section of the target machine.
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpDeclinePacket.java60 * Informs the state machine of the arrival of a DECLINE packet.
62 public void doNextOp(DhcpStateMachine machine) { argument
63 machine.onDeclineReceived(mClientMac, mRequestedIp);
H A DDhcpDiscoverPacket.java64 * Informs the state machine of the arrival of a DISCOVER packet.
66 public void doNextOp(DhcpStateMachine machine) { argument
68 machine.onDiscoverReceived(mBroadcast, mTransId, mClientMac,
H A DDhcpInformPacket.java67 * Informs the state machine of the arrival of an INFORM packet. Not
70 public void doNextOp(DhcpStateMachine machine) { argument
73 machine.onInformReceived(mTransId, mClientMac, clientRequest,
H A DDhcpNakPacket.java67 * Notifies the specified state machine of the newly-arrived NAK packet.
69 public void doNextOp(DhcpStateMachine machine) { argument
70 machine.onNakReceived();
H A DDhcpRequestPacket.java76 * Notifies the specified state machine of the REQUEST packet parameters.
78 public void doNextOp(DhcpStateMachine machine) { argument
83 machine.onRequestReceived(mBroadcast, mTransId, mClientMac,
H A DDhcpAckPacket.java103 * Notifies the specified state machine of the ACK packet parameters.
105 public void doNextOp(DhcpStateMachine machine) { argument
106 machine.onAckReceived(mYourIp, mSubnetMask, mGateway, mDnsServers,
H A DDhcpOfferPacket.java94 * Notifies the state machine of the OFFER packet parameters.
96 public void doNextOp(DhcpStateMachine machine) { argument
97 machine.onOfferReceived(mBroadcast, mTransId, mClientMac, mYourIp,
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GNUInfo.h22 uint32_t machine() const { return llvm::ELF::EM_AARCH64; } function in class:mcld::AArch64GNUInfo
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGNUInfo.h22 uint32_t machine() const { return llvm::ELF::EM_ARM; } function in class:mcld::ARMGNUInfo
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGNUInfo.h30 uint32_t machine() const { return llvm::ELF::EM_HEXAGON; } function in class:mcld::HexagonGNUInfo
H A DHexagonLDBackend.h38 uint32_t machine() const;
56 /// dynamic - the dynamic section of the target machine.
60 /// dynamic - the dynamic section of the target machine.
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGNUInfo.h25 uint32_t machine() const;
H A DMipsGNUInfo.cpp32 uint32_t MipsGNUInfo::machine() const function in class:mcld::MipsGNUInfo
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h44 ELFSectionProgBits(int machine) { argument
45 switch(machine) {
H A DELFHeader.h32 static char const *getMachineStr(uint16_t machine);
H A DELFSymbol.h112 void *getAddress(int machine, bool autoAlloc = true) const;
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionProgBits.hxx36 int machine = owner->getHeader()->getMachine(); local
37 ELFSectionProgBits *secp = new ELFSectionProgBits(machine);
H A DELFSymbol.hxx122 void *ELFSymbol_CRTP<Bitwidth>::getAddress(int machine, bool autoAlloc) const { argument
203 if (machine == EM_MIPS && strcmp(getName(), "_gp_disp") == 0) // OK for MIPS
/frameworks/rs/cpu_ref/linkloader/lib/
H A DELFHeader.cpp81 char const *ELFHeaderHelperMixin::getMachineStr(uint16_t machine) { argument
82 switch (machine) {
83 default: return "No machine or unknown";
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h29 /// The return value of machine() it the same as e_machine in the ELF header
30 virtual uint32_t machine() const = 0;
57 /// commonPageSize - the common page size of the target machine, and we set it
61 /// abiPageSize - the abi page size of the target machine, and we set it to 4K
/frameworks/rs/cpu_ref/linkloader/android/
H A Dlibrsloader.cpp173 int machine = object->getHeader()->getMachine(); local
175 return symbol->getAddress(machine, false);
/frameworks/rs/cpu_ref/linkloader/
H A Dmain.cpp160 int machine = object->getHeader()->getMachine(); local
162 void *main_addr = symtab->getByName("main")->getAddress(machine);
193 llvm::errs() << "ERROR: Unknown machine class.\n";

Completed in 1025 milliseconds

12