Lines Matching refs:c_l
236 …SkRasterPipeline_GradientCtx* ctx, float gapCount, size_t stop, SkPMColor4f c_l, SkPMColor4f c_r) { in init_stop_evenly() argument
239 (c_r.fR - c_l.fR) * gapCount, in init_stop_evenly()
240 (c_r.fG - c_l.fG) * gapCount, in init_stop_evenly()
241 (c_r.fB - c_l.fB) * gapCount, in init_stop_evenly()
242 (c_r.fA - c_l.fA) * gapCount, in init_stop_evenly()
245 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly()
246 c_l.fG - Fs.fG*(stop/gapCount), in init_stop_evenly()
247 c_l.fB - Fs.fB*(stop/gapCount), in init_stop_evenly()
248 c_l.fA - Fs.fA*(stop/gapCount), in init_stop_evenly()
256 …SkRasterPipeline_GradientCtx* ctx, size_t stop, float t_l, float t_r, SkPMColor4f c_l, SkPMColor4f… in init_stop_pos() argument
259 (c_r.fR - c_l.fR) / (t_r - t_l), in init_stop_pos()
260 (c_r.fG - c_l.fG) / (t_r - t_l), in init_stop_pos()
261 (c_r.fB - c_l.fB) / (t_r - t_l), in init_stop_pos()
262 (c_r.fA - c_l.fA) / (t_r - t_l), in init_stop_pos()
265 c_l.fR - Fs.fR*t_l, in init_stop_pos()
266 c_l.fG - Fs.fG*t_l, in init_stop_pos()
267 c_l.fB - Fs.fB*t_l, in init_stop_pos()
268 c_l.fA - Fs.fA*t_l, in init_stop_pos()
324 const SkPMColor4f c_l = prepareColor(0), in onAppendStages() local
329 (Sk4f::Load(c_r.vec()) - Sk4f::Load(c_l.vec())).store(ctx->f); in onAppendStages()
330 ( Sk4f::Load(c_l.vec())).store(ctx->b); in onAppendStages()
352 SkPMColor4f c_l = prepareColor(0); in onAppendStages() local
355 init_stop_evenly(ctx, gapCount, i, c_l, c_r); in onAppendStages()
356 c_l = c_r; in onAppendStages()
358 add_const_color(ctx, stopCount - 1, c_l); in onAppendStages()
382 SkPMColor4f c_l = prepareColor(firstStop); in onAppendStages() local
383 add_const_color(ctx, stopCount++, c_l); in onAppendStages()
390 init_stop_pos(ctx, stopCount, t_l, t_r, c_l, c_r); in onAppendStages()
394 c_l = c_r; in onAppendStages()
398 add_const_color(ctx, stopCount++, c_l); in onAppendStages()