| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/tests/ |
| H A D | r300_compiler_tests.c | 34 unsigned pass = 1; local in function:main 35 pass &= radeon_compiler_optimize_run_tests(); 36 pass &= radeon_compiler_regalloc_run_tests(); 37 pass &= radeon_compiler_util_run_tests(); 39 if (pass) {
|
| H A D | unit_test.c | 37 unsigned pass = 1; local in function:run_tests 42 printf("Test %s (%d/%d) pass\n", tests[i].name, 43 tests[i].result.pass, tests[i].result.test_count); 44 if (tests[i].result.pass != tests[i].result.test_count) { 45 pass = 0; 48 return pass; 60 result->pass++;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/tests/ |
| H A D | r300_compiler_tests.c | 34 unsigned pass = 1; local in function:main 35 pass &= radeon_compiler_optimize_run_tests(); 36 pass &= radeon_compiler_regalloc_run_tests(); 37 pass &= radeon_compiler_util_run_tests(); 39 if (pass) {
|
| H A D | unit_test.c | 37 unsigned pass = 1; local in function:run_tests 42 printf("Test %s (%d/%d) pass\n", tests[i].name, 43 tests[i].result.pass, tests[i].result.test_count); 44 if (tests[i].result.pass != tests[i].result.test_count) { 45 pass = 0; 48 return pass; 60 result->pass++;
|
| /xsrc/external/mit/libepoxy/dist/test/ |
| H A D | glx_alias_prefer_same_name.c | 68 bool pass = true; local in function:main 77 pass = pass && last_call == CORE_FUNC_VAL; 79 pass = pass && last_call == EXT_FUNC_VAL; 81 return pass != true;
|
| H A D | glx_beginend.c | 95 bool pass = true; local in function:main 103 pass = pass && test_with_epoxy(); 104 pass = pass && test_without_epoxy(); 106 return pass != true;
|
| H A D | gl_version.c | 77 bool pass = true; local in function:main 81 pass = pass && test_version("3.0 Mesa 13.0.6", 30, 83 pass = pass && test_version("OpenGL ES 3.2 Mesa 18.3.0-devel", 32, 85 pass = pass && test_version("4.5.0 NVIDIA 384.130", 45, 88 return pass != true;
|
| H A D | cgl_epoxy_api.c | 44 bool pass = true; local in function:main 54 pass = false; 60 pass = false; 66 pass = false; 76 pass = glIsShader(shader); 82 return pass != true;
|
| H A D | glx_static.c | 48 bool pass = true; local in function:main 66 pass = false; 69 return pass != true;
|
| H A D | egl_gl.c | 51 bool pass = true; local in function:make_egl_current_and_test 57 pass = false; 63 pass = false; 70 pass = glIsShader(shader); 72 return pass; 115 bool pass = true; local in function:main 127 pass = make_egl_current_and_test(egl_dpy, egl_ctx) && pass; 129 return pass != true;
|
| H A D | wgl_core_and_exts.c | 32 bool pass = true; local in function:test_function 52 pass = false; 63 pass = false; 70 return !pass;
|
| H A D | glx_glxgetprocaddress_nocontext.c | 45 bool pass = true; local in function:main 56 return pass != true;
|
| H A D | glx_has_extension_nocontext.c | 45 bool pass = true; local in function:main 55 return pass != true;
|
| H A D | glx_public_api.c | 113 bool pass = true; local in function:main 118 pass = test_gl_version() && pass; 119 pass = test_glx_version() && pass; 120 pass = test_glx_extension_supported() && pass; 122 return pass != true;
|
| H A D | egl_epoxy_api.c | 50 bool pass = true; local in function:make_egl_current_and_test 56 pass = false; 62 pass = false; 68 pass = false; 78 pass = glIsShader(shader); 80 return pass; 121 bool pass = true; local in function:main 145 pass = make_egl_current_and_test(dpy, egl_ctx); 147 return pass != true;
|
| H A D | egl_has_extension_nocontext.c | 49 bool pass = true; local in function:main 74 return pass != true;
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| H A D | v3dv_pass.c | 45 struct v3dv_render_pass *pass) 47 for (uint32_t i = 0; i < pass->attachment_count; i++) { 48 pass->attachments[i].first_subpass = pass->subpass_count - 1; 49 pass->attachments[i].last_subpass = 0; 50 if (pass->multiview_enabled) { 52 pass->attachments[i].views[j].first_subpass = pass->subpass_count - 1; 53 pass->attachments[i].views[j].last_subpass = 0; 58 for (uint32_t i = 0; i < pass 44 pass_find_subpass_range_for_attachments(struct v3dv_device * device,struct v3dv_render_pass * pass) argument 129 struct v3dv_render_pass *pass; local in function:v3dv_CreateRenderPass 278 subpass_get_granularity(struct v3dv_device * device,struct v3dv_render_pass * pass,uint32_t subpass_idx,VkExtent2D * granularity) argument 373 v3dv_subpass_area_is_tile_aligned(struct v3dv_device * device,const VkRect2D * area,struct v3dv_framebuffer * fb,struct v3dv_render_pass * pass,uint32_t subpass_idx) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| H A D | panvk_pass.c | 40 struct panvk_render_pass *pass; local in function:panvk_CreateRenderPass2 47 size = sizeof(*pass); 48 size += pCreateInfo->subpassCount * sizeof(pass->subpasses[0]); 50 size += pCreateInfo->attachmentCount * sizeof(pass->attachments[0]); 52 pass = vk_object_zalloc(&device->vk, pAllocator, size, 54 if (pass == NULL) 57 pass->attachment_count = pCreateInfo->attachmentCount; 58 pass->subpass_count = pCreateInfo->subpassCount; 59 pass->attachments = (void *) pass [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | radv_pass.c | 32 radv_render_pass_add_subpass_dep(struct radv_render_pass *pass, argument 39 * vkCmdPipelineBarrier() inside the render pass and the driver should 40 * only do the barrier when called, not when starting the render pass. 51 pass->end_barrier.src_stage_mask |= dep->srcStageMask; 52 pass->end_barrier.src_access_mask |= dep->srcAccessMask; 53 pass->end_barrier.dst_access_mask |= dep->dstAccessMask; 56 pass->subpasses[dst].start_barrier.src_stage_mask |= dep->srcStageMask; 57 pass->subpasses[dst].start_barrier.src_access_mask |= dep->srcAccessMask; 58 pass->subpasses[dst].start_barrier.dst_access_mask |= dep->dstAccessMask; 63 radv_render_pass_compile(struct radv_render_pass *pass) argument 148 struct radv_render_pass *pass; local in function:radv_CreateRenderPass 307 struct radv_render_pass *pass; local in function:radv_CreateRenderPass2KHR [all...] |
| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| H A D | vn_render_pass.c | 31 #define REPLACE_PRESENT_SRC(pass, atts, att_count, out_atts) \ 34 pass->present_src_attachments; \ 36 _acquire_atts + pass->acquire_count; \ 74 vn_render_pass_replace_present_src(struct vn_render_pass *pass, argument 78 REPLACE_PRESENT_SRC(pass, create_info->pAttachments, 83 vn_render_pass_replace_present_src2(struct vn_render_pass *pass, argument 87 REPLACE_PRESENT_SRC(pass, create_info->pAttachments, 92 vn_render_pass_setup_present_src_barriers(struct vn_render_pass *pass) argument 95 for (uint32_t i = 0; i < pass->present_src_count; i++) { 97 &pass 123 struct vn_render_pass *pass = vk_zalloc( local in function:vn_render_pass_create 156 struct vn_render_pass *pass = local in function:vn_CreateRenderPass 206 struct vn_render_pass *pass = local in function:vn_CreateRenderPass2 247 struct vn_render_pass *pass = vn_render_pass_from_handle(renderPass); local in function:vn_DestroyRenderPass 266 struct vn_render_pass *pass = vn_render_pass_from_handle(renderPass); local in function:vn_GetRenderAreaGranularity [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/ |
| H A D | lvp_pass.c | 29 lvp_render_pass_compile(struct lvp_render_pass *pass) argument 31 for (uint32_t i = 0; i < pass->subpass_count; i++) { 32 struct lvp_subpass *subpass = &pass->subpasses[i]; 41 &pass->attachments[subpass_att->attachment]; 47 for (uint32_t i = 0; i < pass->subpass_count; i++) { 48 struct lvp_subpass *subpass = &pass->subpasses[i]; 71 &pass->attachments[subpass_att->attachment]; 88 &pass->attachments[subpass_att->attachment]; 97 &pass->attachments[a]; 158 struct lvp_render_pass *pass; local in function:lvp_CreateRenderPass2 [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | tu_pass.c | 38 struct tu_render_pass *pass; local in function:tu_CreateRenderPass 45 size = sizeof(*pass); 46 size += pCreateInfo->subpassCount * sizeof(pass->subpasses[0]); 48 size += pCreateInfo->attachmentCount * sizeof(pass->attachments[0]); 50 pass = vk_alloc2(&device->alloc, pAllocator, size, 8, 52 if (pass == NULL) 55 memset(pass, 0, size); 56 pass->attachment_count = pCreateInfo->attachmentCount; 57 pass->subpass_count = pCreateInfo->subpassCount; 58 pass 225 struct tu_render_pass *pass; local in function:tu_CreateRenderPass2KHR [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | anv_pass.c | 31 struct anv_render_pass *pass, 49 pass->subpass_flushes[pass->subpass_count] |= 52 assert(dep->dstSubpass < pass->subpass_count); 53 pass->subpass_flushes[dep->dstSubpass] |= 58 pass->subpass_flushes[0] |= 61 assert(dep->srcSubpass < pass->subpass_count); 62 pass->subpass_flushes[dep->srcSubpass + 1] |= 67 /* Do a second "compile" step on a render pass */ 69 anv_render_pass_compile(struct anv_render_pass *pass) argument 30 anv_render_pass_add_subpass_dep(struct anv_device * device,struct anv_render_pass * pass,const VkSubpassDependency2KHR * dep) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| H A D | radv_pass.c | 32 radv_render_pass_add_subpass_dep(struct radv_render_pass *pass, const VkSubpassDependency2 *dep) argument 38 * vkCmdPipelineBarrier() inside the render pass and the driver should 39 * only do the barrier when called, not when starting the render pass. 50 pass->end_barrier.src_stage_mask |= dep->srcStageMask; 51 pass->end_barrier.src_access_mask |= dep->srcAccessMask; 52 pass->end_barrier.dst_access_mask |= dep->dstAccessMask; 55 pass->subpasses[dst].start_barrier.src_stage_mask |= dep->srcStageMask; 56 pass->subpasses[dst].start_barrier.src_access_mask |= dep->srcAccessMask; 57 pass->subpasses[dst].start_barrier.dst_access_mask |= dep->dstAccessMask; 62 radv_render_pass_add_implicit_deps(struct radv_render_pass *pass) argument 183 radv_render_pass_compile(struct radv_render_pass * pass) argument 290 radv_destroy_render_pass(struct radv_device * device,const VkAllocationCallbacks * pAllocator,struct radv_render_pass * pass) argument 382 struct radv_render_pass *pass; local in function:radv_CreateRenderPass2 [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_pass.c | 29 anv_render_pass_add_subpass_dep(struct anv_render_pass *pass, argument 33 pass->subpass_flushes[pass->subpass_count] |= 36 assert(dep->dstSubpass < pass->subpass_count); 37 pass->subpass_flushes[dep->dstSubpass] |= 42 pass->subpass_flushes[0] |= 45 assert(dep->srcSubpass < pass->subpass_count); 46 pass->subpass_flushes[dep->srcSubpass + 1] |= 51 /* Do a second "compile" step on a render pass */ 53 anv_render_pass_compile(struct anv_render_pass *pass) argument 231 struct anv_render_pass *pass; local in function:anv_CreateRenderPass 400 struct anv_render_pass *pass; local in function:anv_CreateRenderPass2KHR [all...] |