| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-accessor.h | 11 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 D | genX_boilerplate.h | 136 *_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 D | crocus_genx_macros.h | 96 *_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 D | iris_genx_macros.h | 91 *_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 D | genX_boilerplate.h | 136 *_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 D | st_tests_common.cpp | 46 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 D | st_tests_common.h | 48 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 D | st_tests_common.cpp | 46 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 D | st_tests_common.h | 48 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 D | disk_cache.c | 65 #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 D | imgui_memory_editor.h | 563 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 D | imgui_memory_editor.h | 565 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 D | gen_mi_builder.h | 60 *_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 D | InitOutput.c | 125 #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 D | InitOutput.c | 128 #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 D | blorp_genX_exec.h | 128 *_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 D | rbug_context.c | 853 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 D | mi_builder.h | 74 *_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 D | blorp_genX_exec.h | 144 *_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 D | rbug_context.c | 867 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 D | mi_builder_test.cpp | 77 *_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 D | fb.h | 53 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 D | disk_cache.c | 193 #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 D | fb.h | 55 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 D | anv_private.h | 1455 *_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; \
|