Lines Matching refs:cta
295 struct ctf_array_v3 cta; in write_type() local
364 cta.cta_contents = tp->t_ardef->ad_contents->t_id; in write_type()
365 cta.cta_index = tp->t_ardef->ad_idxtype->t_id; in write_type()
366 cta.cta_nelems = tp->t_ardef->ad_nelems; in write_type()
368 SWAP_32(cta.cta_contents); in write_type()
369 SWAP_32(cta.cta_index); in write_type()
370 SWAP_32(cta.cta_nelems); in write_type()
372 ctf_buf_write(b, &cta, sizeof (cta)); in write_type()
1182 struct ctf_array_v2 *cta = (void *) dptr; in resurrect_types() local
1183 contents = cta->cta_contents; in resurrect_types()
1184 index = cta->cta_index; in resurrect_types()
1185 nelems = cta->cta_nelems; in resurrect_types()
1186 dptr += sizeof (*cta); in resurrect_types()
1188 struct ctf_array_v3 *cta = (void *) dptr; in resurrect_types() local
1189 contents = cta->cta_contents; in resurrect_types()
1190 index = cta->cta_index; in resurrect_types()
1191 nelems = cta->cta_nelems; in resurrect_types()
1192 dptr += sizeof (*cta); in resurrect_types()