Searched refs:machine (Results 1 - 25 of 26) 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/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.java104 * Notifies the specified state machine of the ACK packet parameters.
106 public void doNextOp(DhcpStateMachine machine) { argument
107 machine.onAckReceived(mYourIp, mSubnetMask, mGateway, mDnsServers,
H A DDhcpOfferPacket.java95 * Notifies the state machine of the OFFER packet parameters.
97 public void doNextOp(DhcpStateMachine machine) { argument
98 machine.onOfferReceived(mBroadcast, mTransId, mClientMac, mYourIp,
/frameworks/compile/linkloader/include/
H A DELFSectionProgBits.h44 ELFSectionProgBits(int machine) { argument
45 switch(machine) {
H A DELFHeader.h33 static char const *getMachineStr(uint16_t machine);
H A DELFSymbol.h114 void *getAddress(int machine, bool autoAlloc = true) const;
/frameworks/compile/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/compile/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/linkloader/android/
H A Dlibrsloader.cpp122 int machine = object->getHeader()->getMachine(); local
124 return symbol->getAddress(machine, false);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h64 uint32_t machine() const;
81 /// abiPageSize - the abi page size of the target machine
94 /// dynamic - the dynamic section of the target machine.
98 /// dynamic - the dynamic section of the target machine.
H A DMipsLDBackend.cpp160 uint32_t MipsGNULDBackend::machine() const function in class:mcld::MipsGNULDBackend
226 /// dynamic - the dynamic section of the target machine.
236 /// dynamic - the dynamic section of the target machine.
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h77 uint32_t machine() const;
106 /// dynamic - the dynamic section of the target machine.
110 /// dynamic - the dynamic section of the target machine.
H A DX86LDBackend.cpp92 /// dynamic - the dynamic section of the target machine.
102 /// dynamic - the dynamic section of the target machine.
598 uint32_t X86GNULDBackend::machine() const function in class:X86GNULDBackend
/frameworks/compile/linkloader/
H A Dmain.cpp162 int machine = object->getHeader()->getMachine(); local
164 void *main_addr = symtab->getByName("main")->getAddress(machine);
195 llvm::errs() << "ERROR: Unknown machine class.\n";
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.h110 uint32_t machine() const function in class:mcld::ARMGNULDBackend
144 /// dynamic - the dynamic section of the target machine.
148 /// dynamic - the dynamic section of the target machine.
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h141 /// The return value of machine() it the same as e_machine in the ELF header*/
142 virtual uint32_t machine() const = 0;
248 /// commonPageSize - the common page size of the target machine, and we set it
253 /// abiPageSize - the abi page size of the target machine, and we set it to 4K
372 /// dynamic - the dynamic section of the target machine.
375 /// dynamic - the dynamic section of the target machine.
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp30 #include <machine/cpu-features.h>
/frameworks/compile/mclinker/lib/LD/
H A DELFWriter.cpp71 header->e_machine = pBackend.machine();
122 header->e_machine = pBackend.machine();
/frameworks/rs/driver/
H A DrsdIntrinsics_Convolve.S19 #include <machine/cpu-features.h>
20 #include <machine/asm.h>

Completed in 1673 milliseconds

12