Searched refs:load_no (Results 1 – 2 of 2) sorted by relevance
/external/gemmlowp/meta/generators/ |
D | neon_emitter_64.py | 807 def EmitVLoad(self, load_no, load_type, destination, source): argument 808 self.EmitVLoadA(load_no, load_type, [destination], source) 810 def EmitVLoadA(self, load_no, load_type, destinations, source): argument 814 self.EmitVLoadAPostIncrement(load_no, load_type, destinations, source, 817 self.EmitVLoadAPostIncrement(load_no, load_type, destinations, source, 820 def EmitVLoadAPostIncrement(self, load_no, load_type, destinations, source, argument 826 self.EmitOp3('ld%dr' % load_no, destination, source, increment) 828 self.EmitOp2('ld%dr' % load_no, destination, source) 833 self.EmitOp3('ld%d' % load_no, destination_list, source, increment) 835 self.EmitOp2('ld%d' % load_no, destination_list, source) [all …]
|
D | neon_emitter.py | 404 def EmitVLoad(self, load_no, load_type, destination, source): argument 405 self.EmitVLoadA(load_no, load_type, [destination], source) 407 def EmitVLoadA(self, load_no, load_type, destinations, source): argument 408 self.EmitOp2('vld%d.%d' % (load_no, load_type), 496 def EmitVLoadAllLanes(self, load_no, load_type, destination, source): argument 503 self.EmitVLoadA(load_no, load_type, destinations, source) 505 def EmitVLoadOffset(self, load_no, load_type, destination, source, offset): argument 506 self.EmitVLoadOffsetA(load_no, load_type, [destination], source, offset) 508 def EmitVLoadOffsetA(self, load_no, load_type, destinations, source, offset): argument 510 self.EmitOp3('vld%d.%d' % (load_no, load_type),
|