Home
last modified time | relevance | path

Searched refs:BITSET_COPY (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/compiler/isaspec/
Ddecode.c255 BITSET_COPY(scope->val.bitset, val.bitset); in push_scope()
324 BITSET_COPY(not_dontcare.bitset, bitsets[n]->dontcare.bitset); in find_bitset()
405 BITSET_COPY(val.bitset, scope->val.bitset); in extract_field()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program.c186 BITSET_COPY(prog->info.textures_used, prog->nir->info.textures_used); in brw_nir_lower_resources()
187 BITSET_COPY(prog->info.textures_used_by_txf, prog->nir->info.textures_used_by_txf); in brw_nir_lower_resources()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_nir.cpp989 BITSET_COPY(prog->info.textures_used, nir->info.textures_used); in st_nir_lower_samplers()
990 BITSET_COPY(prog->info.textures_used_by_txf, nir->info.textures_used_by_txf); in st_nir_lower_samplers()
/third_party/mesa3d/src/util/
Dbitset.h51 #define BITSET_COPY(x, y) memcpy( (x), (y), sizeof (x) ) macro