Home
last modified time | relevance | path

Searched refs:debug_printf (Results 1 – 25 of 273) sorted by relevance

1234567891011

/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_vertex.c68 debug_printf("EMIT_OMIT:"); in draw_dump_emitted_vertex()
71 debug_printf("EMIT_1F:\t"); in draw_dump_emitted_vertex()
72 debug_printf("%f ", *(float *)data); data += sizeof(float); in draw_dump_emitted_vertex()
75 debug_printf("EMIT_1F_PSIZE:\t"); in draw_dump_emitted_vertex()
76 debug_printf("%f ", *(float *)data); data += sizeof(float); in draw_dump_emitted_vertex()
79 debug_printf("EMIT_2F:\t"); in draw_dump_emitted_vertex()
80 debug_printf("%f ", *(float *)data); data += sizeof(float); in draw_dump_emitted_vertex()
81 debug_printf("%f ", *(float *)data); data += sizeof(float); in draw_dump_emitted_vertex()
84 debug_printf("EMIT_3F:\t"); in draw_dump_emitted_vertex()
85 debug_printf("%f ", *(float *)data); data += sizeof(float); in draw_dump_emitted_vertex()
[all …]
Ddraw_pt.c242 debug_printf("Draw arrays(prim = %u, start = %u, count = %u)\n", in draw_print_arrays()
275 debug_printf("Element[%u + %u] + %i -> Vertex %u:\n", start, i, in draw_print_arrays()
281 debug_printf("Vertex %u:\n", ii); in draw_print_arrays()
296 debug_printf(" Attr %u: ", j); in draw_print_arrays()
301 debug_printf("R %f @ %p\n", v[0], (void *) v); in draw_print_arrays()
307 debug_printf("RG %f %f @ %p\n", v[0], v[1], (void *) v); in draw_print_arrays()
313 debug_printf("RGB %f %f %f @ %p\n", v[0], v[1], v[2], (void *) v); in draw_print_arrays()
319 debug_printf("RGBA %f %f %f %f @ %p\n", v[0], v[1], v[2], v[3], in draw_print_arrays()
326 debug_printf("BGRA %d %d %d %d @ %p\n", u[0], u[1], u[2], u[3], in draw_print_arrays()
333 debug_printf("ARGB %d %d %d %d @ %p\n", u[0], u[1], u[2], u[3], in draw_print_arrays()
[all …]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_perf.c51 debug_printf("llvmpipe: nr_triangles: %9u\n", lp_count.nr_tris); in lp_print_counters()
52 debug_printf("llvmpipe: nr_culled_triangles: %9u\n", lp_count.nr_culled_tris); in lp_print_counters()
53 debug_printf("llvmpipe: nr_rectangles: %9u\n", lp_count.nr_rects); in lp_print_counters()
54 debug_printf("llvmpipe: nr_culled_rectangles: %9u\n", lp_count.nr_culled_rects); in lp_print_counters()
67 debug_printf("llvmpipe: nr_64x64: %9u\n", total_64); in lp_print_counters()
68debug_printf("llvmpipe: nr_fully_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_fully_co… in lp_print_counters()
69debug_printf("llvmpipe: nr_blit_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_blit_64,… in lp_print_counters()
70debug_printf("llvmpipe: nr_pure_blit_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_pure_bli… in lp_print_counters()
71debug_printf("llvmpipe: nr_shade_opaque_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_shade_op… in lp_print_counters()
72debug_printf("llvmpipe: nr_pure_shade_opaque: %9u (%3.0f%% of %u)\n", lp_count.nr_pure_sha… in lp_print_counters()
[all …]
Dlp_rast_debug.c175 debug_printf("bin %d,%d: type %s\n", x, y, type); in debug_bin()
182 debug_printf("%d: %s %s\n", j, in debug_bin()
390 debug_printf("%c: %15s", val, cmd_name(block->cmd[k])); in do_debug_bin()
419 debug_printf(" % 5d", count); in do_debug_bin()
421 debug_printf(" %20s", fskind); in do_debug_bin()
424 debug_printf(" blended"); in do_debug_bin()
427 debug_printf(" linear"); in do_debug_bin()
429 debug_printf("\n"); in do_debug_bin()
444 debug_printf("------------------------------------------------------------------\n"); in lp_debug_bin()
447 debug_printf("%c", tile.data[y][x]); in lp_debug_bin()
[all …]
Dlp_fence.c64 debug_printf("%s %d\n", __FUNCTION__, fence->id); in lp_fence_create()
75 debug_printf("%s %d\n", __FUNCTION__, fence->id); in lp_fence_destroy()
91 debug_printf("%s %d\n", __FUNCTION__, fence->id); in lp_fence_signal()
99 debug_printf("%s count=%u rank=%u\n", __FUNCTION__, in lp_fence_signal()
119 debug_printf("%s %d\n", __FUNCTION__, f->id); in lp_fence_wait()
141 debug_printf("%s %d\n", __FUNCTION__, f->id); in lp_fence_timedwait()
Dlp_linear.c97 debug_printf(" -- w not constant\n"); in lp_fs_linear_run()
113 debug_printf(" -- const[%d] out of range %f\n", i, val); in lp_fs_linear_run()
155 debug_printf(" -- init_interp(%d) failed\n", i); in lp_fs_linear_run()
187 debug_printf(" -- init_sampler(%d) failed\n", i); in lp_fs_linear_run()
294 debug_printf(" -- too many inputs/constants\n"); in lp_linear_check_variant()
319 debug_printf(" -- samp[%d]: texcoord not perspective\n", i); in lp_linear_check_variant()
327 debug_printf(" -- samp[%d]: check_sampler failed\n", i); in lp_linear_check_variant()
336 debug_printf(" -- no linear shader\n"); in lp_linear_check_variant()
357 debug_printf("linear input mask: 0x%x\n", variant->linear_input_mask); in lp_linear_check_variant()
365 debug_printf(" ----> no linear path for this variant\n"); in lp_linear_check_variant()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_video_encoder_bitstream_builder_h264.cpp131 debug_printf( in build_sps()
191 debug_printf( in build_pps()
211 debug_printf("[D3D12 d3d12_video_bitstream_builder_h264] H264_PPS values below:\n"); in print_pps()
212 debug_printf("pic_parameter_set_id: %d\n", pps.pic_parameter_set_id); in print_pps()
213 debug_printf("seq_parameter_set_id: %d\n", pps.seq_parameter_set_id); in print_pps()
214 debug_printf("entropy_coding_mode_flag: %d\n", pps.entropy_coding_mode_flag); in print_pps()
215 debug_printf("pic_order_present_flag: %d\n", pps.pic_order_present_flag); in print_pps()
216 debug_printf("num_ref_idx_l0_active_minus1: %d\n", pps.num_ref_idx_l0_active_minus1); in print_pps()
217 debug_printf("num_ref_idx_l1_active_minus1: %d\n", pps.num_ref_idx_l1_active_minus1); in print_pps()
218 debug_printf("constrained_intra_pred_flag: %d\n", pps.constrained_intra_pred_flag); in print_pps()
[all …]
Dd3d12_video_dec_h264.cpp67debug_printf("[d3d12_video_decoder_store_converted_dxva_picparams_from_pipe_input] DXVA_PicParams_… in d3d12_video_decoder_refresh_dpb_active_references_h264()
129 debug_printf( in d3d12_video_decoder_prepare_current_frame_references_h264()
140debug_printf("[d3d12_video_decoder_h264] Upper layer reported %d slices for this frame, parsing th… in d3d12_video_decoder_prepare_dxva_slices_control_h264()
159debug_printf("[d3d12_video_decoder_h264] Detected slice (NALU Type %d) index %" PRIu32 " with size… in d3d12_video_decoder_prepare_dxva_slices_control_h264()
241 debug_printf("\t\tIndex7Bits: %d\n" in d3d12_video_decoder_log_pic_entry_h264()
252 debug_printf("\n=============================================\n"); in d3d12_video_decoder_log_pic_params_h264()
253 debug_printf("wFrameWidthInMbsMinus1 = %d\n", pPicParams->wFrameWidthInMbsMinus1); in d3d12_video_decoder_log_pic_params_h264()
254 debug_printf("wFrameHeightInMbsMinus1 = %d\n", pPicParams->wFrameHeightInMbsMinus1); in d3d12_video_decoder_log_pic_params_h264()
255 debug_printf("CurrPic.Index7Bits = %d\n", pPicParams->CurrPic.Index7Bits); in d3d12_video_decoder_log_pic_params_h264()
256 debug_printf("CurrPic.AssociatedFlag = %d\n", pPicParams->CurrPic.AssociatedFlag); in d3d12_video_decoder_log_pic_params_h264()
[all …]
Dd3d12_video_proc.cpp38 debug_printf("[d3d12_video_processor] d3d12_video_processor_begin_frame - " in d3d12_video_processor_begin_frame()
64debug_printf("d3d12_video_processor_begin_frame: Beginning new scene with Output ID3D12Resource: %… in d3d12_video_processor_begin_frame()
73 debug_printf("[d3d12_video_processor] d3d12_video_processor_end_frame - " in d3d12_video_processor_end_frame()
97debug_printf("[d3d12_video_processor] d3d12_video_processor_end_frame - Attempting to re-create ID… in d3d12_video_processor_end_frame()
112 debug_printf("[d3d12_video_processor] d3d12_video_processor_end_frame - Failure when " in d3d12_video_processor_end_frame()
165debug_printf("d3d12_video_processor_process_frame: Adding Input ID3D12Resource: %p to scene (Outpu… in d3d12_video_processor_process_frame()
166debug_printf("d3d12_video_processor_process_frame: Input box: top: %d left: %d right: %d bottom: %… in d3d12_video_processor_process_frame()
167debug_printf("d3d12_video_processor_process_frame: Output box: top: %d left: %d right: %d bottom: … in d3d12_video_processor_process_frame()
168debug_printf("d3d12_video_processor_process_frame: Requested alpha blend mode %d global alpha: %f … in d3d12_video_processor_process_frame()
234debug_printf("ProcessFrame InArgs Orientation %d \n\tSrc top: %d left: %d right: %d bottom: %d\n\t… in d3d12_video_processor_process_frame()
[all …]
Dd3d12_video_enc.cpp63debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush - Flushing pD3D12Enc->base.context a… in d3d12_video_encoder_flush()
71debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush started. Nothing to flush, all up to… in d3d12_video_encoder_flush()
73debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush started. Will flush video queue work… in d3d12_video_encoder_flush()
79 debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush" in d3d12_video_encoder_flush()
97debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush - Can't close command list with HR %… in d3d12_video_encoder_flush()
105debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush - ExecuteCommandLists finished on si… in d3d12_video_encoder_flush()
111 debug_printf( in d3d12_video_encoder_flush()
119 debug_printf( in d3d12_video_encoder_flush()
128 debug_printf("[d3d12_video_encoder] d3d12_video_encoder_flush" in d3d12_video_encoder_flush()
135 debug_printf( in d3d12_video_encoder_flush()
[all …]
Dd3d12_video_dec.cpp83debug_printf("[d3d12_video_decoder] d3d12_video_create_decoder - D3D12 Device has no Video support… in d3d12_video_create_decoder()
88 debug_printf("[d3d12_video_decoder] d3d12_video_create_decoder - Failure on " in d3d12_video_create_decoder()
94 debug_printf( in d3d12_video_create_decoder()
100 debug_printf("[d3d12_video_decoder] d3d12_video_create_decoder - Failure on " in d3d12_video_create_decoder()
110 debug_printf("CheckFeatureSupport failed with HR %x\n", hr); in d3d12_video_create_decoder()
173debug_printf("[d3d12_video_decoder] d3d12_video_decoder_begin_frame finalized for fenceValue: %d\n… in d3d12_video_decoder_begin_frame()
190debug_printf("[d3d12_video_decoder] d3d12_video_decoder_decode_bitstream started for fenceValue: %… in d3d12_video_decoder_decode_bitstream()
234debug_printf("[d3d12_video_decoder] d3d12_video_decoder_decode_bitstream multiple slices on same c… in d3d12_video_decoder_decode_bitstream()
291debug_printf("[d3d12_video_decoder] d3d12_video_decoder_decode_bitstream finalized for fenceValue:… in d3d12_video_decoder_decode_bitstream()
328 debug_printf("[d3d12_video_decoder] d3d12_video_decoder_end_frame started for fenceValue: %d\n", in d3d12_video_decoder_end_frame()
[all …]
Dd3d12_video_encoder_nalu_writer_h264.cpp245 debug_printf("rbsp.create_bitstream(MAX_COMPRESSED_SPS) failed\n"); in sps_to_nalu_bytes()
250 debug_printf("nalu.create_bitstream(2 * MAX_COMPRESSED_SPS) failed\n"); in sps_to_nalu_bytes()
256 debug_printf("write_sps_bytes(&rbsp, pSPS) didn't write any bytes.\n"); in sps_to_nalu_bytes()
261 debug_printf("wrap_sps_nalu(&nalu, &rbsp) didn't write any bytes.\n"); in sps_to_nalu_bytes()
290 debug_printf("rbsp.create_bitstream(MAX_COMPRESSED_PPS) failed\n"); in pps_to_nalu_bytes()
295 debug_printf("nalu.create_bitstream(2 * MAX_COMPRESSED_PPS) failed\n"); in pps_to_nalu_bytes()
302 debug_printf("write_pps_bytes(&rbsp, pPPS, bIsHighProfile) didn't write any bytes.\n"); in pps_to_nalu_bytes()
307 debug_printf("wrap_pps_nalu(&nalu, &rbsp) didn't write any bytes.\n"); in pps_to_nalu_bytes()
333 debug_printf("rbsp.create_bitstream(8) failed\n"); in write_end_of_stream_nalu()
337 debug_printf("nalu.create_bitstream(2 * MAX_COMPRESSED_PPS) failed\n"); in write_end_of_stream_nalu()
[all …]
Dd3d12_dxgi_screen.cpp44 debug_printf("D3D12: failed to load DXGI.DLL\n"); in get_dxgi_factory()
53 debug_printf("D3D12: failed to load CreateDXGIFactory2 from DXGI.DLL\n"); in get_dxgi_factory()
66 debug_printf("D3D12: CreateDXGIFactory2 failed: %08x\n", hr); in get_dxgi_factory()
81 debug_printf("D3D12: requested adapter missing, falling back to auto-detection...\n"); in choose_dxgi_adapter()
88 debug_printf("D3D12: failed to enum warp adapter\n"); in choose_dxgi_adapter()
164 debug_printf("D3D12: no suitable adapter\n"); in d3d12_init_dxgi_screen()
170 debug_printf("D3D12: failed to retrieve adapter description\n"); in d3d12_init_dxgi_screen()
192 debug_printf("D3D12: failed to initialize DXGI screen\n"); in d3d12_init_dxgi_screen()
Dd3d12_video_enc_h264.cpp67debug_printf("[d3d12_video_encoder_h264] d3d12_video_encoder_update_current_rate_control_h264 D3D1… in d3d12_video_encoder_update_current_rate_control_h264()
88debug_printf("[d3d12_video_encoder_h264] d3d12_video_encoder_update_current_rate_control_h264 inva… in d3d12_video_encoder_update_current_rate_control_h264()
211 debug_printf( in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
218 debug_printf("[d3d12_video_encoder_h264] Using multi slice encoding mode: " in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
223debug_printf("[d3d12_video_encoder_h264] Requested slice control mode is not supported: All slices… in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
237 debug_printf("[d3d12_video_encoder_h264] Using multi slice encoding mode: " in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
248 debug_printf("[d3d12_video_encoder_h264] Using multi slice encoding mode: " in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
256 debug_printf( in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
263debug_printf("[d3d12_video_encoder_h264] Requested slice control mode is not supported: All slices… in d3d12_video_encoder_negotiate_current_h264_slices_configuration()
486debug_printf("[d3d12_video_encoder_h264] Upper layer is requesting pic_order_cnt_type %d but D3D12… in d3d12_video_encoder_update_h264_gop_configuration()
[all …]
Dd3d12_dxcore_screen.cpp42 debug_printf("D3D12: failed to load DXCore.DLL\n"); in get_dxcore_factory()
48 debug_printf("D3D12: failed to load DXCoreCreateAdapterFactory from DXCore.DLL\n"); in get_dxcore_factory()
55 debug_printf("D3D12: DXCoreCreateAdapterFactory failed: %08x\n", hr); in get_dxcore_factory()
69 debug_printf("D3D12: requested adapter missing, falling back to auto-detection...\n"); in choose_dxcore_adapter()
109debug_printf("D3D12: Couldn't find an adapter containing the substring (%s)\n", adapter_name); in choose_dxcore_adapter()
194 debug_printf("D3D12: no suitable adapter\n"); in d3d12_init_dxcore_screen()
208 debug_printf("D3D12: failed to retrieve adapter description\n"); in d3d12_init_dxcore_screen()
221 debug_printf("D3D12: failed to initialize DXCore screen\n"); in d3d12_init_dxcore_screen()
/third_party/cups-filters/utils/
Dcups-browsed.c743 debug_printf(const char *format, ...) { in debug_printf() function
1288 debug_printf("HTTP timeout! (consider increasing HttpLocalTimeout/HttpRemoteTimeout value)\n"); in http_timeout_cb()
1301debug_printf("cups-browsed: Creating http connection to local CUPS daemon via domain socket: %s\n", in http_connect_local()
1304 debug_printf("cups-browsed: Creating http connection to local CUPS daemon: %s:%d\n", in http_connect_local()
1313debug_printf("cups-browsed: Failed creating http connection to local CUPS daemon via domain socket… in http_connect_local()
1316 debug_printf("cups-browsed: Failed creating http connection to local CUPS daemon: %s:%d\n", in http_connect_local()
2621 debug_printf("check_printer_with_options: Run out of memory.\n"); in check_printer_with_options()
2908 debug_printf("Merged attributes for the cluster %s : \n", cluster_name); in get_cluster_attributes()
2910 debug_printf(" Attr: %s\n", in get_cluster_attributes()
2913 debug_printf(" Value: %s\n", valuebuffer); in get_cluster_attributes()
[all …]
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_ext_rendertexture.c131 debug_printf("No rendering context in wglBindTexImageARB()\n"); in wglBindTexImageARB()
138 debug_printf("Invalid pbuffer handle in wglBindTexImageARB()\n"); in wglBindTexImageARB()
145 debug_printf("Invalid buffer 0x%x in wglBindTexImageARB()\n", iBuffer); in wglBindTexImageARB()
152 debug_printf("no texture target in wglBindTexImageARB()\n"); in wglBindTexImageARB()
158 debug_printf("no texture format in wglBindTexImageARB()\n"); in wglBindTexImageARB()
178 debug_printf("stw_make_current(#1) failed in wglBindTexImageARB()\n"); in wglBindTexImageARB()
189 debug_printf("stw_make_current(#2) failed in wglBindTexImageARB()\n"); in wglBindTexImageARB()
205 debug_printf("Invalid pbuffer handle in wglReleaseTexImageARB()\n"); in wglReleaseTexImageARB()
212 debug_printf("Invalid buffer 0x%x in wglReleaseTexImageARB()\n", iBuffer); in wglReleaseTexImageARB()
244 debug_printf("Invalid cube face 0x%x in " in wglSetPbufferAttribARB()
[all …]
/third_party/mesa3d/src/util/
Du_debug_memory.c132 debug_printf("%s:%u:%s: out of memory when trying to allocate %lu bytes\n", in debug_malloc()
175 debug_printf("%s:%u:%s: freeing bad or corrupted memory %p\n", in debug_free()
184 debug_printf("%s:%u:%s: buffer overflow %p\n", in debug_free()
239 debug_printf("%s:%u:%s: reallocating bad or corrupted memory %p\n", in debug_realloc()
248 debug_printf("%s:%u:%s: buffer overflow %p\n", in debug_realloc()
257 debug_printf("%s:%u:%s: out of memory when trying to allocate %lu bytes\n", in debug_realloc()
318 debug_printf("%s:%u:%s: bad or corrupted memory %p\n", in debug_memory_end()
326 debug_printf("%s:%u:%s: %lu bytes at %p not freed\n", in debug_memory_end()
336 debug_printf("%s:%u:%s: buffer overflow %p\n", in debug_memory_end()
344 debug_printf("Total of %lu KB of system memory apparently leaked\n", in debug_memory_end()
[all …]
Du_debug.c111 debug_printf("%s (%d dwords%s)\n", name, size/4, in debug_print_blob()
115 debug_printf("%d:\t%08x\n", i, ublob[i]); in debug_print_blob()
150 debug_printf("%s: %s = %s\n", __FUNCTION__, name, in debug_get_option()
183 debug_printf("%s: %s = %s\n", __FUNCTION__, name, in debug_get_bool_option()
210 debug_printf("%s: %s = %li\n", __FUNCTION__, name, result); in debug_get_num_option()
227 debug_printf("Illegal version specified for %s : %s\n", name, str); in debug_get_version_option()
235 debug_printf("%s: %s = %u.%u\n", __FUNCTION__, name, *major, *minor); in debug_get_version_option()
319 debug_printf("%s: %s = 0x%"PRIx64" (%s)\n", in debug_get_flags_option()
322 debug_printf("%s: %s = 0x%"PRIx64"\n", __FUNCTION__, name, result); in debug_get_flags_option()
423 debug_printf(" "); in debug_funclog_enter()
[all …]
Du_mm.c36 debug_printf("Memory heap %p:\n", (void *) heap); in u_mmDumpMemInfo()
38 debug_printf(" heap == 0\n"); in u_mmDumpMemInfo()
45 debug_printf(" Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
54 debug_printf("'\nMemory stats: total = %d, used = %d, free = %d\n", in u_mmDumpMemInfo()
56 debug_printf("\nFree list:\n"); in u_mmDumpMemInfo()
59 debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
65 debug_printf("End of memory blocks\n"); in u_mmDumpMemInfo()
262 debug_printf("block already free\n"); in u_mmFreeMem()
266 debug_printf("block is reserved\n"); in u_mmFreeMem()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_type.c98 debug_printf("%s:%d: type is not 16 bits\n", __FILE__, __LINE__); in lp_check_elem_type()
104 debug_printf("%s:%d: type is not float\n", __FILE__, __LINE__); in lp_check_elem_type()
110 debug_printf("%s:%d: type is not double\n", __FILE__, __LINE__); in lp_check_elem_type()
121 debug_printf("%s:%d: element is not integer\n", __FILE__, __LINE__); in lp_check_elem_type()
126 debug_printf("%s:%d: type width mismatch %d != %d\n", in lp_check_elem_type()
362 debug_printf("Vector [%u] of %u-bit Integer\n", len, b); in lp_dump_llvmtype()
365 debug_printf("Vector [%u] of %s\n", len, lp_typekind_name(ke)); in lp_dump_llvmtype()
372 debug_printf("Array [%u] of %s\n", len, lp_typekind_name(ke)); in lp_dump_llvmtype()
376 debug_printf("%u-bit Integer\n", b); in lp_dump_llvmtype()
380 debug_printf("Pointer to "); in lp_dump_llvmtype()
[all …]
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_validator.cpp50 debug_printf("DXIL: Unable to get path to self"); in load_dxil_mod()
56 debug_printf("DXIL: Unable to get path to self"); in load_dxil_mod()
62 debug_printf("DXIL: Unable to get path to DXIL.dll next to self"); in load_dxil_mod()
75 debug_printf("DXIL: Failed to load DxcCreateInstance from DXIL.dll\n"); in create_dxc_validator()
83 debug_printf("DXIL: Failed to create validator\n"); in create_dxc_validator()
177 debug_printf("DXIL: Failed to load DXIL.dll\n"); in dxil_create_validator()
208 debug_printf("DXIL: Failed to load DxcCreateInstance from " in dxil_create_validator()
213 debug_printf("DXIL: Unable to create IDxcLibrary instance\n"); in dxil_create_validator()
217 debug_printf("DXIL: Unable to create IDxcCompiler instance\n"); in dxil_create_validator()
309 debug_printf("DXIL: validation failed, but lacking IDxcLibrary" in dxil_validate_module()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_debug_flush.c120 debug_printf("Debug flush buffer creation failed.\n"); in debug_flush_buf_create()
121 debug_printf("Debug flush checking for this buffer will be incomplete.\n"); in debug_flush_buf_create()
177 debug_printf("Debug flush context creation failed.\n"); in debug_flush_ctx_create()
178 debug_printf("Debug flush checking for this context will be incomplete.\n"); in debug_flush_ctx_create()
193 debug_printf("%s ", s); in debug_flush_alert()
195 debug_printf("%s backtrace follows:\n", op); in debug_flush_alert()
198 debug_printf("No %s backtrace was captured.\n", op); in debug_flush_alert()
201 debug_printf("**********************************\n"); in debug_flush_alert()
203 debug_printf("*********END OF MESSAGE***********\n\n\n"); in debug_flush_alert()
334 debug_printf("Debug flush command buffer reference creation failed.\n"); in debug_flush_cb_reference()
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dqmd.h35 debug_printf(" %-36s: "o"\n", #f, val); \
41 debug_printf(" %-36s: "o"\n", name, val); \
50 debug_printf(" %-36s: %s\n", #f, ev[val]); \
52 debug_printf(" %-36s: UNKNOWN 0x%x\n", #f, val); \
60 debug_printf(" %-36s: %s\n", name, ev[val]); \
62 debug_printf(" %-36s: UNKNOWN 0x%x\n", name, val); \
Dnvc0_video_bsp.c29 debug_printf("Cur seq: %x, bsp byte ofs: %x\n", comm->bsp_cur_index, comm->byte_ofs); in dump_comm_bsp()
30 debug_printf("Status: %08x, pos: %08x\n", comm->status[idx], comm->pos[idx]); in dump_comm_bsp()
42 debug_printf("map failed: %i %s\n", ret, strerror(-ret)); in nvc0_decoder_bsp_begin()
80 debug_printf("reallocating bsp %u -> %u failed with %i\n", in nvc0_decoder_bsp_next()
87 debug_printf("map failed: %i %s\n", ret, strerror(-ret)); in nvc0_decoder_bsp_next()
112 debug_printf("reallocating inter %u -> %u failed with %i\n", in nvc0_decoder_bsp_next()
119 debug_printf("map failed: %i %s\n", ret, strerror(-ret)); in nvc0_decoder_bsp_next()
225 debug_printf("b%u: %u\n", dec->fence_seq, dec->fence_map[0]); in nvc0_decoder_bsp_end()

1234567891011