Lines Matching defs:inst
21 void (*free)(struct kpp_instance *inst);
102 * @inst: Pointer to the &struct kpp_instance to be cast.
103 * Return: A pointer to the &struct crypto_instance embedded in @inst.
106 struct kpp_instance *inst)
108 return &inst->s.base;
114 * @inst: Pointer to the &struct crypto_instance to be cast.
115 * Return: A pointer to the &struct kpp_instance @inst is embedded in.
117 static inline struct kpp_instance *kpp_instance(struct crypto_instance *inst)
119 return container_of(inst, struct kpp_instance, s.base);
136 * @inst: The &struct kpp_instance whose context data to access.
144 static inline void *kpp_instance_ctx(struct kpp_instance *inst)
146 return crypto_instance_ctx(kpp_crypto_instance(inst));
178 * @inst: The KPP template instance to be registered.
182 struct kpp_instance *inst);
190 * @inst: The template instance owning @spawn.
197 struct crypto_instance *inst,