functions 477 src/CodeGen_C.cpp for (const auto &f : input.functions()) { functions 1430 src/CodeGen_Hexagon.cpp static std::map<string, std::pair<string, bool>> functions = { functions 1456 src/CodeGen_Hexagon.cpp auto i = functions.find(op->name); functions 1457 src/CodeGen_Hexagon.cpp if (i != functions.end()) { functions 529 src/CodeGen_LLVM.cpp for (const auto &f : input.functions()) { functions 811 src/HexagonOffload.cpp if (!device_code.functions().empty()) { functions 858 src/HexagonOffload.cpp if (!hexagon_module.functions().empty()) { functions 62 src/IRPrinter.cpp for (const auto &f : m.functions()) { functions 132 src/Introspection.cpp vector<FunctionInfo> functions; functions 199 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 200 src/Introspection.cpp if (functions[i].name == "HalideIntrospectionCanary::offset_marker" && functions 201 src/Introspection.cpp functions[i].pc_begin) { functions 203 src/Introspection.cpp uint64_t pc_debug = functions[i].pc_begin; functions 240 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 241 src/Introspection.cpp FunctionInfo &f = functions[i]; functions 816 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 817 src/Introspection.cpp const FunctionInfo &f = functions[i]; functions 1088 src/Introspection.cpp functions.push_back(f); functions 1563 src/Introspection.cpp functions.push_back(func); functions 1596 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1597 src/Introspection.cpp func_map[functions[i].def_loc] = &functions[i]; functions 1600 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1601 src/Introspection.cpp if (functions[i].spec_loc) { functions 1602 src/Introspection.cpp FunctionInfo *spec = func_map[functions[i].spec_loc]; functions 1604 src/Introspection.cpp functions[i].name = spec->name; functions 1613 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1614 src/Introspection.cpp for (size_t j = 0; j < functions[i].variables.size(); j++) { functions 1615 src/Introspection.cpp var_map[functions[i].variables[j].def_loc] = &(functions[i].variables[j]); functions 1619 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1620 src/Introspection.cpp for (size_t j = 0; j < functions[i].variables.size(); j++) { functions 1621 src/Introspection.cpp LocalVariable &v = functions[i].variables[j]; functions 1672 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1673 src/Introspection.cpp for (size_t j = 0; j < functions[i].variables.size(); j++) { functions 1674 src/Introspection.cpp functions[i].variables[j].type = functions 1675 src/Introspection.cpp type_map[functions[i].variables[j].type_def_loc]; functions 1737 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1738 src/Introspection.cpp vector<LocalVariable> new_vars = functions[i].variables; functions 1768 src/Introspection.cpp functions[i].variables.swap(new_vars); functions 1770 src/Introspection.cpp if (functions[i].variables.size()) { functions 1771 src/Introspection.cpp debug(5) << "Function " << functions[i].name << ":\n"; functions 1772 src/Introspection.cpp for (size_t j = 0; j < functions[i].variables.size(); j++) { functions 1773 src/Introspection.cpp if (functions[i].variables[j].type) { functions 1774 src/Introspection.cpp debug(5) << " " << functions[i].variables[j].type->name << " " << functions[i].variables[j].name << "\n"; functions 1813 src/Introspection.cpp for (size_t i = 0; i < functions.size(); i++) { functions 1814 src/Introspection.cpp FunctionInfo &f = functions[i]; functions 1835 src/Introspection.cpp std::swap(functions, trimmed); functions 1852 src/Introspection.cpp std::sort(functions.begin(), functions.end()); functions 2116 src/Introspection.cpp size_t hi = functions.size(); functions 2120 src/Introspection.cpp uint64_t pc_mid_begin = functions[mid].pc_begin; functions 2121 src/Introspection.cpp uint64_t pc_mid_end = functions[mid].pc_end; functions 2127 src/Introspection.cpp debug(5) << "At function " << functions[mid].name functions 2130 src/Introspection.cpp return &functions[mid]; functions 418 src/Lower.cpp return module.functions().front().body; functions 114 src/Module.cpp std::vector<Internal::LoweredFunc> functions; functions 170 src/Module.cpp return contents->functions; functions 174 src/Module.cpp return contents->functions; functions 186 src/Module.cpp for (const auto &f : functions()) { functions 200 src/Module.cpp contents->functions.push_back(function); functions 229 src/Module.cpp for (const auto &f : input.functions()) { functions 272 src/Module.cpp for (const auto &f : functions()) { functions 572 src/Module.cpp add_legacy_wrapper(wrapper_module, wrapper_module.functions().back()); functions 99 src/Module.h EXPORT const std::vector<Internal::LoweredFunc> &functions() const; functions 100 src/Module.h EXPORT std::vector<Internal::LoweredFunc> &functions(); functions 334 src/Pipeline.cpp bool same_compile = !old_module.functions().empty() && old_module.target() == target; functions 338 src/Pipeline.cpp for (const auto &lf : old_module.functions()) { functions 346 src/Pipeline.cpp same_compile = same_compile && (lowering_args.size() + outputs().size()) == old_module.functions().front().args.size(); functions 348 src/Pipeline.cpp same_compile = same_compile && std::equal(lowering_args.begin(), lowering_args.end(), old_module.functions().front().args.begin()); functions 350 src/Pipeline.cpp same_compile = same_compile && old_module.functions().front().linkage == linkage_type; functions 706 src/StmtToHtml.cpp for (const auto &f : m.functions()) { functions 153 src/WrapExternStages.cpp size_t num_functions = m.functions().size(); functions 155 src/WrapExternStages.cpp wrap.prefix = "_halide_wrapper_" + m.functions()[i].name + "_"; functions 156 src/WrapExternStages.cpp Stmt old_body = m.functions()[i].body; functions 158 src/WrapExternStages.cpp m.functions()[i].body = new_body; functions 43 test/correctness/align_bounds.cpp m.functions()[0].body.accept(&checker); functions 106 test/correctness/align_bounds.cpp m.functions()[0].body.accept(&checker); functions 69 test/correctness/bounds_inference_outer_split.cpp m.functions()[0].body.accept(&checker); functions 72 test/correctness/bounds_inference_outer_split.cpp std::cerr << m.functions()[0].body << "\n\n" functions 85 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 126 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 149 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 172 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 217 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 274 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 302 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 350 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 392 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 442 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 487 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 538 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 584 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 633 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 656 test/correctness/image_wrap.cpp m.functions().front().body.accept(&c); functions 35 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 83 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 135 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 187 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 259 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 308 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 367 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 427 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 494 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 554 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 633 test/correctness/rfactor.cpp m.functions().front().body.accept(&checker); functions 96 test/correctness/schedule_param.cpp m.functions().front().body.accept(&c); functions 60 test/correctness/set_custom_trace.cpp m.functions().front().body.accept(&checker); functions 400 test/correctness/specialize.cpp for (auto ff : out.compile_to_module(out.infer_arguments()).functions()) { functions 429 test/correctness/specialize.cpp for (auto ff : out.compile_to_module(out.infer_arguments()).functions()) { functions 57 test/correctness/trim_no_ops.cpp m.functions().front().body.accept(&s); functions 59 test/correctness/trim_no_ops.cpp std::cerr << "There were selects in the lowered code: \n" << m.functions().front().body << "\n"; functions 91 test/correctness/trim_no_ops.cpp m.functions().front().body.accept(&s); functions 93 test/correctness/trim_no_ops.cpp std::cerr << "There were selects in the lowered code: \n" << m.functions().front().body << "\n"; functions 130 test/correctness/trim_no_ops.cpp m.functions().front().body.accept(&s); functions 132 test/correctness/trim_no_ops.cpp std::cerr << "There were selects in the lowered code: \n" << m.functions().front().body << "\n"; functions 170 test/correctness/trim_no_ops.cpp m.functions().front().body.accept(&s); functions 172 test/correctness/trim_no_ops.cpp std::cerr << "There were selects or ifs in the lowered code: \n" << m.functions().front().body << "\n"; functions 206 test/correctness/trim_no_ops.cpp m.functions().front().body.accept(&s); functions 208 test/correctness/trim_no_ops.cpp std::cerr << "There were selects in the lowered code: \n" << m.functions().front().body << "\n"; functions 212 test/correctness/trim_no_ops.cpp std::cerr << "There should be 1 if in the lowered code: \n" << m.functions().front().body << "\n"; functions 80 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 116 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 139 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 162 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 202 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 254 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 282 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 325 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 362 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 407 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 449 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 495 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 536 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 580 test/correctness/wrap.cpp m.functions().front().body.accept(&c); functions 603 test/correctness/wrap.cpp m.functions().front().body.accept(&c);