Searched refs:th (Results 26 - 50 of 73) sorted by relevance

123

/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_wait/
H A D2-3.c199 pthread_t th; local
308 ret = pthread_create(&th, NULL, threaded, NULL);
323 ret = pthread_cancel(th);
351 ret = pthread_join(th, &rc);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_cond_timedwait/
H A Ds-c.c261 pthread_t *th; local
283 th = (pthread_t *)calloc(nthreads, sizeof(pthread_t));
284 if (th == NULL) { UNRESOLVED(errno, "Not enough memory for thread storage"); }
343 ret = pthread_create(&th[i], &ta, waiter, (void *)&td);
352 ret = pthread_cancel(th[j]);
362 ret = pthread_join(th[j], NULL);
365 free(th);
424 ret = pthread_join(th[i], NULL);
453 free(th);
H A Dstress1.c354 pthread_t th[NTOT]; local
567 ret = pthread_create( &th[i], &ta, threaded_A, &(td->cd[i]));
583 ret = pthread_join( th[i], NULL);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsol-thread.c266 td_thrhandle_t th;
274 val = p_td_ta_map_id2thr (main_ta, GET_THREAD (thread_id), &th);
280 val = p_td_thr_get_info (&th, &ti);
306 td_thrhandle_t th;
317 val = p_td_ta_map_lwp2thr (main_ta, GET_LWP (lwp), &th);
323 val = p_td_thr_validate (&th);
329 val = p_td_thr_get_info (&th, &ti);
877 td_thrhandle_t th;
881 if ((val = p_td_ta_map_id2thr (main_ta, pid, &th)) != TD_OK)
883 if ((val = p_td_thr_validate (&th)) !
264 td_thrhandle_t th; local
304 td_thrhandle_t th; local
874 td_thrhandle_t th; local
1358 sol_find_new_threads_callback(const td_thrhandle_t *th, void *ignored) argument
1429 info_cb(const td_thrhandle_t *th, void *s) argument
[all...]
H A Docd.h118 int ocd_thread_alive (ptid_t th);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
H A Ds-c1.c151 pthread_t *th; local
173 th = (pthread_t *)calloc(1 + my_max, sizeof(pthread_t));
174 if (th == NULL) { UNRESOLVED(errno, "Not enough memory for thread storage"); }
235 ret = pthread_create(&th[nthreads], &scenarii[sc].ta, threaded, &ctl);
311 ret = pthread_join(th[i], NULL);
337 free(th);
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Dphix_manager.c114 cio_write( cio, cstr_info.tw*cstr_info.th, size_of_coding); /* M */
116 for( tileno=0; tileno<cstr_info.tw*cstr_info.th; tileno++){
H A Dppix_manager.c118 cio_write( cio, cstr_info.tw*cstr_info.th, size_of_coding); /* M */
120 for( tileno=0; tileno<cstr_info.tw*cstr_info.th; tileno++){
H A Dj2k.c321 j2k->cur_totnum_tp = (int *) opj_malloc(cp->tw * cp->th * sizeof(int));
322 for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
518 cp->th = int_ceildiv(image->y1 - cp->ty0, cp->tdy);
524 if ((cp->tw < 1) || (cp->th < 1) || (cp->tw > cp->max_tiles) || (cp->th > cp->max_tiles)) {
527 cp->tw, cp->th);
545 if (cp->th < 1) {
546 cp->th= 1;
548 cp->th);
550 if (cp->th > c
[all...]
H A Dj2k.h244 int th; member in struct:opj_cp
H A Dtcd.h166 int tw, th; /* number of tiles in width and heigth */ member in struct:opj_tcd_image
H A Dopenjpeg.c332 for (tileno = 0; tileno < cstr_info->tw * cstr_info->th; tileno++) {
H A Dopenjpeg.h696 int th; member in struct:opj_codestream_info
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_mutex_lock/
H A Ds-c1.c175 pthread_t th; local
254 ret = pthread_create(&th, &tha, threaded, NULL);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_timedwait/
H A D2-5.c194 pthread_t th[NTHREADS]; local
306 ret = pthread_create(&th[j], NULL, threaded, (void *)(long)(j & 1));
335 ret = pthread_join(th[j], NULL);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_init/
H A D1-3.c136 pthread_t th[3]; member in struct:__anon5965
160 ret = pthread_kill(sigdata.th[0], SIGUSR2);
163 ret = pthread_kill(sigdata.th[1], SIGUSR2);
166 ret = pthread_kill(sigdata.th[2], SIGUSR2);
204 { UNRESOLVED(ret, "[child][th] Unable to lock mutex."); }
231 { UNRESOLVED(ret, "[child][th] Unable to unlock mutex."); }
255 dtN.pth = &(sigdata.th[0]);
261 dtD.pth = &(sigdata.th[1]);
267 dtP.pth = &(sigdata.th[2]);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_cond_wait/
H A Dstress1.c344 pthread_t th[NTOT]; local
559 ret = pthread_create( &th[i], &ta, threaded_A, &(td->cd[i]));
575 ret = pthread_join( th[i], NULL);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_create/
H A D3-2.c238 pthread_t th; local
249 ret = pthread_create(&th, ta, overflow, NULL); /* Create a new thread with the same attributes */
282 ret = pthread_join(th, &rc);
/haiku-fatelf/src/libs/edit/
H A Drefresh.c959 int h, v, th; local
972 th = el->el_term.t_size.h; /* optimize for speed */
990 if (h > th) { /* if overflow, compensate */
996 if (h > th) { /* if overflow, compensate */
997 h = h - th;
1003 if (h >= th) { /* check, extra long tabs picked up here also */
/haiku-fatelf/src/libs/print/libgutenprint/doc/gutenprint/html/
H A Ddoxygen.css326 th.dirtab {
611 table.doxtable td, table.doxtable th {
616 table.doxtable th {
/haiku-fatelf/src/libs/print/libgutenprint/doc/gutenprintui2/html/
H A Ddoxygen.css326 th.dirtab {
611 table.doxtable td, table.doxtable th {
616 table.doxtable th {
/haiku-fatelf/src/bin/coreutils/lib/
H A Dconfig.charset217 for l in th th_TH; do
677 echo "th CP874"
/haiku-fatelf/src/bin/network/wget/lib/
H A Dconfig.charset217 for l in th th_TH; do
677 echo "th CP874"
/haiku-fatelf/src/add-ons/media/media-add-ons/finepix_webcam/FinePixJpeg/
H A Dfinepix-jpeg.c149 int tc, th, tt; local
184 th = tc & 15;
186 tt = tc * 2 + th;
187 if (tc > 1 || th > 1)
/haiku-fatelf/src/libs/pdflib/libs/tiff/
H A Dtif_getimage.c460 uint32 tw, th; local
471 TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
477 rowstoread = th - (row + img->row_offset) % th;
488 pos = ((row+img->row_offset) % th) * TIFFTileRowSize(tif);
528 uint32 tw, th; local
553 TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
559 rowstoread = th - (row + img->row_offset) % th;
588 pos = ((row+img->row_offset) % th) * TIFFTileRowSiz
[all...]

Completed in 445 milliseconds

123