Lines Matching defs:count
332 unsigned count = LLVMCountStructElementTypes(type);
337 LLVMTypeRef *elems = alloca(count * sizeof(LLVMTypeRef));
340 for (unsigned i = 0; i < count; i++) {
2204 unsigned count = ac_num_derivs(dim);
2205 for (unsigned i = 0; i < count; ++i)
3044 LLVMValueRef ac_trim_vector(struct ac_llvm_context *ctx, LLVMValueRef value, unsigned count)
3047 if (count == num_components)
3050 LLVMValueRef *const masks = alloca(MAX2(count, 2) * sizeof(LLVMValueRef));
3053 for (unsigned i = 2; i < count; i++)
3056 if (count == 1)
3059 LLVMValueRef swizzle = LLVMConstVector(masks, count);