prefetch           63 apps/HelloHexagon/pipeline.cpp                     .prefetch(input, y, 2)
prefetch          337 apps/camera_pipe/camera_pipe_generator.cpp         .prefetch(input, y, 2)
prefetch           73 apps/hexagon_matmul/pipeline.cpp                     .prefetch(A, yo, 1)
prefetch         1094 src/CodeGen_C.cpp     } else if (op->is_intrinsic(Call::prefetch)) {
prefetch         1518 src/CodeGen_Hexagon.cpp     if (op->is_intrinsic(Call::prefetch)) {
prefetch         2614 src/CodeGen_LLVM.cpp     } else if (op->is_intrinsic(Call::prefetch)) {
prefetch         1736 src/Func.cpp       PrefetchDirective prefetch = {f.name(), var.name(), offset, strategy, Parameter()};
prefetch         1737 src/Func.cpp       definition.schedule().prefetches().push_back(prefetch);
prefetch         1742 src/Func.cpp       PrefetchDirective prefetch = {param.name(), var.name(), offset, strategy, param};
prefetch         1743 src/Func.cpp       definition.schedule().prefetches().push_back(prefetch);
prefetch         2220 src/Func.cpp       Stage(func.definition(), name(), args(), func.schedule().storage_dims()).prefetch(f, var, offset, strategy);
prefetch         2226 src/Func.cpp       Stage(func.definition(), name(), args(), func.schedule().storage_dims()).prefetch(param, var, offset, strategy);
prefetch          288 src/Func.h         EXPORT Stage &prefetch(const Func &f, VarOrRVar var, Expr offset = 1,
prefetch          290 src/Func.h         EXPORT Stage &prefetch(const Internal::Parameter &param, VarOrRVar var, Expr offset = 1,
prefetch          293 src/Func.h         Stage &prefetch(const T &image, VarOrRVar var, Expr offset = 1,
prefetch          295 src/Func.h             return prefetch(image.parameter(), var, offset, strategy);
prefetch         1578 src/Func.h         EXPORT Func &prefetch(const Func &f, VarOrRVar var, Expr offset = 1,
prefetch         1580 src/Func.h         EXPORT Func &prefetch(const Internal::Parameter &param, VarOrRVar var, Expr offset = 1,
prefetch         1583 src/Func.h         Func &prefetch(const T &image, VarOrRVar var, Expr offset = 1,
prefetch         1585 src/Func.h             return prefetch(image.parameter(), var, offset, strategy);
prefetch         1635 src/Generator.h     HALIDE_OUTPUT_FORWARD(prefetch)
prefetch          540 src/IR.cpp         if (name == Call::prefetch && call_type == Call::Intrinsic) {
prefetch          812 src/IR.cpp     Call::ConstString Call::prefetch = "prefetch";
prefetch          507 src/IR.h               prefetch,
prefetch          117 src/LLVM_Runtime_Linker.cpp DECLARE_CPP_INITMOD(prefetch)
prefetch          174 src/Prefetch.cpp         Stmt prefetch;
prefetch          176 src/Prefetch.cpp             prefetch = Prefetch::make(buf_name, {param.type()}, bounds, param);
prefetch          180 src/Prefetch.cpp             prefetch = Prefetch::make(buf_name, it->second.output_types(), bounds);
prefetch          184 src/Prefetch.cpp             prefetch = IfThenElse::make(box.used, prefetch);
prefetch          186 src/Prefetch.cpp         return Block::make({prefetch, body});
prefetch          281 src/Prefetch.cpp         if (call && call->is_intrinsic(Call::prefetch) && (call->args.size() > max_arg_size)) {
prefetch          299 src/Prefetch.cpp             stmt = Evaluate::make(Call::make(call->type, Call::prefetch, args, Call::Intrinsic));
prefetch          327 src/Prefetch.cpp         if (call && call->is_intrinsic(Call::prefetch)) {
prefetch          362 src/Prefetch.cpp             stmt = Evaluate::make(Call::make(call->type, Call::prefetch, args, Call::Intrinsic));
prefetch         4251 src/Simplify.cpp         } else if (op->is_intrinsic(Call::prefetch)) {
prefetch         4291 src/Simplify.cpp                 expr = Call::make(op->type, Call::prefetch, args, Call::Intrinsic);
prefetch         6299 src/Simplify.cpp         check(Call::make(Int(32), Call::prefetch, {base, x, 4, 1, 64, 4, min(x + y, 128), 256}, Call::Intrinsic),
prefetch         6300 src/Simplify.cpp               Call::make(Int(32), Call::prefetch, {base, x, min(x + y, 128) * 256, 1}, Call::Intrinsic));
prefetch          275 src/StorageFlattening.cpp         stmt = Evaluate::make(Call::make(op->types[0], Call::prefetch, args, Call::Intrinsic));