Searched refs:a_dest (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-num.h111 cr_num_copy (CRNum *a_dest, CRNum const *a_src) ;
H A Dcr-num.c211 *@a_dest: the destination of the copy.
220 cr_num_copy (CRNum * a_dest, CRNum const * a_src) argument
222 g_return_val_if_fail (a_dest && a_src, CR_BAD_PARAM_ERROR);
224 memcpy (a_dest, a_src, sizeof (CRNum));
H A Dcr-rgb.h66 enum CRStatus cr_rgb_copy (CRRgb *a_dest, CRRgb const *a_src) ;
H A Dcr-style.h323 enum CRStatus cr_style_copy (CRStyle *a_dest, CRStyle *a_src) ;
H A Dcr-rgb.c616 cr_rgb_copy (CRRgb *a_dest, CRRgb const *a_src) argument
618 g_return_val_if_fail (a_dest && a_src,
621 memcpy (a_dest, a_src, sizeof (CRRgb)) ;
H A Dcr-style.c2306 *@param a_dest the destination style datastructure
2311 cr_style_copy (CRStyle * a_dest, CRStyle * a_src) argument
2313 g_return_val_if_fail (a_dest && a_src, CR_BAD_PARAM_ERROR);
2315 memcpy (a_dest, a_src, sizeof (CRStyle));

Completed in 40 milliseconds