Searched refs:_dst (Results 1 - 25 of 27) sorted by relevance

12

/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-accessor.h11 uint8_t *_dst = (uint8_t*)(dst); \
13 WRITE((img), _dst +_i, (val)); \
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A DgenX_boilerplate.h136 *_dst = emit_dwords(brw, _brw_cmd_length(cmd)); \
137 __builtin_expect(_dst != NULL, 1); \
138 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
139 _dst = NULL)
154 *_dst = brw_state_batch(brw, _brw_cmd_length(cmd) * 4, \
156 __builtin_expect(_dst != NULL, 1); \
157 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
158 _dst = NULL)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
H A Dcrocus_genx_macros.h96 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
97 ({ __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name); \
98 _dst = NULL; \
106 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
107 __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name), \
108 _dst = NULL)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
H A Diris_genx_macros.h91 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
92 ({ __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name); \
93 _dst = NULL; \
101 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
102 __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name), \
103 _dst = NULL)
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A DgenX_boilerplate.h136 *_dst = emit_dwords(brw, _brw_cmd_length(cmd)); \
137 __builtin_expect(_dst != NULL, 1); \
138 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
139 _dst = NULL)
154 *_dst = brw_state_batch(brw, _brw_cmd_length(cmd) * 4, \
156 __builtin_expect(_dst != NULL, 1); \
157 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
158 _dst = NULL)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/tests/
H A Dst_tests_common.cpp46 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<int>& _dst, argument
52 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
63 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<pair<int,int>>& _dst, argument
73 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
89 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, argument
98 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
114 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, argument
[all...]
H A Dst_tests_common.h48 FakeCodeline(tgsi_opcode _op, const std::vector<int>& _dst, const std::vector<int>& _src,
51 FakeCodeline(tgsi_opcode _op, const std::vector<std::pair<int,int>>& _dst,
55 FakeCodeline(tgsi_opcode _op, const std::vector<std::tuple<int,int,int>>& _dst,
59 FakeCodeline(tgsi_opcode _op, const std::vector<std::tuple<int, int, int> > &_dst,
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/tests/
H A Dst_tests_common.cpp46 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<int>& _dst, argument
52 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
63 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<pair<int,int>>& _dst, argument
73 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
89 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, argument
98 transform(_dst.begin(), _dst.end(), std::back_inserter(dst),
114 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, argument
[all...]
H A Dst_tests_common.h48 FakeCodeline(tgsi_opcode _op, const std::vector<int>& _dst, const std::vector<int>& _src,
51 FakeCodeline(tgsi_opcode _op, const std::vector<std::pair<int,int>>& _dst,
55 FakeCodeline(tgsi_opcode _op, const std::vector<std::tuple<int,int,int>>& _dst,
59 FakeCodeline(tgsi_opcode _op, const std::vector<std::tuple<int, int, int> > &_dst,
/xsrc/external/mit/MesaLib/dist/src/util/
H A Ddisk_cache.c65 #define DRV_KEY_CPY(_dst, _src, _src_size) \
67 memcpy(_dst, _src, _src_size); \
68 _dst += _src_size; \
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_memory_editor.h563 static void* EndianessCopyBigEndian(void* _dst, void* _src, size_t s, int is_little_endian) argument
567 uint8_t* dst = (uint8_t*)_dst;
571 return _dst;
575 return memcpy(_dst, _src, s);
579 static void* EndianessCopyLittleEndian(void* _dst, void* _src, size_t s, int is_little_endian) argument
583 return memcpy(_dst, _src, s);
587 uint8_t* dst = (uint8_t*)_dst;
591 return _dst;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_memory_editor.h565 static void* EndianessCopyBigEndian(void* _dst, void* _src, size_t s, int is_little_endian) argument
569 uint8_t* dst = (uint8_t*)_dst;
573 return _dst;
577 return memcpy(_dst, _src, s);
581 static void* EndianessCopyLittleEndian(void* _dst, void* _src, size_t s, int is_little_endian) argument
585 return memcpy(_dst, _src, s);
589 uint8_t* dst = (uint8_t*)_dst;
593 return _dst;
/xsrc/external/mit/MesaLib.old/dist/src/intel/common/
H A Dgen_mi_builder.h60 *_dst = (struct cmd *)(dst); __builtin_expect(_dst != NULL, 1); \
61 __genxml_cmd_pack(cmd)((b)->user_data, (void *)_dst, &name), \
62 _dst = NULL)
/xsrc/external/mit/xorg-server.old/dist/hw/vfb/
H A DInitOutput.c125 #define swapcopy16(_dst, _src) \
126 if (needswap) { CARD16 _s = _src; cpswaps(_s, _dst); } \
127 else _dst = _src;
129 #define swapcopy32(_dst, _src) \
130 if (needswap) { CARD32 _s = _src; cpswapl(_s, _dst); } \
131 else _dst = _src;
/xsrc/external/mit/xorg-server/dist/hw/vfb/
H A DInitOutput.c128 #define swapcopy16(_dst, _src) \
129 if (needswap) { CARD16 _s = _src; cpswaps(_s, _dst); } \
130 else _dst = _src;
132 #define swapcopy32(_dst, _src) \
133 if (needswap) { CARD32 _s = _src; cpswapl(_s, _dst); } \
134 else _dst = _src;
/xsrc/external/mit/MesaLib.old/dist/src/intel/blorp/
H A Dblorp_genX_exec.h128 *_dst = blorp_emit_dwords(batch, _blorp_cmd_length(cmd)); \
129 __builtin_expect(_dst != NULL, 1); \
130 _blorp_cmd_pack(cmd)(batch, (void *)_dst, &name), \
131 _dst = NULL)
150 *_dst = blorp_alloc_dynamic_state(batch, \
153 __builtin_expect(_dst != NULL, 1); \
154 _blorp_cmd_pack(state)(batch, (void *)_dst, &name), \
155 blorp_flush_range(batch, _dst, _blorp_cmd_length(state) * 4), \
156 _dst = NULL)
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_rbug/
H A Drbug_context.c853 struct pipe_resource *_dst,
863 struct rbug_resource *rb_resource_dst = rbug_resource(_dst);
937 struct pipe_surface *_dst,
944 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
962 struct pipe_surface *_dst,
971 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
852 rbug_resource_copy_region(struct pipe_context * _pipe,struct pipe_resource * _dst,unsigned dst_level,unsigned dstx,unsigned dsty,unsigned dstz,struct pipe_resource * _src,unsigned src_level,const struct pipe_box * src_box) argument
936 rbug_clear_render_target(struct pipe_context * _pipe,struct pipe_surface * _dst,const union pipe_color_union * color,unsigned dstx,unsigned dsty,unsigned width,unsigned height,bool render_condition_enabled) argument
961 rbug_clear_depth_stencil(struct pipe_context * _pipe,struct pipe_surface * _dst,unsigned clear_flags,double depth,unsigned stencil,unsigned dstx,unsigned dsty,unsigned width,unsigned height,bool render_condition_enabled) argument
/xsrc/external/mit/MesaLib/dist/src/intel/common/
H A Dmi_builder.h74 *_dst = (struct cmd *)(dst); __builtin_expect(_dst != NULL, 1); \
75 __genxml_cmd_pack(cmd)((b)->user_data, (void *)_dst, &name), \
76 _dst = NULL)
1158 token.ptrs[i] = (void *)_dst + addr_dw;
1342 t->addr = __gen_get_batch_address(b->user_data, _dst);
/xsrc/external/mit/MesaLib/dist/src/intel/blorp/
H A Dblorp_genX_exec.h144 *_dst = blorp_emit_dwords(batch, _blorp_cmd_length(cmd)); \
145 __builtin_expect(_dst != NULL, 1); \
146 _blorp_cmd_pack(cmd)(batch, (void *)_dst, &name), \
147 _dst = NULL)
166 *_dst = blorp_alloc_dynamic_state(batch, \
169 __builtin_expect(_dst != NULL, 1); \
170 _blorp_cmd_pack(state)(batch, (void *)_dst, &name), \
171 blorp_flush_range(batch, _dst, _blorp_cmd_length(state) * 4), \
172 _dst = NULL)
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_rbug/
H A Drbug_context.c867 struct pipe_resource *_dst,
877 struct rbug_resource *rb_resource_dst = rbug_resource(_dst);
953 struct pipe_surface *_dst,
960 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
978 struct pipe_surface *_dst,
987 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
866 rbug_resource_copy_region(struct pipe_context * _pipe,struct pipe_resource * _dst,unsigned dst_level,unsigned dstx,unsigned dsty,unsigned dstz,struct pipe_resource * _src,unsigned src_level,const struct pipe_box * src_box) argument
952 rbug_clear_render_target(struct pipe_context * _pipe,struct pipe_surface * _dst,const union pipe_color_union * color,unsigned dstx,unsigned dsty,unsigned width,unsigned height,bool render_condition_enabled) argument
977 rbug_clear_depth_stencil(struct pipe_context * _pipe,struct pipe_surface * _dst,unsigned clear_flags,double depth,unsigned stencil,unsigned dstx,unsigned dsty,unsigned width,unsigned height,bool render_condition_enabled) argument
/xsrc/external/mit/MesaLib/dist/src/intel/common/tests/
H A Dmi_builder_test.cpp77 *_dst = (struct cmd *) emit_dwords(__genxml_cmd_length(cmd)); \
78 __builtin_expect(_dst != NULL, 1); \
79 __genxml_cmd_pack(cmd)(this, (void *)_dst, &name), _dst = NULL)
/xsrc/external/mit/xorg-server/dist/fb/
H A Dfb.h53 CARD8 *_dst = (CARD8*)(dst), *_src = (CARD8*)(src); \
55 WRITE(_dst +_i, READ(_src + _i)); \
61 CARD8 *_dst = (CARD8*)(dst); \
63 WRITE(_dst +_i, (val)); \
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Ddisk_cache.c193 #define DRV_KEY_CPY(_dst, _src, _src_size) \
195 memcpy(_dst, _src, _src_size); \
196 _dst += _src_size; \
/xsrc/external/mit/xorg-server.old/dist/fb/
H A Dfb.h55 CARD8 *_dst = (CARD8*)(dst), *_src = (CARD8*)(src); \
57 WRITE(_dst +_i, READ(_src + _i)); \
63 CARD8 *_dst = (CARD8*)(dst); \
65 WRITE(_dst +_i, (val)); \
/xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
H A Danv_private.h1455 *_dst = anv_batch_emit_dwords(batch, __anv_cmd_length(cmd)); \
1456 __builtin_expect(_dst != NULL, 1); \
1457 ({ __anv_cmd_pack(cmd)(batch, _dst, &name); \
1458 VG(VALGRIND_CHECK_MEM_IS_DEFINED(_dst, __anv_cmd_length(cmd) * 4)); \
1459 _dst = NULL; \

Completed in 47 milliseconds

12