Searched refs:new_dest (Results 1 – 5 of 5) sorted by relevance
/external/libcups/cups/ |
D | dest.c | 814 cups_dest_t *new_dest; /* New destination pointer */ in cupsCopyDest() local 830 if ((new_dest = cupsGetDest(dest->name, dest->instance, num_dests, in cupsCopyDest() 837 if (new_dest == dest) in cupsCopyDest() 844 cupsFreeOptions(new_dest->num_options, new_dest->options); in cupsCopyDest() 846 new_dest->num_options = 0; in cupsCopyDest() 847 new_dest->options = NULL; in cupsCopyDest() 850 new_dest = cups_add_dest(dest->name, dest->instance, &num_dests, dests); in cupsCopyDest() 852 if (new_dest) in cupsCopyDest() 854 if ((new_dest->options = calloc(sizeof(cups_option_t), (size_t)dest->num_options)) == NULL) in cupsCopyDest() 857 new_dest->num_options = dest->num_options; in cupsCopyDest() [all …]
|
/external/mesa3d/src/compiler/spirv/ |
D | vtn_variables.c | 832 struct vtn_access_chain *new_src, *new_dest; in _vtn_variable_copy() local 834 new_dest = vtn_access_chain_extend(b, dest, 1); in _vtn_variable_copy() 836 new_dest->link[dest->length].mode = vtn_access_mode_literal; in _vtn_variable_copy() 840 new_dest->link[dest->length].id = i; in _vtn_variable_copy() 843 _vtn_variable_copy(b, new_dest, new_src, elem_type); in _vtn_variable_copy()
|
/external/mesa3d/src/compiler/nir/ |
D | nir.c | 1484 nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest, nir_dest new_dest) in nir_instr_rewrite_dest() argument 1496 assert(!new_dest.is_ssa); in nir_instr_rewrite_dest() 1498 nir_dest_copy(dest, &new_dest, instr); in nir_instr_rewrite_dest() 1501 list_addtail(&dest->reg.def_link, &new_dest.reg.reg->defs); in nir_instr_rewrite_dest()
|
D | nir.h | 2182 nir_dest new_dest);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs_nir.cpp | 3093 const fs_reg new_dest = retype(alloc_frag_output(this, location), in nir_emit_fs_intrinsic() local 3097 bld.MOV(offset(new_dest, bld, nir_intrinsic_component(instr) + j), in nir_emit_fs_intrinsic() 4037 fs_reg new_dest = retype(offset(outputs[instr->const_index[0]], bld, in nir_emit_intrinsic() local 4055 bld.MOV(offset(new_dest, bld, j + first_component), in nir_emit_intrinsic()
|