| /xsrc/external/mit/pixman/dist/test/ |
| trap-crasher.c | 7 pixman_image_t *dst; local 35 dst = pixman_image_create_bits (PIXMAN_a8, 1, 1, NULL, -1); 37 pixman_add_trapezoids (dst, 0, 0, ARRAY_LENGTH (traps), traps); 39 pixman_image_unref (dst);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/ |
| vmw_shader.c | 40 struct vmw_svga_winsys_shader *dst; local 45 dst = *pdst; 48 dst_ref = dst ? &dst->refcnt : NULL; 51 struct svga_winsys_screen *sws = &dst->screen->base; 54 vmw_ioctl_shader_destroy(dst->screen, dst->shid); 57 assert(p_atomic_read(&dst->validated) == 0); 58 dst->shid = SVGA3D_INVALID_ID; 60 sws->buffer_destroy(sws, dst->buf) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| streaming-load-memcpy.h | 29 /* Copies memory from src to dst, using SSE 4.1's MOVNTDQA to get streaming 37 _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len);
|
| format_pack.h | 34 typedef void (*gl_pack_ubyte_rgba_func)(const GLubyte src[4], void *dst); 37 typedef void (*gl_pack_float_rgba_func)(const GLfloat src[4], void *dst); 40 typedef void (*gl_pack_float_z_func)(const GLfloat *src, void *dst); 43 typedef void (*gl_pack_uint_z_func)(const GLuint *src, void *dst); 46 typedef void (*gl_pack_ubyte_stencil_func)(const GLubyte *src, void *dst); 73 const GLfloat src[][4], void *dst); 77 const GLubyte src[][4], void *dst); 81 const GLuint src[][4], void *dst); 86 void *dst, GLint dstRowStride); 90 const GLfloat *src, void *dst); [all...] |
| /xsrc/external/mit/libFS/dist/src/ |
| FSlibos.h | 136 # define COPYBITS(src, dst) dst[0] = src[0] 138 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0]) 139 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0]) 140 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0]) 145 # define COPYBITS(src, dst) { dst[0] = src[0]; dst[1] = src[1]; [all...] |
| /xsrc/external/mit/libXfont/dist/src/fc/ |
| fslibos.h | 116 # define COPYBITS(src, dst) dst[0] = src[0] 118 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0]) 119 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0]) 120 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0]) 125 # define COPYBITS(src, dst) { dst[0] = src[0]; dst[1] = src[1]; [all...] |
| /xsrc/external/mit/libXfont2/dist/src/fc/ |
| fslibos.h | 112 # define COPYBITS(src, dst) dst[0] = src[0] 114 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0]) 115 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0]) 116 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0]) 121 # define COPYBITS(src, dst) { dst[0] = src[0]; dst[1] = src[1]; [all...] |
| /xsrc/external/mit/xorg-server/dist/fb/ |
| fbsolid.c | 32 fbSolid(FbBits * dst, 40 dst += dstX >> FB_SHIFT; 49 FbDoLeftMaskByteRRop(dst, startbyte, startmask, and, xor); 50 dst++; 55 WRITE(dst++, xor); 58 WRITE(dst, FbDoRRop(READ(dst), and, xor)); 59 dst++; 62 FbDoRightMaskByteRRop(dst, endbyte, endmask, and, xor); 63 dst += dstStride [all...] |
| /xsrc/external/mit/xorg-server.old/dist/fb/ |
| fbsolid.c | 32 fbSolid (FbBits *dst, 50 fbSolid24 (dst, dstStride, dstX, width, height, and, xor); 54 dst += dstX >> FB_SHIFT; 65 FbDoLeftMaskByteRRop(dst,startbyte,startmask,and,xor); 66 dst++; 71 WRITE(dst++, xor); 75 WRITE(dst, FbDoRRop (READ(dst), and, xor)); 76 dst++; 79 FbDoRightMaskByteRRop(dst,endbyte,endmask,and,xor) [all...] |
| /xsrc/external/mit/MesaLib.old/src/mesa/main/ |
| format_unpack.c | 57 unpack_float_a8b8g8r8_unorm(const void *void_src, GLfloat dst[4]) 67 dst[0] = _mesa_unorm_to_float(r, 8); 70 dst[1] = _mesa_unorm_to_float(g, 8); 73 dst[2] = _mesa_unorm_to_float(b, 8); 76 dst[3] = _mesa_unorm_to_float(a, 8); 80 unpack_float_x8b8g8r8_unorm(const void *void_src, GLfloat dst[4]) 89 dst[0] = _mesa_unorm_to_float(r, 8); 92 dst[1] = _mesa_unorm_to_float(g, 8); 95 dst[2] = _mesa_unorm_to_float(b, 8); 97 dst[3] = 1.0f [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_bld_blend_logicop.c | 47 LLVMValueRef dst) 59 res = LLVMBuildNot(builder, LLVMBuildOr(builder, src, dst, ""), ""); 62 res = LLVMBuildAnd(builder, LLVMBuildNot(builder, src, ""), dst, ""); 68 res = LLVMBuildAnd(builder, src, LLVMBuildNot(builder, dst, ""), ""); 71 res = LLVMBuildNot(builder, dst, ""); 74 res = LLVMBuildXor(builder, src, dst, ""); 77 res = LLVMBuildNot(builder, LLVMBuildAnd(builder, src, dst, ""), ""); 80 res = LLVMBuildAnd(builder, src, dst, ""); 83 res = LLVMBuildNot(builder, LLVMBuildXor(builder, src, dst, ""), ""); 86 res = dst; [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| format_unpack.h | 37 const void *src, float dst[][4]) 39 util_format_unpack_rgba(format, dst, src, n); 44 const void *src, uint8_t dst[][4]); 48 const void *src, uint32_t dst[][4]) 50 util_format_unpack_rgba(format, dst, src, n); 55 const void *src, float *dst) 57 util_format_unpack_z_float((enum pipe_format)format, dst, src, n); 63 const void *src, uint32_t *dst) 65 util_format_unpack_z_32unorm((enum pipe_format)format, dst, src, n); 70 const void *src, uint8_t *dst) [all...] |
| streaming-load-memcpy.h | 29 /* Copies memory from src to dst, using SSE 4.1's MOVNTDQA to get streaming 39 _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len);
|
| format_pack.h | 39 const float src[][4], void *dst) 41 util_format_pack_rgba(format, dst, src, n); 46 const uint8_t *src, void *dst) 49 pack->pack_rgba_8unorm((uint8_t *)dst, 0, src, 0, n, 1); 54 const uint32_t src[][4], void *dst) 56 util_format_pack_rgba(format, dst, src, n); 61 const float *src, void *dst) 63 util_format_pack_z_float(format, dst, src, n); 68 const uint32_t *src, void *dst) 70 util_format_pack_z_32unorm(format, dst, src, n) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| lp_bld_blend_logicop.c | 47 LLVMValueRef dst) 59 res = LLVMBuildNot(builder, LLVMBuildOr(builder, src, dst, ""), ""); 62 res = LLVMBuildAnd(builder, LLVMBuildNot(builder, src, ""), dst, ""); 68 res = LLVMBuildAnd(builder, src, LLVMBuildNot(builder, dst, ""), ""); 71 res = LLVMBuildNot(builder, dst, ""); 74 res = LLVMBuildXor(builder, src, dst, ""); 77 res = LLVMBuildNot(builder, LLVMBuildAnd(builder, src, dst, ""), ""); 80 res = LLVMBuildAnd(builder, src, dst, ""); 83 res = LLVMBuildNot(builder, LLVMBuildXor(builder, src, dst, ""), ""); 86 res = dst; [all...] |
| /xsrc/external/bsd/libuuid_ul/dist/ |
| copy.c | 37 void uuid_copy(uuid_t dst, const uuid_t src) 43 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| si_compute.h | 45 static inline void si_compute_reference(struct si_compute **dst, struct si_compute *src) 47 if (pipe_reference(&(*dst)->sel.base.reference, &src->sel.base.reference)) 48 si_destroy_compute(*dst); 50 *dst = src;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_eu_util.c | 38 struct brw_reg dst, 42 dst, 52 struct brw_reg dst, 58 dst = vec4(dst); 64 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta)); 65 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16)); 71 struct brw_reg dst, 77 dst = vec8(dst); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_eu_util.c | 38 struct brw_reg dst, 42 dst, 52 struct brw_reg dst, 58 dst = vec4(dst); 64 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta)); 65 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16)); 71 struct brw_reg dst, 77 dst = vec8(dst); [all...] |
| /xsrc/external/mit/xf86-video-rendition/dist/src/ |
| vmisc.c | 16 verite_bustomem_cpy(vu8 *dst, vu8 *src, vu32 num) 24 dst[i] = verite_read_memory8(src, i); 28 verite_memtobus_cpy(vu8 *dst, vu8 *src, vu32 num) 37 verite_write_memory8(dst, i, src[i]);
|
| /xsrc/external/mit/MesaLib/dist/src/util/format/ |
| u_format_other.c | 41 float *dst = dst_row; local 45 rgb9e5_to_float3(value, dst); 46 dst[3] = 1; /* a */ 48 dst += 4; 60 uint8_t *dst = dst_row; local 63 *(uint32_t *)dst = value; 65 dst += 4; 76 float *dst = in_dst; local 78 rgb9e5_to_float3(value, dst); 79 dst[3] = 1; /* a * 90 uint8_t *dst = dst_row; local 114 uint8_t *dst = dst_row; local 137 float *dst = dst_row; local 156 uint8_t *dst = dst_row; local 172 float *dst = in_dst; local 186 uint8_t *dst = dst_row; local 210 uint8_t *dst = dst_row; local 247 float *dst = dst_row; local 296 uint16_t *dst = (uint16_t *)dst_row; local 322 uint16_t *dst = (uint16_t *)dst_row; local 343 float *dst = in_dst; local [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/ |
| driWrap.c | 137 DRIFillSpans(DrawablePtr dst, GCPtr pGC, int nInit, 143 DRISurfaceSetDrawable(dst, &saved); 147 pGC->ops->FillSpans(dst, pGC, nInit, pptInit, pwidthInit, sorted); 151 DRISurfaceRestoreDrawable(dst, &saved); 155 DRISetSpans(DrawablePtr dst, GCPtr pGC, char *pSrc, 161 DRISurfaceSetDrawable(dst, &saved); 165 pGC->ops->SetSpans(dst, pGC, pSrc, pptInit, pwidthInit, nspans, sorted); 169 DRISurfaceRestoreDrawable(dst, &saved); 173 DRIPutImage(DrawablePtr dst, GCPtr pGC, 179 DRISurfaceSetDrawable(dst, &saved) [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/ |
| driWrap.c | 126 DRIFillSpans(DrawablePtr dst, GCPtr pGC, int nInit, 131 DRISurfaceSetDrawable(dst, &saved); 135 pGC->ops->FillSpans(dst, pGC, nInit, pptInit, pwidthInit, sorted); 139 DRISurfaceRestoreDrawable(dst, &saved); 143 DRISetSpans(DrawablePtr dst, GCPtr pGC, char *pSrc, 148 DRISurfaceSetDrawable(dst, &saved); 152 pGC->ops->SetSpans(dst, pGC, pSrc, pptInit, pwidthInit, nspans, sorted); 156 DRISurfaceRestoreDrawable(dst, &saved); 160 DRIPutImage(DrawablePtr dst, GCPtr pGC, 165 DRISurfaceSetDrawable(dst, &saved) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rtasm/ |
| rtasm_x86sse.h | 203 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ); 204 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm ); 205 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm ); 206 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm ); 207 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm ); 208 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm ); 209 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm ); 219 void mmx_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); 220 void mmx_movq( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); 221 void mmx_packssdw( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/rtasm/ |
| rtasm_x86sse.h | 203 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ); 204 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm ); 205 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm ); 206 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm ); 207 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm ); 208 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm ); 209 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm ); 219 void mmx_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); 220 void mmx_movq( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); 221 void mmx_packssdw( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) [all...] |