Lines Matching defs:SIZE
39 #ifndef SIZE
40 # define SIZE 8
52 FCT(SIZE) (AsmScn_t *asmscn, TYPE(SIZE) num)
66 if (SIZE == 8)
68 else if (SIZE == 16)
71 else if (SIZE == 32)
90 #if SIZE > 8
94 TYPE(SIZE) var = num;
97 if (__libasm_ensure_section_space (asmscn, SIZE / 8) != 0)
100 #if SIZE > 8
103 var = BSWAP(SIZE) (var);
108 memcpy (&asmscn->content->data[asmscn->content->len], &var, SIZE / 8);
111 asmscn->content->len += SIZE / 8;
114 asmscn->offset += SIZE / 8;
119 INTDEF(FCT(SIZE))