event              19 src/Tracing.cpp     enum halide_trace_event_code_t event;
event              35 src/Tracing.cpp                              (int)event,
event              95 src/Tracing.cpp             builder.event = halide_trace_load;
event             125 src/Tracing.cpp             builder.event = halide_trace_store;
event             175 src/Tracing.cpp             builder.event = halide_trace_begin_realization;
event             184 src/Tracing.cpp             builder.event = halide_trace_end_realization;
event             223 src/Tracing.cpp             builder.event = (op->is_producer ?
event             228 src/Tracing.cpp             builder.event = (op->is_producer ?
event             290 src/Tracing.cpp         builder.event = halide_trace_begin_pipeline;
event             295 src/Tracing.cpp         builder.event = halide_trace_end_pipeline;
event             336 src/runtime/HalideRuntime.h     enum halide_trace_event_code_t event;
event             386 src/runtime/HalideRuntime.h extern int32_t halide_trace(void *user_context, const struct halide_trace_event_t *event);
event             404 src/runtime/HalideRuntime.h     enum halide_trace_event_code_t event;
event              40 src/runtime/tracing.cpp         header.event = e->event;
event              83 src/runtime/tracing.cpp         bool print_value = (e->event < 2);
event              85 src/runtime/tracing.cpp         ss << event_types[e->event] << " " << e->func << "." << e->value_index << "(";
event             232 src/runtime/tracing.cpp     halide_trace_event_t event;
event             233 src/runtime/tracing.cpp     event.func = func;
event             234 src/runtime/tracing.cpp     event.coordinates = coords;
event             235 src/runtime/tracing.cpp     event.value = value;
event             236 src/runtime/tracing.cpp     event.type.code = (halide_type_code_t)type_code;
event             237 src/runtime/tracing.cpp     event.type.bits = (uint8_t)type_bits;
event             238 src/runtime/tracing.cpp     event.type.lanes = (uint16_t)type_lanes;
event             239 src/runtime/tracing.cpp     event.event = (halide_trace_event_code_t)code;
event             240 src/runtime/tracing.cpp     event.parent_id = parent_id;
event             241 src/runtime/tracing.cpp     event.value_index = value_index;
event             242 src/runtime/tracing.cpp     if (event.type.lanes > 1) {
event             243 src/runtime/tracing.cpp         dimensions *= event.type.lanes;
event             245 src/runtime/tracing.cpp     event.dimensions = dimensions;
event             246 src/runtime/tracing.cpp     return halide_trace(user_context, &event);
event              17 test/correctness/align_bounds.cpp     if (e->event == 2) {
event               8 test/correctness/autotune_bug_2.cpp     if (e->event == 2 && std::string(e->func) == "f") {
event               8 test/correctness/autotune_bug_3.cpp     if (e->event == 2 && std::string(e->func) == "f") {
event               8 test/correctness/autotune_bug_4.cpp     if (e->event == 2 && std::string(e->func) == "f") {
event               8 test/correctness/iterate_over_circle.cpp     if (ev->event == halide_trace_load) {
event              15 test/correctness/reduction_non_rectangular.cpp         if (e->event == halide_trace_produce) {
event              17 test/correctness/reduction_non_rectangular.cpp         } else if (e->event == halide_trace_consume) {
event              21 test/correctness/reduction_non_rectangular.cpp         if (run_tracer && (e->event == halide_trace_store)) {
event              38 test/correctness/reduction_non_rectangular.cpp         if (e->event == halide_trace_produce) {
event              40 test/correctness/reduction_non_rectangular.cpp         } else if (e->event == halide_trace_consume) {
event              44 test/correctness/reduction_non_rectangular.cpp         if (run_tracer && (e->event == halide_trace_store)) {
event              59 test/correctness/reduction_non_rectangular.cpp         if (e->event == halide_trace_produce) {
event              61 test/correctness/reduction_non_rectangular.cpp         } else if (e->event == halide_trace_consume) {
event              65 test/correctness/reduction_non_rectangular.cpp         if (run_tracer && (e->event == halide_trace_store)) {
event              11 test/correctness/reschedule.cpp     if (ev->event == halide_trace_store) {
event             867 test/correctness/rfactor.cpp     if (e->event == 2 && std::string(e->func) == "f") {
event              13 test/correctness/skip_stages_memoize.cpp         if ((e->event == halide_trace_store) && (std::string(e->func) == buffer_name)) {
event              25 test/correctness/skip_stages_memoize.cpp         if ((e->event == halide_trace_store) && (std::string(e->func) == buffer_name)) {
event              32 test/correctness/skip_stages_memoize.cpp         if ((e->event == halide_trace_store) && (std::string(e->func) == buffer_name)) {
event              18 test/correctness/specialize.cpp     if (ev->event == halide_trace_store) {
event               8 test/correctness/stencil_chain_in_update_definitions.cpp     if (e->event == halide_trace_store) {
event              16 test/correctness/tracing.cpp event trace[1024];
event              20 test/correctness/tracing.cpp void print_event(event e) {
event              50 test/correctness/tracing.cpp void print_event_source(event e) {
event              63 test/correctness/tracing.cpp bool events_match(event a, event b) {
event              86 test/correctness/tracing.cpp     event e = {0};
event              89 test/correctness/tracing.cpp     e.event_type = ev->event;
event             124 test/correctness/tracing.cpp     event correct_trace[] = {
event             168 test/correctness/tracing.cpp         event recorded = {0};
event             170 test/correctness/tracing.cpp         event correct = {0};
event               7 test/correctness/tracing_broadcast.cpp     if (e->event == halide_trace_store) {
event              33 test/correctness/tracing_stack.cpp     if (e->event == halide_trace_end_realization ||
event              34 test/correctness/tracing_stack.cpp         e->event == halide_trace_consume ||
event              35 test/correctness/tracing_stack.cpp         e->event == halide_trace_end_consume ||
event              36 test/correctness/tracing_stack.cpp         e->event == halide_trace_end_pipeline) {
event              40 test/correctness/tracing_stack.cpp     if (e->event == halide_trace_begin_realization ||
event              41 test/correctness/tracing_stack.cpp         e->event == halide_trace_produce ||
event              42 test/correctness/tracing_stack.cpp         e->event == halide_trace_consume ||
event              43 test/correctness/tracing_stack.cpp         e->event == halide_trace_begin_pipeline) {
event              45 test/correctness/tracing_stack.cpp         stack_trace.push(event_types[e->event] + e->func);
event               8 test/correctness/uninitialized_read.cpp     if (e->event == 2) { // begin realization
event               8 test/correctness/vectorize_guard_with_if.cpp     if (e->event == halide_trace_store) {
event              27 test/generator/tiled_blur_aottest.cpp     if (ev->event == halide_trace_begin_realization) {
event             709 util/HalideTraceViz.cpp         if (p.event == halide_trace_begin_pipeline) {
event             712 util/HalideTraceViz.cpp         } else if (p.event == halide_trace_end_pipeline) {
event             719 util/HalideTraceViz.cpp         if (p.event == halide_trace_begin_realization ||
event             720 util/HalideTraceViz.cpp             p.event == halide_trace_produce ||
event             721 util/HalideTraceViz.cpp             p.event == halide_trace_consume) {
event             723 util/HalideTraceViz.cpp         } else if (p.event == halide_trace_end_realization ||
event             724 util/HalideTraceViz.cpp                    p.event == halide_trace_end_produce ||
event             725 util/HalideTraceViz.cpp                    p.event == halide_trace_end_consume) {
event             736 util/HalideTraceViz.cpp                 fprintf(stderr, "Warning: ignoring func %s event %d    \n", qualified_name.c_str(), p.event);
event             767 util/HalideTraceViz.cpp         switch (p.event) {
event             771 util/HalideTraceViz.cpp             if (p.event == halide_trace_store) {
event             797 util/HalideTraceViz.cpp                     uint32_t color = p.event == halide_trace_load ? 0xffffdd44 : 0xff44ddff;
event             805 util/HalideTraceViz.cpp                     if (p.event == halide_trace_store ||
event             870 util/HalideTraceViz.cpp             fprintf(stderr, "Unknown tracing event code: %d\n", p.event);