| /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/ |
| vir_opt_copy_propagate.c | 148 /* Make sure that the meaning of the unpack 192 enum v3d_qpu_input_unpack unpack = mov->qpu.alu.mul.a_unpack; local 194 vir_set_unpack(inst, i, unpack);
|
| vir_dump.c | 261 enum v3d_qpu_input_unpack unpack[2]; local 273 unpack[0] = instr->alu.add.a_unpack; 274 unpack[1] = instr->alu.add.b_unpack; 285 unpack[0] = instr->alu.mul.a_unpack; 286 unpack[1] = instr->alu.mul.b_unpack; 292 fprintf(stderr, "%s", v3d_qpu_unpack_name(unpack[i]));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/ |
| vc4_opt_copy_propagation.c | 101 uint8_t unpack; local 103 /* Make sure that the meaning of the unpack 112 /* There's only one unpack field, so make sure 130 unpack = mov->src[0].pack; 132 unpack = inst->src[i].pack; 142 inst->src[i].pack = unpack;
|
| vc4_qpu_emit.c | 166 struct qinst *inst, uint64_t *unpack) 190 /* If we had an unpack on this A-file source, we need to put 194 *last_inst(block) |= *unpack; 195 *unpack = 0; 209 ASSERTED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK); local 217 assert(!unpack || had_pm); 220 assert(!unpack || !had_pm); 296 uint64_t unpack = 0; local 308 assert(!unpack || 309 unpack == qinst->src[i].pack) [all...] |
| vc4_qpu_disasm.c | 96 /* The QPU unpack for A and R4 files can be described the same, it's just that 277 vc4_qpu_disasm_unpack(FILE *out, uint32_t unpack) 279 if (unpack != QPU_UNPACK_NOP) 280 fprintf(out, ".%s", DESC(qpu_unpack, unpack)); 327 uint32_t unpack = QPU_GET_FIELD(inst, QPU_UNPACK); local 357 vc4_qpu_disasm_unpack(stderr, unpack);
|
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/ |
| vir_opt_copy_propagate.c | 148 /* Make sure that the meaning of the unpack 192 enum v3d_qpu_input_unpack unpack = mov->qpu.alu.mul.a_unpack; local 194 vir_set_unpack(inst, i, unpack);
|
| vir_dump.c | 254 enum v3d_qpu_input_unpack unpack[2]; local 266 unpack[0] = instr->alu.add.a_unpack; 267 unpack[1] = instr->alu.add.b_unpack; 278 unpack[0] = instr->alu.mul.a_unpack; 279 unpack[1] = instr->alu.mul.b_unpack; 285 fprintf(stderr, "%s", v3d_qpu_unpack_name(unpack[i]));
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/ |
| vc4_opt_copy_propagation.c | 101 uint8_t unpack; local 103 /* Make sure that the meaning of the unpack 112 /* There's only one unpack field, so make sure 130 unpack = mov->src[0].pack; 132 unpack = inst->src[i].pack; 142 inst->src[i].pack = unpack;
|
| vc4_qpu_emit.c | 166 struct qinst *inst, uint64_t *unpack) 190 /* If we had an unpack on this A-file source, we need to put 194 *last_inst(block) |= *unpack; 195 *unpack = 0; 209 MAYBE_UNUSED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK); local 217 assert(!unpack || had_pm); 220 assert(!unpack || !had_pm); 296 uint64_t unpack = 0; local 308 assert(!unpack || 309 unpack == qinst->src[i].pack) [all...] |
| vc4_qpu_disasm.c | 96 /* The QPU unpack for A and R4 files can be described the same, it's just that 277 vc4_qpu_disasm_unpack(FILE *out, uint32_t unpack) 279 if (unpack != QPU_UNPACK_NOP) 280 fprintf(out, ".%s", DESC(qpu_unpack, unpack)); 327 uint32_t unpack = QPU_GET_FIELD(inst, QPU_UNPACK); local 357 vc4_qpu_disasm_unpack(stderr, unpack);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/tests/ |
| lower_int64_test.cpp | 184 ir_expression *unpack = assign2->rhs->as_expression(); local 185 ASSERT_NE((void *)0, unpack); 186 EXPECT_EQ(unpack_opcode, unpack->operation); 187 EXPECT_EQ(tmp1, unpack->operands[0]->variable_referenced());
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/tests/ |
| lower_int64_test.cpp | 180 ir_expression *unpack = assign2->rhs->as_expression(); local 181 ASSERT_NE((void *)0, unpack); 182 EXPECT_EQ(unpack_opcode, unpack->operation); 183 EXPECT_EQ(tmp1, unpack->operands[0]->variable_referenced());
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| iris_clear.c | 724 const struct util_format_unpack_description *unpack = local 730 if (unpack->unpack_z_float) 733 if (unpack->unpack_s_8uint)
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| s_drawpix.c | 57 const struct gl_pixelstore_attrib *unpack, 62 _mesa_image_address2d(unpack, pixels, width, 64 const GLint srcRowStride = _mesa_image_row_stride(unpack, width, 106 const struct gl_pixelstore_attrib *unpack, 111 _mesa_image_address2d(unpack, pixels, width, 114 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE); 157 const struct gl_pixelstore_attrib *unpack, 162 _mesa_image_address2d(unpack, pixels, width, 165 _mesa_image_row_stride(unpack, width, format, type); 209 struct gl_pixelstore_attrib unpack; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/tests/format/ |
| u_format_test.c | 468 const struct util_format_unpack_description *unpack = local 474 unpack->unpack_z_float(&unpacked[0][0], sizeof unpacked[0], 539 const struct util_format_unpack_description *unpack = local 546 unpack->unpack_z_32unorm(&unpacked[0][0], sizeof unpacked[0], 618 const struct util_format_unpack_description *unpack = local 625 unpack->unpack_s_8uint(&unpacked[0][0], sizeof unpacked[0],
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| s_drawpix.c | 57 const struct gl_pixelstore_attrib *unpack, 62 _mesa_image_address2d(unpack, pixels, width, 64 const GLint srcRowStride = _mesa_image_row_stride(unpack, width, 106 const struct gl_pixelstore_attrib *unpack, 111 _mesa_image_address2d(unpack, pixels, width, 114 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE); 157 const struct gl_pixelstore_attrib *unpack, 162 _mesa_image_address2d(unpack, pixels, width, 165 _mesa_image_row_stride(unpack, width, format, type); 209 struct gl_pixelstore_attrib unpack; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_format_aos.c | 213 * Unpack a single pixel into its XYZW components. 481 const struct util_format_unpack_description *unpack = local 635 * Unpack a pixel at a time into a <4 x float> RGBA vector 794 if (unpack->fetch_rgba_8unorm && 844 func_to_pointer((func_pointer) unpack->fetch_rgba_8unorm)); 929 * Declare and bind unpack->fetch_rgba_float().
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/translate/ |
| translate_generic.c | 800 const struct util_format_unpack_description *unpack = local 817 tg->attrib[i].fetch = unpack->unpack_rgba;
|
| /xsrc/external/mit/MesaLib/dist/src/util/format/ |
| u_format.c | 369 const struct util_format_unpack_description *unpack = local 373 if (unpack->unpack_rgba_rect) { 374 unpack->unpack_rgba_rect(dst, dst_stride, src, src_stride, w, h); 377 unpack->unpack_rgba(dst, src, w); 390 const struct util_format_unpack_description *unpack = local 394 if (unpack->unpack_rgba_8unorm_rect) { 395 unpack->unpack_rgba_8unorm_rect(dst, dst_stride, src, src_stride, w, h); 398 unpack->unpack_rgba_8unorm(dst, src, w); 652 const struct util_format_unpack_description *unpack = local 708 if (unpack->unpack_z_float && pack->pack_z_float) 1142 const struct util_format_unpack_description *unpack = util_format_unpack_description_neon(format); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/ |
| load_store_vectorizer_tests.cpp | 1019 nir_alu_instr *unpack = nir_instr_as_alu(val->parent_instr); local 1020 EXPECT_INSTR_SWIZZLES(unpack, load, "x");
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| pack.c | 95 * Unpack a 32x32 pixel polygon stipple from user memory using the 96 * current pixel unpack settings. 259 const struct gl_pixelstore_attrib *unpack ) 280 if (unpack->LsbFirst) { 281 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); 295 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); 330 if (unpack->SwapBytes) { 347 if (unpack->SwapBytes) { 364 if (unpack->SwapBytes) { 381 if (unpack->SwapBytes) 1640 const struct util_format_unpack_description *unpack = local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/ |
| format_types.h | 43 static simdscalar unpack(simdscalar& in) = delete; 48 static simd16scalar unpack(simd16scalar& in) = delete; 62 static simdscalar unpack(simdscalar& in) { return _simd_setzero_ps(); } function in struct:PackTraits 67 static simd16scalar unpack(simd16scalar& in) { return _simd16_setzero_ps(); } function in struct:PackTraits 100 static simdscalar unpack(simdscalar& in) function in struct:PackTraits 154 static simd16scalar unpack(simd16scalar& in) function in struct:PackTraits 220 static simdscalar unpack(simdscalar& in) function in struct:PackTraits 275 static simd16scalar unpack(simd16scalar& in) function in struct:PackTraits 341 static simdscalar unpack(simdscalar& in) function in struct:PackTraits 390 static simd16scalar unpack(simd16scalar& in function in struct:PackTraits 443 static simdscalar unpack(simdscalar& in) function in struct:PackTraits 493 static simd16scalar unpack(simd16scalar& in) function in struct:PackTraits 530 static simdscalar unpack(simdscalar& in) { return in; } function in struct:PackTraits 543 static simd16scalar unpack(simd16scalar& in) { return in; } function in struct:PackTraits 1162 static simdscalar unpack(const simdscalar& in) function in struct:TypeTraits 1194 static simd16scalar unpack(const simd16scalar& in) function in struct:TypeTraits [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_cb_drawpixels.c | 491 const struct gl_pixelstore_attrib *unpack, 498 if ((unpack->RowLength != 0 && unpack->RowLength != width) || 499 unpack->SkipPixels != 0 || 500 unpack->SkipRows != 0 || 501 unpack->SwapBytes || 502 unpack->BufferObj) { 574 const struct gl_pixelstore_attrib *unpack, 578 if ((unpack->RowLength == 0 || unpack->RowLength == width) & 1566 struct gl_pixelstore_attrib pack, unpack; local [all...] |
| st_cb_texture.c | 1680 const struct gl_pixelstore_attrib *unpack) 1714 unpack->SwapBytes); 1756 if (!st_pbo_addresses_pixelstore(st, gl_target, dims == 3, unpack, pixels, 1969 const struct gl_pixelstore_attrib *unpack) 2005 !unpack->BufferObj && 2008 unpack)) { 2013 stride = _mesa_image_row_stride(unpack, width, format, type); 2014 layer_stride = _mesa_image_image_stride(unpack, width, height, format, 2016 data = _mesa_image_address(dims, unpack, pixels, width, height, format, 2075 if (unpack->BufferObj) 2734 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_cb_drawpixels.c | 492 const struct gl_pixelstore_attrib *unpack, 499 if ((unpack->RowLength != 0 && unpack->RowLength != width) || 500 unpack->SkipPixels != 0 || 501 unpack->SkipRows != 0 || 502 unpack->SwapBytes || 503 _mesa_is_bufferobj(unpack->BufferObj)) { 575 const struct gl_pixelstore_attrib *unpack, 579 if ((unpack->RowLength == 0 || unpack->RowLength == width) & 1518 struct gl_pixelstore_attrib pack, unpack; local [all...] |