| /xsrc/external/mit/MesaLib/dist/src/vulkan/util/ |
| H A D | vk_alloc.h | 167 * VK_MULTIALLOC(ma) 168 * vk_multialloc_add(&ma, &main_ptr, 1); 169 * vk_multialloc_add(&ma, &substruct1, substruct1Count); 170 * vk_multialloc_add(&ma, &substruct2, substruct2Count); 172 * if (!vk_multialloc_alloc(&ma, pAllocator, VK_ALLOCATION_SCOPE_FOO)) 190 vk_multialloc_add_size_align(struct vk_multialloc *ma, argument 199 size_t offset = ALIGN_POT(ma->size, align); 200 ma->size = offset + size; 201 ma->align = MAX2(ma 229 vk_multialloc_alloc(struct vk_multialloc * ma,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument 264 vk_multialloc_alloc2(struct vk_multialloc * ma,const VkAllocationCallbacks * parent_alloc,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument 273 vk_multialloc_zalloc(struct vk_multialloc * ma,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument 288 vk_multialloc_zalloc2(struct vk_multialloc * ma,const VkAllocationCallbacks * parent_alloc,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument [all...] |
| H A D | vk_render_pass.c | 77 VK_MULTIALLOC(ma); 78 VK_MULTIALLOC_DECL(&ma, VkRenderPassCreateInfo2, create_info, 1); 79 VK_MULTIALLOC_DECL(&ma, VkSubpassDescription2, subpasses, 81 VK_MULTIALLOC_DECL(&ma, VkAttachmentDescription2, attachments, 83 VK_MULTIALLOC_DECL(&ma, VkSubpassDependency2, dependencies, 85 VK_MULTIALLOC_DECL(&ma, VkAttachmentReference2, references, 87 if (!vk_multialloc_alloc2(&ma, &device->alloc, pAllocator,
|
| H A D | vk_object.c | 89 struct vk_multialloc *ma, 93 void *ptr = vk_multialloc_alloc2(ma, &device->alloc, alloc, 105 struct vk_multialloc *ma, 109 void *ptr = vk_multialloc_zalloc2(ma, &device->alloc, alloc, 88 vk_object_multialloc(struct vk_device * device,struct vk_multialloc * ma,const VkAllocationCallbacks * alloc,VkObjectType obj_type) argument 104 vk_object_multizalloc(struct vk_device * device,struct vk_multialloc * ma,const VkAllocationCallbacks * alloc,VkObjectType obj_type) argument
|
| H A D | vk_object.h | 136 struct vk_multialloc *ma, 142 struct vk_multialloc *ma,
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_pass.c | 236 ANV_MULTIALLOC(ma); 237 anv_multialloc_add(&ma, &pass, 1); 238 anv_multialloc_add(&ma, &subpasses, pCreateInfo->subpassCount); 239 anv_multialloc_add(&ma, &attachments, pCreateInfo->attachmentCount); 240 anv_multialloc_add(&ma, &subpass_flushes, pCreateInfo->subpassCount + 1); 248 anv_multialloc_add(&ma, &subpass_attachments, subpass_attachment_count); 250 if (!anv_multialloc_alloc2(&ma, &device->alloc, pAllocator, 257 memset(pass, 0, ma.size); 405 ANV_MULTIALLOC(ma); 406 anv_multialloc_add(&ma, [all...] |
| H A D | anv_pipeline_cache.c | 50 ANV_MULTIALLOC(ma); 51 anv_multialloc_add(&ma, &shader, 1); 52 anv_multialloc_add_size(&ma, &key, sizeof(*key) + key_size); 53 anv_multialloc_add_size(&ma, &prog_data, prog_data_size); 54 anv_multialloc_add(&ma, &prog_data_param, prog_data_in->nr_params); 57 anv_multialloc_add_size(&ma, &xfb_info, xfb_info_size); 59 anv_multialloc_add(&ma, &surface_to_descriptor, 61 anv_multialloc_add(&ma, &sampler_to_descriptor, 64 if (!anv_multialloc_alloc(&ma, &device->alloc,
|
| H A D | anv_private.h | 497 * ANV_MULTIALLOC(ma) 498 * anv_multialloc_add(&ma, &main_ptr, 1); 499 * anv_multialloc_add(&ma, &substruct1, substruct1Count); 500 * anv_multialloc_add(&ma, &substruct2, substruct2Count); 502 * if (!anv_multialloc_alloc(&ma, pAllocator, VK_ALLOCATION_SCOPE_FOO)) 521 _anv_multialloc_add(struct anv_multialloc *ma, argument 524 size_t offset = align_u64(ma->size, align); 525 ma->size = offset + size; 526 ma->align = MAX2(ma 543 anv_multialloc_alloc(struct anv_multialloc * ma,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument 579 anv_multialloc_alloc2(struct anv_multialloc * ma,const VkAllocationCallbacks * parent_alloc,const VkAllocationCallbacks * alloc,VkSystemAllocationScope scope) argument [all...] |
| H A D | anv_descriptor_set.c | 334 ANV_MULTIALLOC(ma); 335 anv_multialloc_add(&ma, &set_layout, 1); 336 anv_multialloc_add(&ma, &bindings, max_binding + 1); 337 anv_multialloc_add(&ma, &samplers, immutable_sampler_count); 339 if (!anv_multialloc_alloc(&ma, &device->alloc,
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | anv_wsi.c | 132 VK_MULTIALLOC(ma); 133 VK_MULTIALLOC_DECL(&ma, uint64_t, values, 135 VK_MULTIALLOC_DECL(&ma, uint32_t, syncobjs, 138 if (!vk_multialloc_alloc(&ma, &device->vk.alloc,
|
| H A D | anv_pass.c | 332 VK_MULTIALLOC(ma); 333 VK_MULTIALLOC_DECL(&ma, struct anv_render_pass, pass, 1); 334 VK_MULTIALLOC_DECL(&ma, struct anv_subpass, subpasses, 336 VK_MULTIALLOC_DECL(&ma, struct anv_render_pass_attachment, attachments, 338 VK_MULTIALLOC_DECL(&ma, enum anv_pipe_bits, subpass_flushes, 346 VK_MULTIALLOC_DECL(&ma, struct anv_subpass_attachment, subpass_attachments, 349 if (!vk_object_multizalloc(&device->vk, &ma, pAllocator,
|
| H A D | anv_pipeline_cache.c | 45 VK_MULTIALLOC(ma); 46 VK_MULTIALLOC_DECL(&ma, struct anv_shader_bin, shader, 1); 47 VK_MULTIALLOC_DECL_SIZE(&ma, struct anv_shader_bin_key, key, 49 VK_MULTIALLOC_DECL_SIZE(&ma, struct brw_stage_prog_data, prog_data, 51 VK_MULTIALLOC_DECL(&ma, struct brw_shader_reloc, prog_data_relocs, 53 VK_MULTIALLOC_DECL(&ma, uint32_t, prog_data_param, prog_data_in->nr_params); 55 VK_MULTIALLOC_DECL_SIZE(&ma, nir_xfb_info, xfb_info, 59 VK_MULTIALLOC_DECL(&ma, struct anv_pipeline_binding, surface_to_descriptor, 61 VK_MULTIALLOC_DECL(&ma, struct anv_pipeline_binding, sampler_to_descriptor, 64 if (!vk_multialloc_alloc(&ma, [all...] |
| H A D | genX_query.c | 75 VK_MULTIALLOC(ma); 92 VK_MULTIALLOC_DECL(&ma, struct anv_query_pool, pool, 1); 144 vk_multialloc_add(&ma, &counter_pass, struct intel_perf_counter_pass, 146 vk_multialloc_add(&ma, &pass_query, struct intel_perf_query_info *, 164 if (!vk_object_multialloc(&device->vk, &ma, pAllocator,
|
| H A D | anv_descriptor_set.c | 385 VK_MULTIALLOC(ma); 386 VK_MULTIALLOC_DECL(&ma, struct anv_descriptor_set_layout, set_layout, 1); 387 VK_MULTIALLOC_DECL(&ma, struct anv_descriptor_set_binding_layout, 389 VK_MULTIALLOC_DECL(&ma, struct anv_sampler *, samplers, 392 if (!vk_object_multizalloc(&device->vk, &ma, NULL,
|
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-combine-float.c | 80 float ma, mr, mg, mb; local in function:combine_inner 90 ma = mask[i + 0]; 99 ma *= sa; 104 sa = ma; 108 ma = mask[i + 0]; 110 sa *= ma; 111 sr *= ma; 112 sg *= ma; 113 sb *= ma; 115 ma [all...] |
| H A D | pixman-fast-path.c | 319 uint32_t *mask_line, *mask, ma; local in function:fast_composite_add_n_8888_8888_ca 341 ma = *mask++; 343 if (ma) 348 UN8x4_MUL_UN8x4_ADD_UN8x4 (s, ma, d); 365 uint32_t *mask_line, *mask, ma; local in function:fast_composite_over_n_8888_8888_ca 388 ma = *mask++; 389 if (ma == 0xffffffff) 396 else if (ma) 401 UN8x4_MUL_UN8x4 (s, ma); 402 UN8x4_MUL_UN8 (ma, src 534 uint32_t *mask_line, *mask, ma; local in function:fast_composite_over_n_8888_0565_ca [all...] |
| H A D | pixman-sse2.c | 4854 __m128i ma = expand_alpha_rev_1x128 (unpack_32_1x128 (m)); local in function:sse2_composite_over_x888_8_8888 4857 ms = in_over_1x128 (&ms, &mask_00ff, &ma, &md); 4915 __m128i ma, md, ms; local in function:sse2_composite_over_x888_8_8888 4919 ma = expand_alpha_rev_1x128 (unpack_32_1x128 (m)); 4923 *dst = pack_1x128_32 (in_over_1x128 (&ms, &mask_00ff, &ma, &md)); 4987 __m128i ms, md, ma, msa; local in function:sse2_composite_over_8888_8_8888 4989 ma = expand_alpha_rev_1x128 (load_32_1x128 (m)); 4995 *dst = pack_1x128_32 (in_over_1x128 (&ms, &msa, &ma, &md)); 5060 __m128i ms, md, ma, msa; local in function:sse2_composite_over_8888_8_8888 5062 ma 5212 __m128i ms, md, ma, msa; local in function:sse2_composite_over_8888_8888_8888 5282 __m128i ms, md, ma, msa; local in function:sse2_composite_over_8888_8888_8888 5931 __m128i ms, md, ma, msa; local in function:FAST_BILINEAR_MAINLOOP_COMMON 6015 __m128i ms, md, ma, msa; local in function:FAST_BILINEAR_MAINLOOP_COMMON [all...] |
| /xsrc/external/mit/xf86-video-nv/dist/src/ |
| H A D | g80_display.c | 74 int na, ma, nb, mb, p; local in function:G80CalcPLL 106 for(ma = minMA; ma <= maxMA; ma++) 108 if(refclk / ma < minUA) 110 else if(refclk / ma > maxUA) 115 if(refclk * na / ma < minVcoA || refclk * na / ma > maxVcoA) 120 if(refclk * na / ma / mb < minUB) 122 else if(refclk * na / ma / m [all...] |
| /xsrc/external/mit/xf86-video-vboxvideo/dist/src/ |
| H A D | HGSMICommon.c | 209 rc = HGSMIMAInit(&pHeap->ma, &pHeap->area, NULL, 0, 0, pEnv); 223 HGSMIMAUninit(&pHeap->ma); 262 void *pvBuf = HGSMIMAAlloc(&pHeap->ma, cbBuffer); 269 HGSMIMAFree(&pHeap->ma, pvBuf);
|
| H A D | HGSMI.h | 71 HGSMIMADATA ma; /* Memory allocator */ member in struct:HGSMIHEAP
|
| /xsrc/external/mit/freetype/dist/src/sfnt/ |
| H A D | pngshim.c | 106 v82 ma = { 1, 1, 3, 3, 5, 5, 7, 7 }; local in function:premultiply_data 115 a = vector_shuffle( s1, ma ); /* A A A A A A A A */
|
| /xsrc/external/mit/xf86-video-nouveau/dist/src/ |
| H A D | nv10_exa.c | 551 uint32_t sc, sa, mc, ma; local in function:NV10EXAPrepareComposite 565 if (!setup_picture(pNv, pict_mask, mask, 1, &mc, &ma)) 570 PUSH_DATA (push, sa | ma); 578 PUSH_DATA(push, sc | ma);
|
| H A D | nv30_exa.c | 477 uint32_t sc, sa, mc, ma, solid[2]; local in function:NV30EXAPrepareComposite 493 if (!NV30EXAPicture(pScrn, pmPix, pmPict, 1, &mc, &ma, &solid[1])) 498 PUSH_DATA (push, sa | ma); 506 PUSH_DATA(push, sc | ma);
|
| /xsrc/external/mit/libXft/dist/src/ |
| H A D | xftcore.c | 774 CARD32 *mask, ma; local in function:_XftSmoothGlyphRgba 802 ma = *mask++; 803 if (ma == 0xffffffff) 820 else if (ma) 837 XftInOverC(src,srca,ma,d,0,m); 838 XftInOverC(src,srca,ma,d,8,n); 839 XftInOverC(src,srca,ma,d,16,o);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_sample.c | 1653 LLVMValueRef ma, mai, signma, signmabit, imahalfpos; local in function:lp_build_cube_lookup 1707 * s = 1/2 * ( sc / ma + 1) 1708 * t = 1/2 * ( tc / ma + 1) 1710 * s' = 1/2 * (sc' * ma - sc * ma') / ma^2 1711 * t' = 1/2 * (tc' * ma - tc * ma') / ma^2 1713 * dx.s = 0.5 * (dx.sc - sc * dx.ma / m [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_sample.c | 1790 LLVMValueRef ma, mai, signma, signmabit, imahalfpos; local in function:lp_build_cube_lookup 1844 * s = 1/2 * ( sc / ma + 1) 1845 * t = 1/2 * ( tc / ma + 1) 1847 * s' = 1/2 * (sc' * ma - sc * ma') / ma^2 1848 * t' = 1/2 * (tc' * ma - tc * ma') / ma^2 1850 * dx.s = 0.5 * (dx.sc - sc * dx.ma / m [all...] |