HomeSort by: relevance | last modified time | path
    Searched defs:dst_mask (Results 1 - 9 of 9) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_surface.c 503 uint32_t dst_mask; local
505 dst_mask = 0x00ffffff;
508 dst_mask = 0xffffff00;
511 dst_mask = ~dst_mask;
515 uint32_t tmp = *row & dst_mask;
516 *row++ = tmp | ((uint32_t) zstencil & ~dst_mask);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_surface.c 569 uint32_t dst_mask; local
571 dst_mask = 0x00ffffff;
574 dst_mask = 0xffffff00;
577 dst_mask = ~dst_mask;
581 uint32_t tmp = *row & dst_mask;
582 *row++ = tmp | ((uint32_t) zstencil & ~dst_mask);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 165 LLVMValueRef dst_mask; local
167 dst_mask = lp_build_const_int_vec(gallivm, src_type,
171 result = lp_build_andnot(&bld, dst_mask, result);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 165 LLVMValueRef dst_mask; local
167 dst_mask = lp_build_const_int_vec(gallivm, src_type,
171 result = lp_build_andnot(&bld, dst_mask, result);
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_optimize.c 55 GLuint arg, GLuint dst_mask)
79 channel_mask = inst->DstReg.WriteMask & dst_mask;
487 GLuint dst_mask, src_mask; local
494 dst_mask = mov->DstReg.WriteMask;
522 (read_mask & dst_mask) == read_mask) {
543 dst_mask &= ~inst2->DstReg.WriteMask;
544 src_mask = get_src_arg_mask(mov, 0, dst_mask);
552 dst_mask &= get_dst_mask_for_mov(mov, src_mask);
554 if (dst_mask == 0)
765 const GLuint dst_mask = prevInst->DstReg.WriteMask local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_optimize.c 55 GLuint arg, GLuint dst_mask)
79 channel_mask = inst->DstReg.WriteMask & dst_mask;
487 GLuint dst_mask, src_mask; local
494 dst_mask = mov->DstReg.WriteMask;
522 (read_mask & dst_mask) == read_mask) {
543 dst_mask &= ~inst2->DstReg.WriteMask;
544 src_mask = get_src_arg_mask(mov, 0, dst_mask);
552 dst_mask &= get_dst_mask_for_mov(mov, src_mask);
554 if (dst_mask == 0)
765 const GLuint dst_mask = prevInst->DstReg.WriteMask local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
glxsingle.c 916 unsigned char dst_mask = 0x80 >> (sx % 8); local
924 *dst |= dst_mask;
927 *dst &= ~dst_mask;
930 if (dst_mask > 1) dst_mask >>= 1;
932 dst_mask = 0x80;
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_blorp.c 354 dst_mask = region->dstSubresource.aspectMask; local
356 assert(anv_image_aspects_compatible(src_mask, dst_mask));
404 get_blorp_surf_for_anv_image(cmd_buffer->device, dst_image, dst_mask,
408 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image, dst_mask,
422 dst_image, dst_mask,
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_blorp.c 298 dst_mask = pRegions[r].dstSubresource.aspectMask; local
300 assert(anv_image_aspects_compatible(src_mask, dst_mask));
332 get_blorp_surf_for_anv_image(cmd_buffer->device, dst_image, dst_mask,
335 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image, dst_mask,

Completed in 14 milliseconds