OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:byte_vector
(Results
1 - 25
of
200
) sorted by relevancy
1
2
3
4
5
6
7
8
/src/external/gpl3/gdb.old/dist/gdbsupport/
byte-vector.h
25
/*
byte_vector
is a gdb_byte std::vector with a custom allocator that
33
gdb::
byte_vector
buf (some_large_size);
39
gdb::
byte_vector
buf (some_initial_size, 0);
45
gdb::
byte_vector
objects constructed with an initial size like:
47
gdb::
byte_vector
buf (some_size);
58
using
byte_vector
= gdb::def_vector<gdb_byte>;
/src/external/gpl3/gdb/dist/gdb/
disasm-selftests.h
27
disassemble_insn (gdbarch *gdbarch, gdb::
byte_vector
&insn,
auxv.h
51
extern const std::optional<gdb::
byte_vector
> &target_read_auxv ();
55
extern std::optional<gdb::
byte_vector
> target_read_auxv_raw (target_ops *ops);
65
extern int target_auxv_search (const gdb::
byte_vector
&auxv,
arm-fbsd-tdep.h
50
arm_fbsd_read_description_auxv (const std::optional<gdb::
byte_vector
> &auxv,
linux-tdep.h
109
extern CORE_ADDR linux_get_hwcap (const std::optional<gdb::
byte_vector
> &auxv,
120
extern CORE_ADDR linux_get_hwcap2 (const std::optional<gdb::
byte_vector
> &auxv,
findcmd.c
32
put_bits (uint64_t data, gdb::
byte_vector
&buf, int bits, bfd_boolean big_p)
54
static gdb::
byte_vector
63
gdb::
byte_vector
pattern_buf;
224
gdb::
byte_vector
pattern_buf = parse_find_args (args, &max_count,
/src/external/gpl3/gdb/dist/gdbsupport/
byte-vector.h
25
/*
byte_vector
is a gdb_byte std::vector with a custom allocator that
33
gdb::
byte_vector
buf (some_large_size);
39
gdb::
byte_vector
buf (some_initial_size, 0);
45
gdb::
byte_vector
objects constructed with an initial size like:
47
gdb::
byte_vector
buf (some_size);
58
using
byte_vector
= gdb::def_vector<gdb_byte>;
/src/external/gpl3/gdb.old/dist/gdb/arch/
aarch64-mte-linux.h
49
extern void aarch64_mte_pack_tags (gdb::
byte_vector
&tags);
54
extern void aarch64_mte_unpack_tags (gdb::
byte_vector
&tags, bool skip_first);
aarch64-mte-linux.c
25
aarch64_mte_pack_tags (gdb::
byte_vector
&tags)
47
aarch64_mte_unpack_tags (gdb::
byte_vector
&tags, bool skip_first)
55
gdb::
byte_vector
unpacked_tags (tags.size () * 2);
/src/external/gpl3/gdb.old/dist/gdb/nat/
aarch64-mte-linux-ptrace.h
41
gdb::
byte_vector
&tags);
48
const gdb::
byte_vector
&tags);
aarch64-scalable-linux-ptrace.h
106
extern gdb::
byte_vector
aarch64_fetch_sve_regset (int tid);
110
const gdb::
byte_vector
&sve_state);
113
extern gdb::
byte_vector
aarch64_fetch_za_regset (int tid);
116
extern void aarch64_store_za_regset (int tid, const gdb::
byte_vector
&za_state);
123
extern gdb::
byte_vector
aarch64_fetch_zt_regset (int tid);
126
extern void aarch64_store_zt_regset (int tid, const gdb::
byte_vector
&zt_state);
aarch64-mte-linux-ptrace.c
85
static gdb::
byte_vector
86
prepare_tag_vector (size_t granules, const gdb::
byte_vector
&tags, size_t pos,
89
gdb::
byte_vector
t;
113
gdb::
byte_vector
&tags)
122
gdb::
byte_vector
tagbuf (ntags);
166
const gdb::
byte_vector
&tags)
185
gdb::
byte_vector
t = prepare_tag_vector (ntags - tags_written, tags,
aarch64-scalable-linux-ptrace.c
410
gdb::
byte_vector
423
gdb::
byte_vector
sve_state (SVE_PT_SIZE (vq, SVE_PT_REGS_SVE), 0);
440
aarch64_store_sve_regset (int tid, const gdb::
byte_vector
&sve_state)
455
gdb::
byte_vector
467
gdb::
byte_vector
za_state (header.size);
479
aarch64_store_za_regset (int tid, const gdb::
byte_vector
&za_state)
525
gdb::
byte_vector
zt_new_state (AARCH64_SME2_ZT0_SIZE, 0);
535
gdb::
byte_vector
540
gdb::
byte_vector
zt_state (AARCH64_SME2_ZT0_SIZE);
555
aarch64_store_zt_regset (int tid, const gdb::
byte_vector
&zt_state
[
all
...]
/src/external/gpl3/gdb/dist/gdb/arch/
aarch64-mte-linux.h
49
extern void aarch64_mte_pack_tags (gdb::
byte_vector
&tags);
54
extern void aarch64_mte_unpack_tags (gdb::
byte_vector
&tags, bool skip_first);
aarch64-mte-linux.c
25
aarch64_mte_pack_tags (gdb::
byte_vector
&tags)
47
aarch64_mte_unpack_tags (gdb::
byte_vector
&tags, bool skip_first)
55
gdb::
byte_vector
unpacked_tags (tags.size () * 2);
/src/external/gpl3/gdb/dist/gdb/nat/
aarch64-mte-linux-ptrace.h
41
gdb::
byte_vector
&tags);
48
const gdb::
byte_vector
&tags);
aarch64-scalable-linux-ptrace.h
106
extern gdb::
byte_vector
aarch64_fetch_sve_regset (int tid);
110
const gdb::
byte_vector
&sve_state);
113
extern gdb::
byte_vector
aarch64_fetch_za_regset (int tid);
116
extern void aarch64_store_za_regset (int tid, const gdb::
byte_vector
&za_state);
123
extern gdb::
byte_vector
aarch64_fetch_zt_regset (int tid);
126
extern void aarch64_store_zt_regset (int tid, const gdb::
byte_vector
&zt_state);
aarch64-mte-linux-ptrace.c
85
static gdb::
byte_vector
86
prepare_tag_vector (size_t granules, const gdb::
byte_vector
&tags, size_t pos,
89
gdb::
byte_vector
t;
113
gdb::
byte_vector
&tags)
122
gdb::
byte_vector
tagbuf (ntags);
166
const gdb::
byte_vector
&tags)
185
gdb::
byte_vector
t = prepare_tag_vector (ntags - tags_written, tags,
aarch64-scalable-linux-ptrace.c
410
gdb::
byte_vector
423
gdb::
byte_vector
sve_state (SVE_PT_SIZE (vq, SVE_PT_REGS_SVE), 0);
440
aarch64_store_sve_regset (int tid, const gdb::
byte_vector
&sve_state)
455
gdb::
byte_vector
467
gdb::
byte_vector
za_state (header.size);
479
aarch64_store_za_regset (int tid, const gdb::
byte_vector
&za_state)
525
gdb::
byte_vector
zt_new_state (AARCH64_SME2_ZT0_SIZE, 0);
535
gdb::
byte_vector
540
gdb::
byte_vector
zt_state (AARCH64_SME2_ZT0_SIZE);
555
aarch64_store_zt_regset (int tid, const gdb::
byte_vector
&zt_state
[
all
...]
/src/external/gpl3/gdb.old/dist/gdb/
auxv.h
51
extern const std::optional<gdb::
byte_vector
> &target_read_auxv ();
55
extern std::optional<gdb::
byte_vector
> target_read_auxv_raw (target_ops *ops);
65
extern int target_auxv_search (const gdb::
byte_vector
&auxv,
arm-fbsd-tdep.h
50
arm_fbsd_read_description_auxv (const std::optional<gdb::
byte_vector
> &auxv,
linux-tdep.h
97
extern CORE_ADDR linux_get_hwcap (const std::optional<gdb::
byte_vector
> &auxv,
108
extern CORE_ADDR linux_get_hwcap2 (const std::optional<gdb::
byte_vector
> &auxv,
findcmd.c
32
put_bits (uint64_t data, gdb::
byte_vector
&buf, int bits, bfd_boolean big_p)
54
static gdb::
byte_vector
63
gdb::
byte_vector
pattern_buf;
224
gdb::
byte_vector
pattern_buf = parse_find_args (args, &max_count,
/src/external/gpl3/gdb.old/dist/gdb/unittests/
rsp-low-selftests.c
26
/* Test the variant of hex2bin that returns a
byte_vector
. */
30
gdb::
byte_vector
bv;
/src/external/gpl3/gdb/dist/gdb/unittests/
rsp-low-selftests.c
26
/* Test the variant of hex2bin that returns a
byte_vector
. */
30
gdb::
byte_vector
bv;
Completed in 27 milliseconds
1
2
3
4
5
6
7
8
Indexes created Fri May 08 00:25:09 UTC 2026