Searched defs:cond (Results 276 - 300 of 482) sorted by relevance

<<11121314151617181920

/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.h170 unsigned cond; member in struct:r600_bytecode_cf
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qpu_schedule.c329 uint32_t cond)
331 switch (cond) {
328 process_cond_deps(struct schedule_state *state, struct schedule_node *n, uint32_t cond) argument
/external/seccomp-tests/linux/
H A Dseccomp_bpf.c1631 pthread_cond_t *cond; member in struct:tsync_sibling
1643 pthread_cond_t cond; local
1676 pthread_cond_init(&self->cond, NULL);
1679 self->sibling[0].cond = &self->cond;
1687 self->sibling[1].cond = &self->cond;
1717 pthread_cond_destroy(&self->cond);
1741 pthread_cond_wait(me->cond, me->mutex);
1798 ASSERT_EQ(0, pthread_cond_broadcast(&self->cond)) {
[all...]
/external/selinux/checkpolicy/
H A Dmodule_compiler.c1193 cond_list_t *get_current_cond_list(cond_list_t * cond) argument
1198 return get_decl_cond_list(policydbp, decl, cond);
1205 void append_cond_list(cond_list_t * cond) argument
1207 cond_list_t *old_cond = get_current_cond_list(cond);
1211 old_cond->avtrue_list = cond->avtrue_list;
1215 tmp->next = cond->avtrue_list;
1218 old_cond->avfalse_list = cond->avfalse_list;
1222 tmp->next = cond->avfalse_list;
1225 old_cond->flags |= cond->flags;
/external/skia/third_party/lua/src/
H A Dlcode.c606 static int jumponcond (FuncState *fs, expdesc *e, int cond) { argument
611 return condjump(fs, OP_TEST, GETARG_B(ie), 0, !cond);
617 return condjump(fs, OP_TESTSET, NO_REG, e->u.info, cond);
746 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, argument
752 if (cond == 0 && op != OP_EQ) {
755 cond = 1;
757 e1->u.info = condjump(fs, op, cond, o1, o2);
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c123 pthread_cond_t cond; variable
363 pthread_cond_signal(&cond);
380 pthread_cond_signal(&cond);
413 pthread_cond_wait(&cond, &mtx);
434 pthread_cond_wait(&cond, &mtx);
568 result = pthread_cond_init(&cond, NULL);
/external/swiftshader/src/OpenGL/compiler/
H A DIntermediate.cpp617 TIntermNode* TIntermediate::addSelection(TIntermTyped* cond, TIntermNodePair nodePair, const TSourceLoc &line) argument
624 if (cond->getAsTyped() && cond->getAsTyped()->getAsConstantUnion()) {
625 if (cond->getAsConstantUnion()->getBConst(0) == true)
631 TIntermSelection* node = new TIntermSelection(cond, nodePair.node1, nodePair.node2);
658 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, const TSourceLoc &line) argument
669 if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnion()) {
670 if (cond->getAsConstantUnion()->getBConst(0))
679 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType());
739 TIntermNode* TIntermediate::addLoop(TLoopType type, TIntermNode* init, TIntermTyped* cond, TIntermType argument
[all...]
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp146 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
147 : Cond(cond), Then(then), Else(_else) {}
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp161 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
162 : Cond(cond), Then(then), Else(_else) {}
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
H A Dvmcore.ml38 let insist cond =
40 if not cond then
42 match print_checkpoints, cond with
917 let cond = build_trunc p1 i1_type "build_br" b in var
918 ignore (build_cond_br cond bb03 bb00 b)
/external/syslinux/com32/lua/src/
H A Dlcode.c606 static int jumponcond (FuncState *fs, expdesc *e, int cond) { argument
611 return condjump(fs, OP_TEST, GETARG_B(ie), 0, !cond);
617 return condjump(fs, OP_TESTSET, NO_REG, e->u.info, cond);
746 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, argument
752 if (cond == 0 && op != OP_EQ) {
755 cond = 1;
757 e1->u.info = condjump(fs, op, cond, o1, o2);
/external/v8/src/x87/
H A Ddisasm-x87.cc622 byte cond = *(data+1) & 0x0F; local
624 const char* mnem = jump_conditional_mnem[cond];
635 byte cond = *data & 0x0F; local
638 const char* mnem = jump_conditional_mnem[cond];
650 byte cond = *(data+1) & 0x0F; local
651 const char* mnem = set_conditional_mnem[cond];
661 byte cond = *(data + 1) & 0x0F; local
662 const char* mnem = conditional_move_mnem[cond];
/external/valgrind/VEX/priv/
H A Dguest_arm64_helpers.c103 tab_eval[(UInt)(_cc_op)][(UInt)(cond)]++; \
614 ULong cond = cond_n_op >> 4; local
616 ULong inv = cond & 1;
620 NOTE_EVAL(cc_op, cond);
626 switch (cond) {
674 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 );
H A Dguest_arm_helpers.c475 UInt cond = cond_n_op >> 4; local
482 if (cond == ARMCondAL) return 1;
484 inv = cond & 1;
486 switch (cond) {
532 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 );
H A Dguest_s390_helpers.c1848 ULong cond, cc_op; local
1860 cond = cond_expr->Iex.Const.con->Ico.U64;
1863 vassert(cond <= 15);
1868 | cond | 8 | 4 | 2 | 1 |
1877 cc == 0 --> cc_dep1 == cc_dep2 (cond == 8)
1878 cc == 1 --> cc_dep1 < cc_dep2 (cond == 4)
1879 cc == 2 --> cc_dep1 > cc_dep2 (cond == 2)
1881 Because cc == 3 cannot occur the rightmost bit of cond is
1884 if (cond == 8 || cond
[all...]
/external/valgrind/drd/
H A Ddrd_pthread_intercepts.c214 pthread_cond_t cond; member in struct:__anon24882
276 pthread_cond_init(&sema->cond, NULL);
283 pthread_cond_destroy(&sema->cond);
290 pthread_cond_wait(&sema->cond, &sema->mutex);
299 pthread_cond_signal(&sema->cond);
1016 int pthread_cond_init_intercept(pthread_cond_t* cond, argument
1023 cond, 0, 0, 0, 0);
1024 CALL_FN_W_WW(ret, fn, cond, attr);
1026 cond, 0, 0, 0, 0);
1031 (pthread_cond_t* cond, cons
1036 cond_init_intercept(cond_t *cond, int type, void *arg) argument
1055 pthread_cond_destroy_intercept(pthread_cond_t* cond) argument
1078 pthread_cond_wait_intercept(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
1101 pthread_cond_timedwait_intercept(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec* abstime) argument
1138 pthread_cond_signal_intercept(pthread_cond_t* cond) argument
1161 pthread_cond_broadcast_intercept(pthread_cond_t* cond) argument
[all...]
/external/valgrind/drd/tests/
H A Dtsan_thread_wrappers_pthread.h214 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); } argument
215 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); } argument
216 void Await(Condition cond) { WaitLoop(cond); } argument
218 bool ReaderLockWhenWithTimeout(Condition cond, int millis) argument
219 { Lock(); return WaitLoopWithTimeout(cond, millis); }
220 bool LockWhenWithTimeout(Condition cond, int millis) argument
221 { Lock(); return WaitLoopWithTimeout(cond, milli
222 AwaitWithTimeout(Condition cond, int millis) argument
227 WaitLoop(Condition cond) argument
235 WaitLoopWithTimeout(Condition cond, int millis) argument
[all...]
/external/valgrind/helgrind/
H A Dhg_intercepts.c1172 static int pthread_cond_wait_WRK(pthread_cond_t* cond, argument
1182 fprintf(stderr, "<< pthread_cond_wait %p %p", cond, mutex);
1186 /* Tell the tool a cond-wait is about to happen, so it can check
1191 pthread_cond_t*,cond, pthread_mutex_t*,mutex);
1203 CALL_FN_W_WW(ret, fn, cond,mutex);
1214 pthread_cond_t*,cond, pthread_mutex_t*,mutex, long,0,
1229 pthread_cond_t* cond, pthread_mutex_t* mutex) {
1230 return pthread_cond_wait_WRK(cond, mutex);
1234 pthread_cond_t* cond, pthread_mutex_t* mutex) {
1235 return pthread_cond_wait_WRK(cond, mute
1228 PTH_FUNC(int, pthreadZucondZuwaitZAZa, pthread_cond_t* cond, pthread_mutex_t* mutex) argument
1233 PTH_FUNC(int, pthreadZucondZuwaitZa, pthread_cond_t* cond, pthread_mutex_t* mutex) argument
1238 PTH_FUNC(int, condZuwait, pthread_cond_t *cond, pthread_mutex_t *mutex) argument
1259 pthread_cond_timedwait_WRK(pthread_cond_t* cond, pthread_mutex_t* mutex, struct timespec* abstime, int timeout_error) argument
1327 PTH_FUNC(int, pthreadZucondZutimedwaitZAZa, pthread_cond_t* cond, pthread_mutex_t* mutex, struct timespec* abstime) argument
1333 PTH_FUNC(int, pthreadZucondZutimedwait, pthread_cond_t* cond, pthread_mutex_t* mutex, struct timespec* abstime) argument
1338 PTH_FUNC(int, pthreadZucondZutimedwaitZDZa, pthread_cond_t* cond, pthread_mutex_t* mutex, struct timespec* abstime) argument
1343 PTH_FUNC(int, pthreadZucondZutimedwaitZuZa, pthread_cond_t* cond, pthread_mutex_t* mutex, struct timespec* abstime) argument
1349 PTH_FUNC(int, condZutimedwait, pthread_cond_t *cond, pthread_mutex_t *mutex, struct timespec *abstime) argument
1354 PTH_FUNC(int, condZureltimedwait, pthread_cond_t *cond, pthread_mutex_t *mutex, struct timespec *reltime) argument
1373 pthread_cond_signal_WRK(pthread_cond_t* cond) argument
1403 PTH_FUNC(int, pthreadZucondZusignalZAZa, pthread_cond_t* cond) argument
1408 PTH_FUNC(int, pthreadZucondZusignal, pthread_cond_t* cond) argument
1413 PTH_FUNC(int, condZusignal, pthread_cond_t *cond) argument
1434 pthread_cond_broadcast_WRK(pthread_cond_t* cond) argument
1464 PTH_FUNC(int, pthreadZucondZubroadcastZAZa, pthread_cond_t* cond) argument
1469 PTH_FUNC(int, pthreadZucondZubroadcast, pthread_cond_t* cond) argument
1474 PTH_FUNC(int, condZubroadcast, pthread_cond_t *cond) argument
1493 pthread_cond_init_WRK(pthread_cond_t* cond, pthread_condattr_t *cond_attr) argument
1520 PTH_FUNC(int, pthreadZucondZuinitZAZa, pthread_cond_t* cond, pthread_condattr_t* cond_attr) argument
1525 PTH_FUNC(int, pthreadZucondZuinit, pthread_cond_t* cond, pthread_condattr_t * cond_attr) argument
1535 PTH_FUNC(int, condZuinit, cond_t *cond, int type, void *arg) argument
1574 pthread_cond_destroy_WRK(pthread_cond_t* cond) argument
1610 PTH_FUNC(int, pthreadZucondZudestroyZAZa, pthread_cond_t* cond) argument
1615 PTH_FUNC(int, pthreadZucondZudestroy, pthread_cond_t* cond) argument
1620 PTH_FUNC(int, condZudestroy, pthread_cond_t *cond) argument
[all...]
/external/vixl/src/aarch32/
H A Ddisasm-aarch32.h102 ConditionPrinter(const ITBlock& it_block, Condition cond) argument
103 : it_block_(it_block), cond_(cond) {}
104 friend std::ostream& operator<<(std::ostream& os, ConditionPrinter cond) { argument
105 if (cond.it_block_.InITBlock() && cond.cond_.Is(al) &&
106 !cond.cond_.IsNone()) {
109 return os << cond.cond_;
192 virtual DisassemblerStream& operator<<(const ConditionPrinter& cond) { argument
193 os_ << cond; local
196 virtual DisassemblerStream& operator<<(Condition cond) { argument
197 os_ << cond; local
[all...]
H A Dmacro-assembler-aarch32.cc500 void MacroAssembler::HandleOutOfBoundsImmediate(Condition cond, argument
505 mov(cond, tmp, imm & 0xffff);
511 mvn(cond, tmp, ~imm);
517 mvn(cond, tmp, ~imm);
522 mov(cond, tmp, imm & 0xffff);
523 movt(cond, tmp, imm >> 16);
547 Condition cond,
561 ITScope it_scope(this, &cond);
592 sub(cond, scratch, base, sub_pc_offset);
603 add(cond, scratc
546 MemOperandComputationHelper( Condition cond, Register scratch, Register base, uint32_t offset, uint32_t extra_offset_mask) argument
1246 Delegate(InstructionType type, InstructionCondSizeRL instruction, Condition cond, EncodingSize size, Register rd, Label* label) argument
1270 GenerateSplitInstruction( InstructionCondSizeRROp instruction, Condition cond, Register rd, Register rn, uint32_t imm, uint32_t mask) argument
1293 Delegate(InstructionType type, InstructionCondSizeRROp instruction, Condition cond, EncodingSize size, Register rd, Register rn, const Operand& operand) argument
1608 Delegate(InstructionType type, InstructionCondDtSSop instruction, Condition cond, DataType dt, SRegister rd, const SOperand& operand) argument
1639 Delegate(InstructionType type, InstructionCondDtDDop instruction, Condition cond, DataType dt, DRegister rd, const DOperand& operand) argument
1785 Delegate(InstructionType type, InstructionCondDtQQop instruction, Condition cond, DataType dt, QRegister rd, const QOperand& operand) argument
1930 Delegate(InstructionType type, InstructionCondRL instruction, Condition cond, Register rt, Label* label) argument
1969 Delegate(InstructionType type, InstructionCondRRL instruction, Condition cond, Register rt, Register rt2, Label* label) argument
1993 Delegate(InstructionType type, InstructionCondSizeRMop instruction, Condition cond, EncodingSize size, Register rd, const MemOperand& operand) argument
2190 Delegate(InstructionType type, InstructionCondRRMop instruction, Condition cond, Register rt, Register rt2, const MemOperand& operand) argument
2387 Delegate(InstructionType type, InstructionCondDtSMop instruction, Condition cond, DataType dt, SRegister rd, const MemOperand& operand) argument
2460 Delegate(InstructionType type, InstructionCondDtDMop instruction, Condition cond, DataType dt, DRegister rd, const MemOperand& operand) argument
2533 Delegate(InstructionType type, InstructionCondMsrOp instruction, Condition cond, MaskedSpecialRegister spec_reg, const Operand& operand) argument
2555 Delegate(InstructionType type, InstructionCondDtDL instruction, Condition cond, DataType dt, DRegister rd, Label* label) argument
2578 Delegate(InstructionType type, InstructionCondDtSL instruction, Condition cond, DataType dt, SRegister rd, Label* label) argument
[all...]
/external/blktrace/btreplay/
H A Dbtreplay.c86 * @cond: Condition variable used when waiting on a volatile value change
107 pthread_cond_t cond; member in struct:thr_info
402 * __wait_cv - Waits for a variable under cond var control to hit a value
763 pthread_cond_init(&tip->cond, NULL);
846 pthread_cond_destroy(&tip->cond);
1014 if (pthread_cond_wait(&tip->cond, &tip->mutex)) {
1016 "nfree_current cond wait failed\n");
1075 pthread_cond_signal(&tip->cond);
1158 if (pthread_cond_wait(&tip->cond, &tip->mutex)) {
1160 "nfree_current cond wai
[all...]
/external/clang/lib/AST/
H A DStmt.cpp767 Stmt *init, VarDecl *var, Expr *cond, Stmt *then,
773 SubExprs[COND] = cond;
829 Expr *cond)
833 SubExprs[COND] = cond;
862 WhileStmt::WhileStmt(const ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body, argument
866 SubExprs[COND] = cond;
766 IfStmt(const ASTContext &C, SourceLocation IL, bool IsConstexpr, Stmt *init, VarDecl *var, Expr *cond, Stmt *then, SourceLocation EL, Stmt *elsev) argument
828 SwitchStmt(const ASTContext &C, Stmt *init, VarDecl *Var, Expr *cond) argument
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp485 constexpr bool cond() { function in namespace:loops
496 static_assert(cond(), "");
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp787 bool check (bool cond, const char* msg);
809 bool ResultCollector::check (bool cond, const char* msg) argument
811 if (!cond)
813 return cond;
/external/freetype/src/cff/
H A Dcffgload.c2448 FT_Fixed cond = ( args[0] && args[1] ); local
2453 args[0] = cond ? 0x10000L : 0;
2460 FT_Fixed cond = ( args[0] || args[1] ); local
2465 args[0] = cond ? 0x10000L : 0;
2472 FT_Fixed cond = !args[0]; local
2477 args[0] = cond ? 0x10000L : 0;
2484 FT_Fixed cond = ( args[0] == args[1] ); local
2489 args[0] = cond ? 0x10000L : 0;
2496 FT_Fixed cond = ( args[2] <= args[3] ); local
2501 if ( !cond )
[all...]

Completed in 647 milliseconds

<<11121314151617181920