Lines Matching refs:opset_ops
758 ASSERT(opsarray[i].opset_ops != NULL); in dacf_module_register()
761 opsarray[nelems].opset_ops = NULL; in dacf_module_register()
845 if (p->opset_ops[nelems].op_id == DACF_OPID_END) { in dacf_destroy_opsets()
852 kmem_free(p->opset_ops, sizeof (dacf_op_t) * (nelems + 1)); in dacf_destroy_opsets()
880 if ((src->opset_ops[nelems].op_id == DACF_OPID_END) || in dacf_opset_copy()
881 (src->opset_ops[nelems].op_func == NULL)) { in dacf_opset_copy()
888 dst->opset_ops = kmem_alloc(sizeof (dacf_op_t) * (nelems + 1), in dacf_opset_copy()
893 dst->opset_ops[i].op_id = src->opset_ops[i].op_id; in dacf_opset_copy()
894 dst->opset_ops[i].op_func = src->opset_ops[i].op_func; in dacf_opset_copy()
896 dst->opset_ops[nelems].op_id = DACF_OPID_END; in dacf_opset_copy()
897 dst->opset_ops[nelems].op_func = NULL; in dacf_opset_copy()
990 for (i = 0; opset->opset_ops[i].op_id != DACF_OPID_END; i++) { in dacf_op_invoke()
991 if (opset->opset_ops[i].op_id == op_id) { in dacf_op_invoke()
992 op = &(opset->opset_ops[i]); in dacf_op_invoke()