Home
last modified time | relevance | path

Searched refs:packed_size (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavcodec/
Drscc.c158 int tiles_nb, packed_size, pixel_size = 0; in rscc_decode_frame() local
272 packed_size = bytestream2_get_byte(gbc); in rscc_decode_frame()
274 packed_size = bytestream2_get_le16(gbc); in rscc_decode_frame()
276 packed_size = bytestream2_get_le24(gbc); in rscc_decode_frame()
278 packed_size = bytestream2_get_le32(gbc); in rscc_decode_frame()
280 ff_dlog(avctx, "pixel_size %d packed_size %d.\n", pixel_size, packed_size); in rscc_decode_frame()
282 if (packed_size < 0) { in rscc_decode_frame()
283 av_log(avctx, AV_LOG_ERROR, "Invalid tile size %d\n", packed_size); in rscc_decode_frame()
289 if (pixel_size == packed_size) { in rscc_decode_frame()
298 if (bytestream2_get_bytes_left(gbc) < packed_size) { in rscc_decode_frame()
[all …]
Dffv1enc_template.c136 int packed_size = (3 + transparency)*2; in RENAME() local
157 const uint16_t *p = ((const uint16_t*)(src[0] + x*packed_size + stride[0]*y)); in RENAME()
/third_party/skia/third_party/externals/tint/src/writer/
Dappend_vector.cc74 uint32_t packed_size; in AppendVector() local
80 packed_size = vec->Width() + 1; in AppendVector()
83 packed_size = 2; in AppendVector()
104 auto* packed_ast_ty = b->create<ast::Vector>(packed_el_ast_ty, packed_size); in AppendVector()
105 auto* packed_sem_ty = b->create<sem::Vector>(packed_el_sem_ty, packed_size); in AppendVector()
121 for (uint32_t i = 0; i < packed_size - 1; i++) { in AppendVector()
125 } else if (num_supplied + 1 == packed_size) { in AppendVector()
/third_party/mesa3d/src/virtio/vulkan/
Dvn_query_pool.c129 const size_t packed_size = packed_stride * queryCount; in vn_GetQueryPoolResults() local
134 packed_data = vk_alloc(alloc, packed_size, VN_DEFAULT_ALIGN, in vn_GetQueryPoolResults()
145 dev->instance, device, queryPool, firstQuery, queryCount, packed_size, in vn_GetQueryPoolResults()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_unittest.inc680 int packed_size = packed_message1.ByteSizeLong();
681 packed_data.resize(packed_size);
684 EXPECT_EQ(packed_size, end - start);
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.cpp1499 …uint32_t packed_size = to_array_size_literal(type) * type_to_packed_array_stride(type, flags, pack… in type_to_packed_size() local
1504 packed_size -= (4 - type.vecsize) * (type.width / 8); in type_to_packed_size()
1506 return packed_size; in type_to_packed_size()
1635 uint32_t packed_size = 0; in buffer_is_packing_standard() local
1637 packed_size = type_to_packed_size(memb_type, member_flags, packing); in buffer_is_packing_standard()
1644 uint32_t end_word = (offset + packed_size - 1) / 16; in buffer_is_packing_standard()
1709 offset = actual_offset + packed_size; in buffer_is_packing_standard()
/third_party/ffmpeg/libavformat/
Dmovenc.c5610 static const uint16_t packed_size[16] = in ff_mov_write_packet() local
5615 len += packed_size[(pkt->data[len] >> 3) & 0x0F]; in ff_mov_write_packet()
/third_party/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp1416 unsigned packed_size = use_s_pack ? 16 : 32; in visit_alu_instr() local
1417 unsigned idx = i * instr->dest.dest.ssa.bit_size / packed_size; in visit_alu_instr()
1418 unsigned offset = i * instr->dest.dest.ssa.bit_size % packed_size; in visit_alu_instr()
1424 if (offset != packed_size - instr->dest.dest.ssa.bit_size) in visit_alu_instr()