Searched refs:max_align (Results 1 – 7 of 7) sorted by relevance
/external/qemu/ |
D | thunk.c | 71 int nb_fields, offset, max_align, align, size, i, j; in thunk_register_struct() local 93 max_align = 1; in thunk_register_struct() 102 if (align > max_align) in thunk_register_struct() 103 max_align = align; in thunk_register_struct() 106 offset = (offset + max_align - 1) & ~(max_align - 1); in thunk_register_struct() 108 se->align[i] = max_align; in thunk_register_struct() 111 i == THUNK_HOST ? "host" : "target", offset, max_align); in thunk_register_struct()
|
/external/elfutils/libasm/ |
D | asm_align.c | 79 if (asmscn->max_align < value) 81 asmscn->max_align = value; 88 if (asmscn->data.up->max_align < value) 89 asmscn->data.up->max_align = value;
|
D | asm_end.c | 82 offset = ((offset + asmsubscn->max_align - 1) in binary_end() 83 & ~(asmsubscn->max_align - 1)); in binary_end() 104 newdata->d_align = first ? asmsubscn->max_align : 1; in binary_end() 413 shdr->sh_addralign = asmscn->max_align; in binary_end()
|
D | asm_newsubscn.c | 71 newp->max_align = 1;
|
D | libasmP.h | 85 GElf_Word max_align; member
|
D | asm_newscn.c | 104 result->max_align = 1; in binary_newscn()
|
/external/elfcopy/ |
D | elfcopy.c | 2702 Elf32_Word *max_align; in get_section_real_align() local 2708 max_align = (Elf32_Word*) malloc (max_align_array_size); in get_section_real_align() 2709 FAILIF(!max_align, "malloc(%zu) failed.\n", max_align_array_size); in get_section_real_align() 2712 max_align[0] = 0; in get_section_real_align() 2714 max_align[si] = shdr_info[si].shdr.sh_addralign; in get_section_real_align() 2748 max_align[first_section] < phdr_info[pi].p_align) { in get_section_real_align() 2749 max_align[first_section] = phdr_info[pi].p_align; in get_section_real_align() 2753 return max_align; in get_section_real_align()
|