HomeSort by relevance Sort by last modified time
    Searched defs:cond (Results 1 - 25 of 297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/helgrind/tests/
cond_timedwait_invalid.c 11 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; local
22 assert(pthread_cond_timedwait(&cond, &mutex, &abstime)==EINVAL);
pth_destroy_cond.c 6 // the guest application wrongly destroys a cond var being waited
9 pthread_cond_t cond; variable
17 pthread_cond_signal(&cond);
18 pthread_cond_destroy(&cond); // ERROR!!!
26 pthread_cond_init(&cond, NULL);
31 pthread_cond_wait(&cond, &mutex);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parse_extra.c 100 int cond = 0; local
105 cond = COND_EQ;
111 cond = COND_FL;
117 cond = COND_GE;
119 cond = COND_GT;
125 cond = COND_LE;
127 cond = COND_LT;
133 cond = COND_NE;
139 cond = COND_TR;
147 return ((cond == 0) || (s[2] != '\0')) ? 0 : cond
    [all...]
  /external/mesa3d/src/mesa/program/
program_parse_extra.c 100 int cond = 0; local
105 cond = COND_EQ;
111 cond = COND_FL;
117 cond = COND_GE;
119 cond = COND_GT;
125 cond = COND_LE;
127 cond = COND_LT;
133 cond = COND_NE;
139 cond = COND_TR;
147 return ((cond == 0) || (s[2] != '\0')) ? 0 : cond
    [all...]
  /external/qemu/audio/
audio_pt_int.h 9 pthread_cond_t cond; member in struct:audio_pt
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 53 private final Condition cond; field in class:WaitingThread
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) {
75 if (cond == null) {
79 this.cond = cond;
91 return this.cond;
141 // the lock would not be released on calling cond.await() below.
157 success = this.cond.awaitUntil(deadline);
159 this.cond.await()
    [all...]
  /device/asus/flo/camera/QCamera2/stack/common/
cam_semaphore.h 45 pthread_cond_t cond; member in struct:__anon2646
51 pthread_cond_init(&(s->cond), NULL);
59 pthread_cond_signal(&(s->cond));
68 rc = pthread_cond_wait(&(s->cond), &(s->mutex));
77 pthread_cond_destroy(&(s->cond));
  /device/lge/hammerhead/camera/QCamera2/stack/common/
cam_semaphore.h 45 pthread_cond_t cond; member in struct:__anon3133
51 pthread_cond_init(&(s->cond), NULL);
59 pthread_cond_signal(&(s->cond));
68 rc = pthread_cond_wait(&(s->cond), &(s->mutex));
77 pthread_cond_destroy(&(s->cond));
  /device/moto/shamu/camera/QCamera2/stack/common/
cam_semaphore.h 45 pthread_cond_t cond; member in struct:__anon4192
51 pthread_cond_init(&(s->cond), NULL);
59 pthread_cond_signal(&(s->cond));
68 rc = pthread_cond_wait(&(s->cond), &(s->mutex));
77 pthread_cond_destroy(&(s->cond));
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p1.cpp 5 static T cond; member in struct:A
9 return (cond ? value + value : value);
15 A<bool>::cond = true; member in class:A
  /external/clang/test/CodeGen/
conditional-gnu-ext.c 32 _Complex int cond; local
  /external/compiler-rt/test/lsan/TestCases/
high_allocator_contention.cc 15 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
21 while (!go) pthread_cond_wait(&cond, &mutex);
44 pthread_cond_broadcast(&cond);
  /external/fio/
mutex.h 11 pthread_cond_t cond; member in struct:fio_mutex
mutex.c 24 pthread_cond_destroy(&mutex->cond);
31 pthread_condattr_t cond; local
54 pthread_condattr_init(&cond);
56 pthread_condattr_setpshared(&cond, PTHREAD_PROCESS_SHARED);
58 pthread_cond_init(&mutex->cond, &cond);
66 pthread_condattr_destroy(&cond);
116 ret = pthread_cond_timedwait(&mutex->cond, &mutex->lock, &t);
155 pthread_cond_wait(&mutex->cond, &mutex->lock);
170 pthread_cond_signal(&mutex->cond);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_syscond.c 43 SDL_cond *cond; local
45 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
46 if ( cond ) {
47 if ( pth_cond_init(&(cond->condpth_p)) < 0 ) {
49 SDL_free(cond);
50 cond = NULL;
55 return(cond);
59 void SDL_DestroyCond(SDL_cond *cond)
61 if ( cond ) {
62 SDL_free(cond);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syscond.c 34 pthread_cond_t cond; member in struct:SDL_cond
40 SDL_cond *cond; local
42 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
43 if ( cond ) {
44 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
46 SDL_free(cond);
47 cond = NULL;
50 return(cond);
54 void SDL_DestroyCond(SDL_cond *cond)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_syscond.c 38 pthread_cond_t cond; member in struct:SDL_cond
44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
50 SDL_free(cond);
51 cond = NULL;
54 return(cond);
58 void SDL_DestroyCond(SDL_cond *cond)
    [all...]
  /external/qemu/include/qemu/
thread-posix.h 11 pthread_cond_t cond; member in struct:QemuCond
17 pthread_cond_t cond; member in struct:QemuSemaphore
27 pthread_cond_t cond; member in struct:QemuEvent
  /external/valgrind/main/drd/
drd_clientreq.c 411 const Addr cond = arg[1]; local
415 DRD_(cond_pre_wait)(cond, mutex);
422 const Addr cond = arg[1]; local
425 DRD_(cond_post_wait)(cond);
  /external/valgrind/main/drd/tests/
free_is_write.c 15 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
34 pthread_cond_signal(&cond);
52 while (count < THREAD_COUNT && pthread_cond_wait(&cond, &mutex) == 0)
  /external/webrtc/src/system_wrappers/source/
event_posix.h 52 pthread_cond_t cond; member in class:webrtc::EventPosix
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 62 LLVMValueRef cond);
131 LLVMIntPredicate cond);
145 LLVMIntPredicate cond; member in struct:lp_build_for_loop_state

Completed in 1973 milliseconds

1 2 3 4 5 6 7 8 91011>>