Searched refs:idx1st (Results 1 – 8 of 8) sorted by relevance
/l4re-core-master/uclibc/lib/libpthread/src/ |
A D | specific.c | 70 unsigned int idx1st, idx2nd; member 77 unsigned int idx1st = args->idx1st; in pthread_key_delete_helper() local 87 if (th->p_specific[idx1st] != NULL) in pthread_key_delete_helper() 88 th->p_specific[idx1st][idx2nd] = NULL; in pthread_key_delete_helper() 114 args.idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in pthread_key_delete() 137 if (self->p_specific[args.idx1st] != NULL) in pthread_key_delete() 138 self->p_specific[args.idx1st][args.idx2nd] = NULL; in pthread_key_delete() 152 unsigned int idx1st, idx2nd; in __pthread_setspecific() local 156 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in __pthread_setspecific() 176 unsigned int idx1st, idx2nd; in strong_alias() local [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/ |
A D | specific.c | 67 unsigned int idx1st, idx2nd; member 74 unsigned int idx1st = args->idx1st; in pthread_key_delete_helper() local 84 if (th->p_specific[idx1st] != NULL) in pthread_key_delete_helper() 85 th->p_specific[idx1st][idx2nd] = NULL; in pthread_key_delete_helper() 111 args.idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in pthread_key_delete() 131 if (self->p_specific[args.idx1st] != NULL) in pthread_key_delete() 132 self->p_specific[args.idx1st][args.idx2nd] = NULL; in pthread_key_delete() 144 unsigned int idx1st, idx2nd; in __pthread_setspecific() local 148 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in __pthread_setspecific() 166 unsigned int idx1st, idx2nd; in strong_alias() local [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/ |
A D | specific.c | 80 unsigned int idx1st, idx2nd; in pthread_key_delete() local 82 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in pthread_key_delete() 87 if (!th->p_terminated && th->p_specific[idx1st] != NULL) in pthread_key_delete() 88 th->p_specific[idx1st][idx2nd] = NULL; in pthread_key_delete() 102 unsigned int idx1st, idx2nd; in pthread_setspecific() local 106 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in pthread_setspecific() 108 if (THREAD_GETMEM_NC(self, p_specific[idx1st]) == NULL) { in pthread_setspecific() 112 THREAD_SETMEM_NC(self, p_specific[idx1st], newp); in pthread_setspecific() 123 unsigned int idx1st, idx2nd; in pthread_getspecific() local 127 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in pthread_getspecific() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/ |
A D | pthread_setspecific.c | 31 unsigned int idx1st; in __pthread_setspecific() local 60 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in __pthread_setspecific() 64 level2 = THREAD_GETMEM_NC (self, specific, idx1st); in __pthread_setspecific() 78 THREAD_SETMEM_NC (self, specific, idx1st, level2); in __pthread_setspecific()
|
A D | pthread_getspecific.c | 40 unsigned int idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE; in __pthread_getspecific() local 47 specific, idx1st); in __pthread_getspecific()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old_db/ |
A D | td_thr_tsd.c | 31 unsigned int idx1st; in td_thr_tsd() local 61 idx1st = tk / pthread_key_2ndlevel_size; in td_thr_tsd() 65 if (pds.p_specific[idx1st] == NULL) in td_thr_tsd() 72 if (ps_pdread (th->th_ta_p->ph, &pds.p_specific[idx1st][idx2nd], &p, in td_thr_tsd()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads_db/ |
A D | td_thr_tsd.c | 32 unsigned int idx1st; in td_thr_tsd() local 62 idx1st = tk / pthread_key_2ndlevel_size; in td_thr_tsd() 66 if (pds.p_specific[idx1st] == NULL) in td_thr_tsd() 73 if (ps_pdread (th->th_ta_p->ph, &pds.p_specific[idx1st][idx2nd], &p, in td_thr_tsd()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl_db/ |
A D | td_thr_tsd.c | 29 uint32_t pthread_key_2ndlevel_size, idx1st, idx2nd; in td_thr_tsd() local 53 idx1st = tk / pthread_key_2ndlevel_size; in td_thr_tsd() 58 specific, idx1st); in td_thr_tsd()
|
Completed in 7 milliseconds