Lines Matching defs:private_context
57 struct i965_xvmc_context *private_context, *context_dup;
64 if ((private_context = Xcalloc(sizeof(*private_context))) == NULL) {
69 if ((context_dup = Xcalloc(sizeof(*private_context))) == NULL) {
74 private_context->is_g4x = IS_G4X(I830);
75 private_context->is_965_q = IS_965_Q(I830);
76 private_context->is_igdng = IS_IGDNG(I830);
77 private_context->comm.kernel_exec_fencing = I830->kernel_exec_fencing;
78 private_context->comm.type = xvmc_driver->flag;
80 *num_privates = sizeof(*private_context)/sizeof(CARD32);
81 *private = (CARD32 *)private_context;
82 memcpy(context_dup, private_context, sizeof(*private_context));
90 struct i965_xvmc_context *private_context;
91 private_context = context->driver_priv;
92 Xfree(private_context);