OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlignCode
(Results
1 - 4
of
4
) sorted by null
/art/compiler/
compiled_method.h
67
uint32_t
AlignCode
(uint32_t offset) const;
68
static uint32_t
AlignCode
(uint32_t offset, InstructionSet instruction_set);
compiled_method.cc
78
uint32_t CompiledCode::
AlignCode
(uint32_t offset) const {
79
return
AlignCode
(offset, instruction_set_);
82
uint32_t CompiledCode::
AlignCode
(uint32_t offset, InstructionSet instruction_set) {
oat_writer.cc
355
offset_ = compiled_method->
AlignCode
(offset_);
589
uint32_t aligned_offset = compiled_method->
AlignCode
(offset_);
835
offset = CompiledCode::
AlignCode
(offset, instruction_set); \
[
all
...]
common_compiler_test.cc
188
size_t code_offset = compiled_method->
AlignCode
(size - code_size);
Completed in 2929 milliseconds