halide_type_code_t   60 python_bindings/python/Type.cpp         .def(p::init<halide_type_code_t, int, int>(p::args("code", "bits", "lanes")))
halide_type_code_t  742 src/Generator.cpp     static const std::map<halide_type_code_t, std::string> m = {
halide_type_code_t  293 src/Type.h         static const halide_type_code_t Int = halide_type_int;
halide_type_code_t  294 src/Type.h         static const halide_type_code_t UInt = halide_type_uint;
halide_type_code_t  295 src/Type.h         static const halide_type_code_t Float = halide_type_float;
halide_type_code_t  296 src/Type.h         static const halide_type_code_t Handle = halide_type_handle;
halide_type_code_t  310 src/Type.h         Type(halide_type_code_t code, int bits, int lanes, const halide_handle_cplusplus_type *handle_type = nullptr)
halide_type_code_t  328 src/Type.h         halide_type_code_t code() const { return (halide_type_code_t)type.code; }
halide_type_code_t  337 src/Type.h         Type with_code(halide_type_code_t new_code) const {
halide_type_code_t  229 src/runtime/HalideRuntime.h typedef enum halide_type_code_t
halide_type_code_t  258 src/runtime/HalideRuntime.h     HALIDE_ATTRIBUTE_ALIGN(1) halide_type_code_t code; // halide_type_code_t
halide_type_code_t  274 src/runtime/HalideRuntime.h     HALIDE_ALWAYS_INLINE halide_type_t(halide_type_code_t code, uint8_t bits, uint16_t lanes = 1)
halide_type_code_t  280 src/runtime/HalideRuntime.h     HALIDE_ALWAYS_INLINE halide_type_t() : code((halide_type_code_t)0), bits(0), lanes(0) {}
halide_type_code_t  111 src/runtime/buffer_t.cpp     dst->type.code = (halide_type_code_t)type_code;
halide_type_code_t   34 src/runtime/errors.cpp     halide_type_t correct_type(halide_type_code_t(correct_code), correct_bits, correct_lanes);
halide_type_code_t   35 src/runtime/errors.cpp     halide_type_t type_given(halide_type_code_t(code_given), bits_given, lanes_given);
halide_type_code_t  236 src/runtime/tracing.cpp     event.type.code = (halide_type_code_t)type_code;