OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FixupId
(Results
1 - 2
of
2
) sorted by null
/art/compiler/utils/arm/
assembler_thumb2.h
380
typedef uint16_t
FixupId
;
578
ArrayRef<const
FixupId
> Dependents(const Thumb2Assembler& assembler) const {
579
return ArrayRef<const
FixupId
>(assembler.fixup_dependents_).SubArray(dependents_start_,
[
all
...]
assembler_thumb2.cc
33
std::is_same<typename std::result_of<Function(
FixupId
,
FixupId
)>::type, void>::value,
34
"Incorrect signature for argument `fn`: expected (
FixupId
,
FixupId
) -> void");
36
for (
FixupId
fixup_id = 0u, end_id = assembler->fixups_.size(); fixup_id != end_id; ++fixup_id) {
39
for (
FixupId
id = fixup_id + 1u; id != end_id && fixups[id].location_ < target; ++id) {
45
for (
FixupId
id = fixup_id; id != 0u && fixups[id - 1u].location_ >= target; --id) {
66
[fixups](
FixupId
dependency,
FixupId
dependent ATTRIBUTE_UNUSED) {
72
for (
FixupId
fixup_id = 0u, end_id = assembler->fixups_.size(); fixup_id != end_id; ++fixup_id)
[
all
...]
Completed in 278 milliseconds