/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qpu.c | 270 int accesses = 0; in qpu_num_sf_accesses() local 295 accesses++; in qpu_num_sf_accesses() 297 accesses++; in qpu_num_sf_accesses() 301 accesses++; in qpu_num_sf_accesses() 304 accesses++; in qpu_num_sf_accesses() 312 accesses++; in qpu_num_sf_accesses() 315 return accesses; in qpu_num_sf_accesses()
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | transform_builder.h | 129 transform::BindingRemapper::AccessControls accesses; in impl() local 133 accesses[{config.old_binding, config.old_group}] = config.new_access; in impl() 137 binding_points, accesses, tb->builder()->build<bool>()); in impl()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | decompose_memory_access.cc | 50 /// offsets for storage and uniform buffer accesses. 306 std::unordered_map<const ast::Expression*, BufferAccess> accesses; member 307 /// The visited order of AST expressions (superset of #accesses) 411 /// AddAccess() adds the `expr -> access` map item to #accesses, and `expr` 417 accesses.emplace(expr, access); in AddAccess() 421 /// TakeAccess() removes the `node` item from #accesses (if it exists), 422 /// returning the BufferAccess. If #accesses does not hold an item for 427 auto lhs_it = accesses.find(node); in TakeAccess() 428 if (lhs_it == accesses.end()) { in TakeAccess() 432 accesses in TakeAccess() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleResolveTests.cpp | 1042 std::vector<tcu::ConstPixelBufferAccess> accesses; in verify() local 1046 accesses.push_back(tcu::ConstPixelBufferAccess(format, m_width, m_height, totalLayers(), ptr)); in verify() 1088 const Vec4 firstColor (accesses[0].getPixel(x, y, z)); in verify() 1105 const Vec4 color (accesses[attachmentNdx].getPixel(x, y, z)); in verify() 1130 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); in verify() local 1176 : accesses[0].getPixelUint(x, y, z)); in verify() 1197 const UVec4 color (accesses[attachmentNdx].getPixelUint(x, y, z)); in verify() 1216 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); in verify() local 1277 : accesses[0].getPixelInt(x, y, z)); in verify() 1298 const IVec4 color (accesses[attachmentNd in verify() 1317 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); verify() local 2176 std::vector<tcu::ConstPixelBufferAccess> accesses; verify() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleResolveTests.cpp | 1031 std::vector<tcu::ConstPixelBufferAccess> accesses; in verify() local 1035 accesses.push_back(tcu::ConstPixelBufferAccess(format, m_width, m_height, m_layerCount, ptr)); in verify() 1076 const Vec4 firstColor (accesses[0].getPixel(x, y, z)); in verify() 1093 const Vec4 color (accesses[attachmentNdx].getPixel(x, y, z)); in verify() 1118 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); in verify() local 1164 : accesses[0].getPixelUint(x, y, z)); in verify() 1185 const UVec4 color (accesses[attachmentNdx].getPixelUint(x, y, z)); in verify() 1204 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); in verify() local 1265 : accesses[0].getPixelInt(x, y, z)); in verify() 1286 const IVec4 color (accesses[attachmentNd in verify() 1305 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); verify() local 2163 std::vector<tcu::ConstPixelBufferAccess> accesses; verify() local [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | optimize.c | 27 FOR_EACH_PTR(ep->accesses, pseudo) { in clear_symbol_pseudos()
|
H A D | memops.c | 285 FOR_EACH_PTR(ep->accesses, pseudo) { in simplify_memops()
|
H A D | linearize.h | 327 struct pseudo_list *accesses; member
|
H A D | ssa.c | 388 // try to promote memory accesses to pseudos in ssa_convert() 390 FOR_EACH_PTR(ep->accesses, pseudo) { in ssa_convert() 394 // rename the converted accesses in ssa_convert()
|
H A D | linearize.c | 782 add_pseudo(&ep->accesses, pseudo); in symbol_pseudo() 896 * We carry the "access_data" structure around for any accesses, 1243 * they imply type-unsafe accesses. "void *" is a special
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_schedule.c | 128 bi_index accesses[(BI_MAX_SRCS + BI_MAX_DESTS) * 16]; member 1062 * in the clause accesses the destination, the message-passing in bi_instr_schedulable() 1074 bi_index idx = clause->accesses[i]; in bi_instr_schedulable() 1089 bi_index idx = clause->accesses[i]; in bi_instr_schedulable() 1213 assert(clause->access_count + BI_MAX_SRCS + BI_MAX_DESTS <= ARRAY_SIZE(clause->accesses)); in bi_pop_instr() 1214 memcpy(clause->accesses + clause->access_count, instr->src, sizeof(instr->src)); in bi_pop_instr() 1216 memcpy(clause->accesses + clause->access_count, instr->dest, sizeof(instr->dest)); in bi_pop_instr() 1771 /* Use passthrough register for cross-stage accesses. Since in bi_schedule_clause() 1884 /* Use passthrough register for cross-tuple accesses. Note this is in bi_schedule_clause() 1963 /* Staging registers can't have FAU accesses */ in bi_check_fau_src() [all...] |
/third_party/python/Lib/test/ |
H A D | test_mmap.py | 773 accesses = ('ACCESS_DEFAULT', 'ACCESS_READ', 779 for access, pos in itertools.product(accesses, positions):
|
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind-ia64.tex | 169 \Const{UNW\_IA64\_GR}\texttt{+17}. This register index accesses the
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageDepthStencilDescriptorTests.cpp | 122 // Types of read-only accesses. 140 // A given layout gives different accesses to each aspect. 216 tcu::Maybe<ROAccessVec> depthROAccesses; // Types of read-only accesses for depth (used when depthAccess is RO). 217 tcu::Maybe<ROAccessVec> stencilROAccesses; // Types of read-only accesses for stencil (used when stencilAccess is RO). 268 void addDescriptors (IODescVec& descriptors, uint32_t& inputAttachmentCount, const ROAccessVec& accesses, VkImageAspectFlagBits aspect) in addDescriptors() argument 270 for (const auto& access : accesses) in addDescriptors()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageDepthStencilDescriptorTests.cpp | 122 // Types of read-only accesses. 140 // A given layout gives different accesses to each aspect. 216 tcu::Maybe<ROAccessVec> depthROAccesses; // Types of read-only accesses for depth (used when depthAccess is RO). 217 tcu::Maybe<ROAccessVec> stencilROAccesses; // Types of read-only accesses for stencil (used when stencilAccess is RO). 268 void addDescriptors (IODescVec& descriptors, uint32_t& inputAttachmentCount, const ROAccessVec& accesses, VkImageAspectFlagBits aspect) in addDescriptors() argument 270 for (const auto& access : accesses) in addDescriptors()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | simple_idct_arm.S | 67 @@ read the row and check if it is null, almost null, or not, according to strongarm specs, it is not necessary to optimize ldr accesses (i.e. split 32 bits in two 16-bit words), at least it gives more usable registers :)
|
/third_party/ffmpeg/ |
H A D | configure | 464 --disable-fast-unaligned consider unaligned accesses slow
|