Home | History | Annotate | Download | only in config

Lines Matching defs:rai

143   recorded_attribute_info_t *rai;
145 base = tag / (8 * sizeof (rai->mask));
146 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
147 for (rai = recorded_attributes; rai; rai = rai->next)
148 if (rai->vendor == vendor && rai->base == base)
150 rai->mask |= mask;
154 rai = XNEW (recorded_attribute_info_t);
155 rai->next = recorded_attributes;
156 rai->vendor = vendor;
157 rai->base = base;
158 rai->mask = mask;
159 recorded_attributes = rai;
170 recorded_attribute_info_t *rai;
172 base = tag / (8 * sizeof (rai->mask));
173 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
174 for (rai = recorded_attributes; rai; rai = rai->next)
175 if (rai->vendor == vendor && rai->base == base)
176 return (rai->mask & mask) != 0;