Home
last modified time | relevance | path

Searched refs:size_z (Results 1 – 10 of 10) sorted by relevance

/third_party/astc-encoder/Source/
Dastcenc_compute_variance.cpp122 int size_z = arg.size_z; in compute_pixel_region_variance() local
141 int padsize_z = size_z + (have_z ? kerneldim : 0); in compute_pixel_region_variance()
364 for (int z = 0; z < size_z; z++) in compute_pixel_region_variance()
439 int size_z = ag.img_size_z; in compute_averages() local
461 arg.size_z = astc::min(step_z, size_z - z); in compute_averages()
490 unsigned int size_z = img.dim_z; in init_compute_averages() local
496 bool have_z = (size_z > 1); in init_compute_averages()
498 unsigned int max_blk_size_z = astc::min(size_z, have_z ? 16u : 1u); in init_compute_averages()
507 ag.arg.size_z = 0; in init_compute_averages()
520 ag.img_size_z = size_z; in init_compute_averages()
[all …]
Dastcenc_internal.h1331 unsigned int size_z; member
/third_party/mesa3d/src/panfrost/lib/
Dpan_encoder.h158 unsigned size_x, unsigned size_y, unsigned size_z, in panfrost_pack_work_groups_compute() argument
164 unsigned values[6] = { size_x, size_y, size_z, num_x, num_y, num_z }; in panfrost_pack_work_groups_compute()
/third_party/python/Objects/
Dlongobject.c2284 Py_ssize_t size_z; in PyLong_FromString() local
2365 size_z = (Py_ssize_t)fsize_z; in PyLong_FromString()
2368 assert(size_z > 0); in PyLong_FromString()
2369 z = _PyLong_New(size_z); in PyLong_FromString()
2421 if (Py_SIZE(z) < size_z) { in PyLong_FromString()
2428 assert(Py_SIZE(z) == size_z); in PyLong_FromString()
2429 tmp = _PyLong_New(size_z + 1); in PyLong_FromString()
2436 sizeof(digit) * size_z); in PyLong_FromString()
2439 z->ob_digit[size_z] = (digit)c; in PyLong_FromString()
2440 ++size_z; in PyLong_FromString()
[all …]
/third_party/mesa3d/src/intel/compiler/
Dbrw_nir_lower_cs_intrinsics.c228 nir_ssa_def *size_z = nir_channel(b, size_xyz, 2); in lower_cs_intrinsics_convert_block() local
229 size = nir_imul(b, nir_imul(b, size_x, size_y), size_z); in lower_cs_intrinsics_convert_block()
/third_party/mesa3d/src/imagination/vulkan/
Dpvr_job_common.c265 reg.size_z = util_logbase2_ceil(surface_params->depth); in pvr_pbe_pack_state()
/third_party/mesa3d/src/panfrost/lib/genxml/
Ddecode.c479 …unsigned size_z = bits(invocation.invocations, invocation.size_z_shift, invocation.workgroups_x_sh… in pandecode_invocation() local
486 size_x, size_y, size_z, in pandecode_invocation()
/third_party/mesa3d/src/intel/vulkan/
DgenX_cmd_buffer.c5532 struct mi_value size_z = mi_mem32(anv_address_add(addr, 8)); in genX() local
5536 mi_store(&b, mi_reg32(GPGPU_DISPATCHDIMZ), size_z); in genX()
5557 mi_store(&b, mi_reg32(MI_PREDICATE_SRC0), size_z); in genX()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_state.c7110 struct mi_value size_z = mi_mem32(ro_bo(bo, grid_size->offset + 8)); in iris_load_indirect_location() local
7113 mi_store(&b, mi_reg32(GPGPU_DISPATCHDIMZ), size_z); in iris_load_indirect_location()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cDirectStateAccessTexturesTests.cpp5226 GLsizei size_z = s_texture_depth * s_block_3d_size; in PrepareCompressedStorage() local
5229 gl.compressedTexImage3D(TextureTarget<3>(), 0, internalformat, size_x, size_y, size_z, 0, in PrepareCompressedStorage()