Searched refs:stsd (Results 1 – 2 of 2) sorted by relevance
216 tsd_t *stsd; in pthread_getspecific() local229 if ((stsd = curthread->ul_stsd) != NULL && key < stsd->tsd_nalloc) in pthread_getspecific()230 return (stsd->tsd_data[key]); in pthread_getspecific()238 tsd_t *stsd; in thr_getspecific() local252 else if ((stsd = curthread->ul_stsd) != NULL && key < stsd->tsd_nalloc) in thr_getspecific()253 *valuep = stsd->tsd_data[key]; in thr_getspecific()271 tsd_t *stsd; in thr_setspecific_slow() local296 nkeys = ((stsd = self->ul_stsd) != NULL)? stsd->tsd_nalloc : 8; in thr_setspecific_slow()306 if (stsd != NULL) { in thr_setspecific_slow()310 (void) memcpy(ntsd, stsd, stsd->tsd_nalloc * sizeof (void *)); in thr_setspecific_slow()[all …]
2165 tsd_t stsd; in __td_thr_tsd() local2175 ps_pdread(ph_p, tsd_paddr, &stsd, sizeof (stsd)) != PS_OK) in __td_thr_tsd()2179 nkey = tsd_paddr == NULL ? TSD_NFAST : stsd.tsd_nalloc; in __td_thr_tsd()2188 tsd32_t stsd; in __td_thr_tsd() local2199 ps_pdread(ph_p, addr, &stsd, sizeof (stsd)) != PS_OK) in __td_thr_tsd()2203 nkey = addr == NULL ? TSD_NFAST : stsd.tsd_nalloc; in __td_thr_tsd()