Lines Matching defs:ret
75 LLVMTypeRef ret;
79 ret = LLVMStructCreateNamed(LLVMGetGlobalContext(), buffer);
81 sym->aux = ret;
93 LLVMStructSetBody(ret, elem_types, nr, 0 /* packed? */);
94 return ret;
129 LLVMTypeRef ret = NULL;
134 ret = LLVMFloatType();
137 ret = LLVMDoubleType();
140 ret = LLVMX86FP80Type();
149 ret = LLVMVoidType();
152 ret = LLVMInt1Type();
155 ret = LLVMInt8Type();
158 ret = LLVMInt16Type();
161 ret = LLVMInt32Type();
164 ret = LLVMInt64Type();
172 return ret;
177 LLVMTypeRef ret = NULL;
188 ret = LLVMIntType(sym->bit_size);
192 ret = symbol_type(sym->ctype.base_type);
195 ret = sym_basetype_type(sym);
198 ret = sym_ptr_type(sym);
201 ret = sym_union_type(sym);
204 ret = sym_struct_type(sym);
207 ret = sym_array_type(sym);
210 ret = sym_func_type(sym);
217 sym->aux = ret;
218 return ret;