Lines Matching refs:SIZE
41 #ifndef SIZE
42 # define SIZE 8 macro
54 FCT(SIZE) (AsmScn_t *asmscn, TYPE(SIZE) num) in FCT() argument
68 if (SIZE == 8) in FCT()
70 else if (SIZE == 16) in FCT()
73 else if (SIZE == 32) in FCT()
92 #if SIZE > 8 in FCT()
96 TYPE(SIZE) var = num; in FCT()
99 if (__libasm_ensure_section_space (asmscn, SIZE / 8) != 0) in FCT()
102 #if SIZE > 8 in FCT()
105 var = BSWAP(SIZE) (var); in FCT()
110 memcpy (&asmscn->content->data[asmscn->content->len], &var, SIZE / 8); in FCT()
113 asmscn->content->len += SIZE / 8; in FCT()
116 asmscn->offset += SIZE / 8; in FCT()
121 INTDEF(FCT(SIZE))