• Home
  • Raw
  • Download

Lines Matching refs:gfloat

460 inner_product_gfloat_full_1_neon (gfloat * o, const gfloat * a,  in inner_product_gfloat_full_1_neon()
461 const gfloat * b, gint len, const gfloat * icoeff, gint bstride) in inner_product_gfloat_full_1_neon()
503 inner_product_gfloat_linear_1_neon (gfloat * o, const gfloat * a, in inner_product_gfloat_linear_1_neon()
504 const gfloat * b, gint len, const gfloat * icoeff, gint bstride) in inner_product_gfloat_linear_1_neon()
506 const gfloat *c[2] = {(gfloat*)((gint8*)b + 0*bstride), in inner_product_gfloat_linear_1_neon()
507 (gfloat*)((gint8*)b + 1*bstride)}; in inner_product_gfloat_linear_1_neon()
539 inner_product_gfloat_cubic_1_neon (gfloat * o, const gfloat * a, in inner_product_gfloat_cubic_1_neon()
540 const gfloat * b, gint len, const gfloat * icoeff, gint bstride) in inner_product_gfloat_cubic_1_neon()
542 const gfloat *c[4] = {(gfloat*)((gint8*)b + 0*bstride), in inner_product_gfloat_cubic_1_neon()
543 (gfloat*)((gint8*)b + 1*bstride), in inner_product_gfloat_cubic_1_neon()
544 (gfloat*)((gint8*)b + 2*bstride), in inner_product_gfloat_cubic_1_neon()
545 (gfloat*)((gint8*)b + 3*bstride)}; in inner_product_gfloat_cubic_1_neon()
588 gfloat *o = op, *a = ap, *ic = icp; in interpolate_gfloat_linear_neon()
589 const gfloat *c[2] = {(gfloat*)((gint8*)a + 0*astride), in interpolate_gfloat_linear_neon()
590 (gfloat*)((gint8*)a + 1*astride)}; in interpolate_gfloat_linear_neon()
619 gfloat *o = op, *a = ap, *ic = icp; in interpolate_gfloat_cubic_neon()
620 const gfloat *c[4] = {(gfloat*)((gint8*)a + 0*astride), in interpolate_gfloat_cubic_neon()
621 (gfloat*)((gint8*)a + 1*astride), in interpolate_gfloat_cubic_neon()
622 (gfloat*)((gint8*)a + 2*astride), in interpolate_gfloat_cubic_neon()
623 (gfloat*)((gint8*)a + 3*astride)}; in interpolate_gfloat_cubic_neon()
661 MAKE_RESAMPLE_FUNC_STATIC (gfloat, full, 1, neon);
662 MAKE_RESAMPLE_FUNC_STATIC (gfloat, linear, 1, neon);
663 MAKE_RESAMPLE_FUNC_STATIC (gfloat, cubic, 1, neon);