Home
last modified time | relevance | path

Searched refs:array (Results 1 – 10 of 10) sorted by relevance

/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/
Dscanner.py42 array: None | tuple[str, int]
50 self.array = None
Dmemory.py198 ast.VariableDecl('memory', ast.Type.byte.array(), access=PRIVATE)
208 args = ast.ArgDecl('memory', ast.Type.byte.array())
212 lhs = ast.HardExpr('this.memory', ty=ast.Type.byte.array()),
213 rhs = ast.HardExpr('memory', ty=ast.Type.byte.array())
232 fields = ast.VariableDecl('memory', ast.Type.byte.array(), access=PRIVATE),
276 lhs = ast.HardExpr('memory', ast.Type.byte.array()),
/Renode-v1.15.3-c57714d/scripts/pydev/
Dnuvoton_npcx9_bootrom.py8 from array import array
56 header = FirmwareHeader.from_buffer(array("B", header_data))
/Renode-v1.15.3-c57714d/tests/unit-tests/
Darray_memory.robot10 ... // Register array memory and alias as ddr
59 …d memory was not loaded with code and therefore that program executes from the array memory overlay
Dbig-endian-watchpoint.robot23 …sbus WriteDoubleWord 0x00000000 0x03100000`, the memory content as a byte array is `[0x03, 0x10, 0…
/Renode-v1.15.3-c57714d/tests/platforms/
DLeon3.robot41 …sbus WriteDoubleWord 0x00000000 0x03100000`, the memory content as a byte array is `[0x03, 0x10, 0…
DZedboard.robot210 # String descriptor can be read by `ufs-utils` tool only as a raw byte array, so for the purpose of…
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/
DREADME.md140 nodes. Currently only memories that contain one register (array) are supported.
/Renode-v1.15.3-c57714d/tools/tlib_helper/
Dgdbscript.py149 return gdb.Value(data, gdb.lookup_type('uint8_t').array(length - 1))
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/csharp/
Dast.py417 def array(self) -> 'Type': member in Type