OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:aligned_offset
(Results
1 - 5
of
5
) sorted by null
/external/llvm/utils/testgen/
mc-bundling-x86-gen.py
88
aligned_offset
= (inst_orig_offset + instlen) & ~(BUNDLE_SIZE - 1)
89
print_check(
aligned_offset
)
/art/runtime/
dex_file_verifier.h
50
bool CheckPadding(uint32_t offset, uint32_t
aligned_offset
);
dex_file_verifier.cc
384
bool DexFileVerifier::CheckPadding(uint32_t offset, uint32_t
aligned_offset
) {
385
if (offset <
aligned_offset
) {
386
if (!CheckPointerRange(begin_ + offset, begin_ +
aligned_offset
, "section")) {
389
while (offset <
aligned_offset
) {
991
uint32_t
aligned_offset
= (offset + alignment_mask) & ~alignment_mask;
local
994
if (!CheckPadding(offset,
aligned_offset
)) {
[
all
...]
/system/core/libsparse/
output_file.c
710
int64_t
aligned_offset
;
local
715
aligned_offset
= offset & ~(4096 - 1);
716
aligned_diff = offset -
aligned_offset
;
721
aligned_offset
);
/art/compiler/
oat_writer.cc
557
uint32_t
aligned_offset
= CompiledCode::AlignCode(relative_offset, instruction_set); \
558
uint32_t alignment_padding =
aligned_offset
- relative_offset; \
676
uint32_t
aligned_offset
= compiled_method->AlignCode(relative_offset);
local
677
uint32_t aligned_code_delta =
aligned_offset
- relative_offset;
681
uint32_t expected_offset = file_offset +
aligned_offset
;
[
all
...]
Completed in 64 milliseconds