HomeSort by relevance Sort by last modified time
    Searched defs:cond (Results 1 - 25 of 253) 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/qemu/
qemu-thread.h 11 pthread_cond_t cond; member in struct:QemuCond
29 void qemu_cond_init(QemuCond *cond);
30 void qemu_cond_destroy(QemuCond *cond);
31 void qemu_cond_signal(QemuCond *cond);
32 void qemu_cond_broadcast(QemuCond *cond);
33 void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex);
34 int qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs);
  /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:__anon1635
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
  /hardware/qcom/camera/QCamera2/stack/common/
cam_semaphore.h 45 pthread_cond_t cond; member in struct:__anon33055
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/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/valgrind/main/drd/
drd_clientreq.c 382 const Addr cond = arg[1]; local
386 DRD_(cond_pre_wait)(cond, mutex);
393 const Addr cond = arg[1]; local
396 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/v8/src/arm/
macro-assembler-arm.cc 75 void MacroAssembler::Jump(Register target, Condition cond) {
77 bx(target, cond);
79 mov(pc, Operand(target), LeaveCC, cond);
85 Condition cond) {
88 bx(ip, cond);
90 mov(pc, Operand(target, rmode), LeaveCC, cond);
96 Condition cond) {
98 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
103 Condition cond) {
106 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
200 Call(reinterpret_cast<Address>(code.location()), rmode, cond); local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ForLoopUnroll.cpp 68 TIntermNode* cond = node->getCondition(); local
69 ASSERT(cond != NULL);
70 TIntermBinary* binOp = cond->getAsBinaryNode();
  /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
  /external/chromium_org/tools/gn/
parser_unittest.cc 132 scoped_ptr<ConditionNode> cond = simple_if.ParseCondition(); local
133 ASSERT_TRUE(cond);
135 EXPECT_TRUE(IsLiteralEqual(cond->condition(), "1"));
136 EXPECT_FALSE(cond->if_false()); // No else block.
137 EXPECT_TRUE(IsBlockWithAssignment(cond->if_true(), "a", "2"));
145 cond = complex_if.ParseCondition();
146 ASSERT_TRUE(cond);
148 EXPECT_TRUE(IsLiteralEqual(cond->condition(), "1"));
149 EXPECT_TRUE(IsBlockWithAssignment(cond->if_true(), "a", "2"));
151 ASSERT_TRUE(cond->if_false())
    [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.cc 55 void MacroAssembler::Jump(Register target, Condition cond) {
56 bx(target, cond);
61 Condition cond) {
63 bx(ip, cond);
68 Condition cond) {
70 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
75 Condition cond) {
79 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
83 int MacroAssembler::CallSize(Register target, Condition cond) {
88 void MacroAssembler::Call(Register target, Condition cond) {
186 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode); local
    [all...]

Completed in 771 milliseconds

1 2 3 4 5 6 7 8 91011