Home | History | Annotate | Download | only in config

Lines Matching defs:rai

2087   struct recorded_attribute_info *rai;
2089 base = tag / (8 * sizeof (rai->mask));
2090 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
2091 for (rai = recorded_attributes; rai; rai = rai->next)
2092 if (rai->vendor == vendor && rai->base == base)
2094 rai->mask |= mask;
2098 rai = XNEW (struct recorded_attribute_info);
2099 rai->next = recorded_attributes;
2100 rai->vendor = vendor;
2101 rai->base = base;
2102 rai->mask = mask;
2103 recorded_attributes = rai;
2114 struct recorded_attribute_info *rai;
2116 base = tag / (8 * sizeof (rai->mask));
2117 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
2118 for (rai = recorded_attributes; rai; rai = rai->next)
2119 if (rai->vendor == vendor && rai->base == base)
2120 return (rai->mask & mask) != 0;
3191 struct recorded_attribute_info *rai = recorded_attributes;
3192 recorded_attributes = rai->next;
3193 free (rai);