D | neon_emitter.py | 528 def EmitVStore(self, store_no, store_type, source, destination): argument 529 self.EmitVStoreA(store_no, store_type, [source], destination) 531 def EmitVStoreA(self, store_no, store_type, sources, destination): argument 532 self.EmitOp2('vst%d.%d' % (store_no, store_type), 536 store_type, argument 541 bits_to_store = store_type * elem_count 617 def EmitVStoreE(self, store_type, count, source, destination, alignment=None): argument 618 self.EmitVStoreAE(store_type, count, [source], destination, alignment) 620 def EmitVStoreOffset(self, store_no, store_type, source, destination, offset): argument 621 self.EmitVStoreOffsetA(store_no, store_type, [source], destination, offset) [all …]
|