Home
last modified time | relevance | path

Searched refs:address_t (Results 1 – 25 of 399) sorted by relevance

12345678910>>...16

/dports/devel/redasm/REDasm-2.1.1/LibREDasm/redasm/disassembler/listing/
H A Dlistingdocument.h51 bool goTo(address_t address);
65 void empty(address_t address);
67 void entry(address_t address, tag_t tag = 0);
72 void tableItem(address_t address, address_t startaddress, u64 idx, tag_t tag = 0);
89 Segment* segment(address_t address);
102 void eraseSymbol(address_t address);
103 void setDocumentEntry(address_t address);
118 Symbol *symbol(address_t address) const;
126 void pop(address_t address, size_t type);
172 address_t entry = 0;
[all …]
H A Dlistingdocument.cpp38 bool ListingDocumentType::goTo(address_t address) in goTo()
129 Symbol* ListingDocumentType::functionStartSymbol(address_t address) in functionStartSymbol()
169 void ListingDocumentType::type(address_t address, const std::string &s) in type()
304 void ListingDocumentType::table(address_t address, u64 count, tag_t tag) in table()
310 void ListingDocumentType::tableItem(address_t address, address_t startaddress, u64 idx, tag_t tag) in tableItem()
326 void ListingDocumentType::entry(address_t address, tag_t tag) in entry()
333 void ListingDocumentType::eraseSymbol(address_t address) in eraseSymbol()
339 void ListingDocumentType::setDocumentEntry(address_t address) in setDocumentEntry()
348 Segment *ListingDocumentType::segment(address_t address) in segment()
382 InstructionPtr ListingDocumentType::instruction(address_t address) in instruction()
[all …]
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/redasm/disassembler/
H A Ddisassemblerapi.h31 virtual std::deque<ListingItem*> getCalls(address_t address) = 0;
35 virtual ReferenceSet getTargets(address_t address) const = 0;
37 virtual u64 getTargetsCount(address_t address) const = 0;
38 virtual u64 getReferencesCount(address_t address) const = 0;
39 virtual void popTarget(address_t address, address_t pointedby) = 0;
40 virtual void pushTarget(address_t address, address_t pointedby) = 0;
41 virtual void pushReference(address_t address, address_t refby) = 0;
42 virtual void checkLocation(address_t fromaddress, address_t address) = 0;
43 virtual bool checkString(address_t fromaddress, address_t address) = 0;
51 virtual BufferView getFunctionBytes(address_t address) = 0;
[all …]
H A Ddisassemblerbase.h23 ReferenceSet getTargets(address_t address) const override;
24 ListingItems getCalls(address_t address) override;
25 address_location getTarget(address_t address) const override;
26 u64 getTargetsCount(address_t address) const override;
27 u64 getReferencesCount(address_t address) const override;
29 void popTarget(address_t address, address_t pointedby) override;
30 void pushTarget(address_t address, address_t pointedby) override;
31 void pushReference(address_t address, address_t refby) override;
32 void checkLocation(address_t fromaddress, address_t address) override;
33 bool checkString(address_t fromaddress, address_t address) override;
[all …]
H A Ddisassemblerbase.cpp69 void DisassemblerBase::popTarget(address_t address, address_t pointedby) { m_referencetable.popTarg… in popTarget()
70 void DisassemblerBase::pushTarget(address_t address, address_t pointedby) { m_referencetable.pushTa… in pushTarget()
71 void DisassemblerBase::pushReference(address_t address, address_t refby) { m_referencetable.push(ad… in pushReference()
73 void DisassemblerBase::checkLocation(address_t fromaddress, address_t address) in checkLocation()
86 bool DisassemblerBase::checkString(address_t fromaddress, address_t address) in checkString()
115 address_t target = 0, address = startaddress; in checkAddressTable()
121 std::unordered_set<address_t> targets; in checkAddressTable()
197 address_t memaddress = 0; in readString()
207 address_t memaddress = 0; in readWString()
240 address_t address = 0; in dereferenceSymbol()
[all …]
/dports/devel/mspdebug/mspdebug-493f38b/drivers/
H A Ddevice.h67 address_t addr;
105 uint8_t *mem, address_t len);
107 const uint8_t *mem, address_t len);
111 address_t address);
192 address_t addr, address_t size,
195 int readmem(device_t dev, address_t addr,
196 uint8_t *mem, address_t len,
199 address_t addr, address_t len,
204 const uint8_t *mem, address_t len,
207 address_t addr, address_t len,
[all …]
H A Djtaglib.h58 address_t address);
62 address_t start_address,
69 address_t address,
74 address_t start_address,
85 void jtag_release_device(struct jtdev *p, address_t address);
89 address_t start_address,
95 address_t start_address,
100 address_t start_address,
107 address_t erase_address);
110 address_t jtag_read_reg(struct jtdev *p, int reg);
[all …]
H A Dfet_core.h50 address_t addr);
58 int fet_readmem(device_t dev_base, address_t addr, uint8_t *buffer,
59 address_t count);
61 int fet_writemem(device_t dev_base, address_t addr,
62 const uint8_t *buffer, address_t count);
64 int fet_getregs(device_t dev_base, address_t *regs);
66 int fet_setregs(device_t dev_base, const address_t *regs);
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/redasm/disassembler/types/
H A Dreferencetable.h8 typedef std::deque<address_t> ReferenceVector;
9 typedef std::set<address_t> ReferenceSet;
14 typedef std::unordered_map<address_t, ReferenceSet> ReferenceMap;
18 void push(address_t address, address_t refby);
19 void pushTarget(address_t target, address_t pointedby);
20 void popTarget(address_t target, address_t pointedby);
22 ReferenceSet targets(address_t address) const;
23 address_location target(address_t address) const;
24 u64 referencesCount(address_t address) const;
25 u64 targetsCount(address_t address) const;
[all …]
H A Dreferencetable.cpp6 void ReferenceTable::push(address_t address, address_t refby) in push()
19 void ReferenceTable::pushTarget(address_t target, address_t pointedby) in pushTarget()
32 void ReferenceTable::popTarget(address_t target, address_t pointedby) in popTarget()
42 ReferenceTable::ReferenceMap::const_iterator ReferenceTable::references(address_t address) const { … in references()
44 ReferenceSet ReferenceTable::targets(address_t address) const in targets()
54 address_location ReferenceTable::target(address_t address) const in target()
61 return REDasm::invalid_location<address_t>(); in target()
64 u64 ReferenceTable::referencesCount(address_t address) const in referencesCount()
74 u64 ReferenceTable::targetsCount(address_t address) const in targetsCount()
84 ReferenceVector ReferenceTable::referencesToVector(address_t address) const in referencesToVector()
[all …]
/dports/security/py-angr/angr-9.0.5405/native/
H A Dsim_unicorn.hpp20 typedef uint64_t address_t; typedef
57 address_t instr_addr;
134 address_t instr_addr;
160 address_t block_addr;
263 address_t exit_stmt_instr_addr;
277 address_t block_addr;
322 address_t address;
330 address_t address;
393 address_t unicorn_next_instr_addr;
394 address_t prev_stack_top_addr;
[all …]
/dports/devel/srecord/srecord-1.64/srecord/
H A Drecord.h58 typedef uint32_t address_t; typedef
86 record(type_t, address_t);
103 record(type_t the_type, address_t the_address, const data_t *the_data,
115 address_t get_address(void) const { return address; } in get_address()
121 address_t get_address_end(void) const { return (address + length); } in get_address_end()
138 void set_address(address_t arg) { address = arg; } in set_address()
234 static size_t maximum_data_length(address_t addr);
248 static address_t decode_big_endian(const data_t *data, size_t len);
277 static address_t
335 encode(data_t *data, address_t val, size_t len, endian_t end) in encode()
[all …]
H A Drecord.cc52 srecord::record::record(type_t a1, address_t a2) : in record()
95 if (address < ((address_t)1 << 16)) in maximum_data_length()
97 if (address < ((address_t)1 << 24)) in maximum_data_length()
103 srecord::record::address_t
106 assert(length <= sizeof(address_t)); in decode_big_endian()
107 address_t result = 0; in decode_big_endian()
114 srecord::record::address_t
117 assert(length <= sizeof(address_t)); in decode_little_endian()
118 address_t result = 0; in decode_little_endian()
134 assert(length <= sizeof(address_t)); in encode_big_endian()
[all …]
/dports/games/libretro-emux/emux-640d4ba/main/
H A Dmemory.c9 static uint8_t rom_readb(uint8_t *rom, address_t address);
10 static uint16_t rom_readw(uint8_t *rom, address_t address);
11 static uint32_t rom_readl(uint8_t *rom, address_t address);
12 static uint8_t ram_readb(uint8_t *ram, address_t address);
13 static uint16_t ram_readw(uint8_t *ram, address_t address);
39 uint8_t rom_readb(uint8_t *rom, address_t address) in rom_readb()
44 uint16_t rom_readw(uint8_t *rom, address_t address) in rom_readw()
50 uint32_t rom_readl(uint8_t *ram, address_t address) in rom_readl()
59 uint8_t ram_readb(uint8_t *ram, address_t address) in ram_readb()
64 uint16_t ram_readw(uint8_t *ram, address_t address) in ram_readw()
[all …]
/dports/net-mgmt/etherape/etherape-0.9.20/src/stats/
H A Dconversations.h21 address_t src_address;
22 address_t dst_address;
28 void add_conversation(address_t *src_address, address_t *dst_address,
30 const gchar *find_conversation(address_t *src_address,
31 address_t *dst_address, guint16 src_port, guint16 dst_port);
32 void delete_conversation_link(address_t *src_address,
33 address_t *dst_address);
/dports/devel/tass64/64tass-1.56.2625-src/
H A Dmem.h31 address_t ptextaddr;
32 address_t oaddr, oaddr2, olastaddr;
35 extern void mark_mem(struct mem_mark_s *, const struct Memblocks *, address_t, address_t);
38 extern void memjmp(struct Memblocks *, address_t);
42 extern FAST_CALL uint8_t *alloc_mem(struct Memblocks *, address_t);
43 extern int read_mem(const struct Memblocks *, address_t, size_t, address_t);
H A Dsection.h31 address_t address;
32 address_t l_address;
33 address_t start;
34 address_t end;
35 address_t l_start;
36 address_t l_union;
54 address_t restart;
55 address_t l_restart;
56 address_t size;
/dports/games/libretro-emux/emux-640d4ba/controllers/mapper/
H A Dmmc3.c130 void mirror_address(struct mmc3 *mmc3, address_t *address) in mirror_address()
151 void remap_prg_rom(struct mmc3 *mmc3, address_t *address) in remap_prg_rom()
187 void remap_chr_rom(struct mmc3 *mmc3, address_t *address) in remap_chr_rom()
239 void chr_rom_access(struct mmc3 *mmc3, address_t address) in chr_rom_access()
268 uint8_t vram_readb(struct mmc3 *mmc3, address_t address) in vram_readb()
274 uint16_t vram_readw(struct mmc3 *mmc3, address_t address) in vram_readw()
292 uint8_t prg_rom_readb(struct mmc3 *mmc3, address_t address) in prg_rom_readb()
304 uint8_t chr_rom_readb(struct mmc3 *mmc3, address_t address) in chr_rom_readb()
404 address_t start; in mmc3_init()
405 address_t end; in mmc3_init()
[all …]
H A Dmmc1.c75 static void remap_prg_rom(struct mmc1 *mmc1, address_t *address);
77 static uint8_t vram_readb(struct mmc1 *mmc1, address_t address);
108 void mirror_address(struct mmc1 *mmc1, address_t *address) in mirror_address()
136 void remap_prg_rom(struct mmc1 *mmc1, address_t *address) in remap_prg_rom()
169 void remap_chr_rom(struct mmc1 *mmc1, address_t *address) in remap_chr_rom()
196 uint8_t vram_readb(struct mmc1 *mmc1, address_t address) in vram_readb()
202 uint16_t vram_readw(struct mmc1 *mmc1, address_t address) in vram_readw()
220 uint8_t prg_rom_readb(struct mmc1 *mmc1, address_t address) in prg_rom_readb()
226 uint16_t prg_rom_readw(struct mmc1 *mmc1, address_t address) in prg_rom_readw()
232 uint8_t chr_rom_readb(struct mmc1 *mmc1, address_t address) in chr_rom_readb()
[all …]
H A Dnrom.c22 static uint8_t vram_readb(struct nrom *nrom, address_t address);
23 static uint16_t vram_readw(struct nrom *nrom, address_t address);
26 static void mirror_address(struct nrom *nrom, address_t *address);
27 static uint8_t prg_rom_readb(struct nrom *nrom, address_t address);
42 uint8_t vram_readb(struct nrom *nrom, address_t address) in vram_readb()
48 uint16_t vram_readw(struct nrom *nrom, address_t address) in vram_readw()
54 void vram_writeb(struct nrom *nrom, uint8_t b, address_t address) in vram_writeb()
60 void vram_writew(struct nrom *nrom, uint16_t w, address_t address) in vram_writew()
66 void mirror_address(struct nrom *nrom, address_t *address) in mirror_address()
87 uint8_t prg_rom_readb(struct nrom *nrom, address_t address) in prg_rom_readb()
[all …]
/dports/net/sngrep/sngrep-1.4.9/src/
H A Daddress.h52 typedef struct address address_t; typedef
72 addressport_equals(address_t addr1, address_t addr2);
82 address_equals(address_t addr1, address_t addr2);
91 address_is_local(address_t addr);
99 address_t
H A Drtp.h105 address_t src;
107 address_t dst;
277 stream_create(sdp_media_t *media, address_t dst, int type);
280 stream_complete(rtp_stream_t *stream, address_t src);
304 rtp_find_stream_format(address_t src, address_t dst, uint32_t format);
307 rtp_find_rtcp_stream(address_t src, address_t dst);
310 rtp_find_call_stream(struct sip_call *call, address_t src, address_t dst);
313 rtp_find_call_exact_stream(struct sip_call *call, address_t src, address_t dst);
/dports/mail/eps/eps-1.7/
H A Daddress.c6 static void address_fixup(address_t *);
12 address_t *alist = NULL, *a = NULL, *a_tail = NULL; in address_evaluate()
18 alist = (address_t *)malloc(sizeof(address_t)); in address_evaluate()
95 address_t *address_evaluate_one(char *data) in address_evaluate_one()
97 address_t *a = NULL; in address_evaluate_one()
102 a = (address_t *)malloc(sizeof(address_t)); in address_evaluate_one()
106 memset((address_t *)a, 0, sizeof(address_t)); in address_evaluate_one()
173 address_t *a = NULL, *ao = NULL; in address_kill()
190 void address_kill_one(address_t *a) in address_kill_one()
207 void address_fixup(address_t *a) in address_fixup()
/dports/net-mgmt/etherape/etherape-0.9.20/src/
H A Dcommon.h117 address_t; typedef
120 #define address_copy(dst, src) memmove((dst), (src), sizeof(address_t))
121 #define address_clear(dst) memset((dst), 0, sizeof(address_t))
123 #define is_addr_eq(dst, src) (memcmp((dst), (src), sizeof(address_t)) == 0)
124 #define is_addr_gt(dst, src) (memcmp((dst), (src), sizeof(address_t)) > 0)
125 #define is_addr_lt(dst, src) (memcmp((dst), (src), sizeof(address_t)) < 0)
126 #define is_addr_ge(dst, src) (memcmp((dst), (src), sizeof(address_t)) >= 0)
127 #define is_addr_le(dst, src) (memcmp((dst), (src), sizeof(address_t)) <= 0)
129 static inline int address_cmp(const address_t *a, const address_t *b) in address_cmp()
/dports/graphics/aseprite/aseprite-1.2.9/src/doc/
H A Dimage_impl.h28 typedef typename Traits::address_t address_t; typedef
32 address_t m_bits;
33 address_t* m_rows;
35 inline address_t getBitsAddress() { in getBitsAddress()
43 inline address_t getLineAddress(int y) { in getLineAddress()
75 address_t addr = m_bits; in ImageImpl()
108 address_t first = address(0, 0); in clear()
118 address_t src_address; in copy()
119 address_t dst_address; in copy()
150 address_t first = address(x1, y1); in fillRect()
[all …]

12345678910>>...16