Lines Matching defs:fpv
1075 struct st_fp_variant *fpv;
1078 for (fpv = st_fp_variant(fp->variants); fpv;
1079 fpv = st_fp_variant(fpv->base.next)) {
1080 if (memcmp(&fpv->key, key, sizeof(*key)) == 0) {
1085 if (!fpv) {
1107 fpv = st_create_fp_variant(st, fp, key);
1108 if (fpv) {
1109 fpv->base.st = key->st;
1111 st_add_variant(&fp->variants, &fpv->base);
1115 return fpv;