Lines Matching refs:idwidth
805 size_t idwidth; in count_types() local
808 idwidth = version == CTF_VERSION_2 ? 2 : 4; in count_types()
831 dptr += idwidth * vlen; in count_types()
941 size_t idwidth; in resurrect_objects() local
943 idwidth = h->cth_version == CTF_VERSION_2 ? 2 : 4; in resurrect_objects()
946 for (dptr = buf; dptr < buf + bufsz; dptr += idwidth) { in resurrect_objects()
949 memcpy(&id, (void *) dptr, idwidth); in resurrect_objects()
987 size_t idwidth; in resurrect_functions() local
993 idwidth = h->cth_version == CTF_VERSION_2 ? 2 : 4; in resurrect_functions()
1000 memcpy(&info, (void *) dptr, idwidth); in resurrect_functions()
1001 dptr += idwidth; in resurrect_functions()
1013 memcpy(&retid, (void *) dptr, idwidth); in resurrect_functions()
1014 dptr += idwidth; in resurrect_functions()
1034 for (i = 0; i < ii->ii_nargs; i++, dptr += idwidth) { in resurrect_functions()
1036 memcpy(&id, (void *) dptr, idwidth); in resurrect_functions()
1067 size_t idwidth, size, increment; in resurrect_types() local
1079 idwidth = version == CTF_VERSION_2 ? 2 : 4; in resurrect_types()
1319 v = (void *) (dptr + (idwidth * (vlen - 1))); in resurrect_types()
1329 memcpy(&argid, v, idwidth); in resurrect_types()
1330 dptr += idwidth; in resurrect_types()