Lines Matching refs:Memory
55 class Memory {
58 Memory(ANeuralNetworksMemory* memory) : mMemory(memory) {} in Memory() function
60 Memory(size_t size, int protect, int fd, size_t offset) { in Memory() function
65 Memory(AHardwareBuffer* buffer) { in Memory() function
70 virtual ~Memory() { ANeuralNetworksMemory_free(mMemory); } in ~Memory()
75 Memory(const Memory&) = delete;
76 Memory& operator=(const Memory&) = delete;
81 Memory(Memory&& other) { *this = std::move(other); } in Memory() function
82 Memory& operator=(Memory&& other) {
194 void setOperandValueFromMemory(uint32_t index, const Memory* memory, uint32_t offset, in setOperandValueFromMemory()
409 Result setInputFromMemory(uint32_t index, const Memory* memory, uint32_t offset,
427 Result setOutputFromMemory(uint32_t index, const Memory* memory, uint32_t offset,