Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:con

49                                  const void *dst, const void *con, void *res);
157 LLVMValueRef con;
178 con = LLVMBuildLoad(builder, const_ptr, "const");
181 src1, NULL, dst, NULL, con, NULL, swizzle, 4);
202 const double *con,
240 term[0] = factor[0] * con[0]; /* R */
241 term[1] = factor[1] * con[1]; /* G */
242 term[2] = factor[2] * con[2]; /* B */
245 term[0] = factor[0] * con[3]; /* R */
246 term[1] = factor[1] * con[3]; /* G */
247 term[2] = factor[2] * con[3]; /* B */
285 term[0] = factor[0] * (1.0f - con[0]); /* R */
286 term[1] = factor[1] * (1.0f - con[1]); /* G */
287 term[2] = factor[2] * (1.0f - con[2]); /* B */
290 term[0] = factor[0] * (1.0f - con[3]); /* R */
291 term[1] = factor[1] * (1.0f - con[3]); /* G */
292 term[2] = factor[2] * (1.0f - con[3]); /* B */
328 term[3] = factor[3] * con[3]; /* A */
347 term[3] = factor[3] * (1.0f - con[3]);
364 const double *con,
371 src, src, src1, dst, con, src_term);
373 dst, src, src1, dst, con, dst_term);
468 uint8_t *src, *src1, *dst, *con, *res, *ref;
472 con = align_malloc(stride, stride);
483 random_vec(type, con);
495 read_vec(type, con, fcon);
504 blend_test_ptr(src, src1, dst, con, res);
528 fprintf(stderr, " Con: ");
529 dump_vec(stderr, type, con);
544 align_free(con);