Lines Matching full:value
27 asm_align (asmscn, value)
29 GElf_Word value;
35 /* The alignment value must be a power of two. */
36 if (unlikely (! powerof2 (value)))
47 if ((asmscn->offset & (value - 1)) != 0)
53 cnt = value - (asmscn->offset & (value - 1));
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;