Home | History | Annotate | Download | only in compiler

Lines Matching defs:as

15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
407 assert(!retval && "Types are equal in structure but not as pointers");
1303 struct attrib_set *as;
1305 LIST_FOR_EACH_ENTRY(as, &m->attr_set_list, head) {
1306 if (!emit_attrib_group(m, id, UINT32_MAX, as->attrs, as->num_attrs))
1320 struct attrib_set *as;
1322 LIST_FOR_EACH_ENTRY(as, &m->attr_set_list, head) {
1794 enum dxil_address_space as, int align, const struct dxil_value *value)
1803 gvar->as = as;
1818 enum dxil_address_space as, int align,
1821 return add_gvar(m, name, type, type, as, align, value);
1827 enum dxil_address_space as, int align,
1831 as, align, value);
1877 struct attrib_set *as;
1878 LIST_FOR_EACH_ENTRY(as, &m->attr_set_list, head) {
1879 if (!memcmp(as->attrs, attrs, sizeof(attrs)))
1884 as = ralloc_size(m->ralloc_ctx, sizeof(struct attrib_set));
1885 if (!as)
1888 memcpy(as->attrs, attrs, sizeof(attrs));
1889 as->num_attrs = 1;
1891 as->num_attrs++;
1893 list_addtail(&as->head, &m->attr_set_list);
1949 (gvar->as << 2) | GVAR_FLAG_EXPLICIT_TYPE |