Searched defs:cond (Results 151 - 175 of 285) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglsl_parser.h474 ast_node *cond; member in struct:YYSTYPE::__anon13467
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c81 LLVMValueRef cond; local
154 cond = lp_build_cmp(bld, PIPE_FUNC_LESS, a, b);
155 return lp_build_select(bld, cond, a, b);
171 LLVMValueRef cond; local
245 cond = lp_build_cmp(bld, PIPE_FUNC_GREATER, a, b);
246 return lp_build_select(bld, cond, a, b);
1163 LLVMValueRef cond; local
1197 cond = lp_build_cmp(bld, PIPE_FUNC_GREATER, a, bld->zero);
1198 res = lp_build_select(bld, cond, bld->one, minus_one);
1202 cond
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_to_hir.cpp3784 ir_rvalue *const cond = local
3787 if ((cond == NULL)
3788 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
3798 new(ctx) ir_expression(ir_unop_logic_not, cond);
H A Dir.h1303 ir_discard(ir_rvalue *cond) argument
1306 this->condition = cond;
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlparser.c1169 static int cond (LexState *ls) { function
1170 /* cond -> exp */
1234 /* whilestat -> WHILE cond DO block END */
1241 condexit = cond(ls);
1253 /* repeatstat -> REPEAT block UNTIL cond */
1263 condexit = cond(ls); /* read condition (inside scope block) */
1375 /* test_then_block -> [IF | ELSEIF] cond THEN block */
1410 /* ifstat -> IF cond THEN block {ELSEIF cond THEN block} [ELSE block] END */
1413 test_then_block(ls, &escapelist); /* IF cond THE
[all...]
/external/chromium_org/v8/src/arm64/
H A Ddisasm-arm64.cc378 Condition cond = static_cast<Condition>(instr->Condition()); local
379 bool invertible_cond = (cond != al) && (cond != nv);
1560 int cond; local
1562 case 'B': cond = instr->ConditionBranch(); break;
1564 cond = NegateCondition(static_cast<Condition>(instr->Condition()));
1567 default: cond = instr->Condition();
1569 AppendToOutput("%s", condition_code[cond]);
H A Dmacro-assembler-arm64-inl.h128 Condition cond) {
131 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMN);
133 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMP);
141 Condition cond) {
144 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMP);
146 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMN);
337 void MacroAssembler::B(Condition cond, Label* label) { argument
339 B(label, cond);
397 Condition cond) {
400 DCHECK((cond !
125 Ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
138 Ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
395 Cinc(const Register& rd, const Register& rn, Condition cond) argument
405 Cinv(const Register& rd, const Register& rn, Condition cond) argument
429 Cneg(const Register& rd, const Register& rn, Condition cond) argument
441 CzeroX(const Register& rd, Condition cond) argument
452 CmovX(const Register& rd, const Register& rn, Condition cond) argument
465 Cset(const Register& rd, Condition cond) argument
473 Csetm(const Register& rd, Condition cond) argument
481 Csinc(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
492 Csinv(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
503 Csneg(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
556 Fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
585 Fcsel(const FPRegister& fd, const FPRegister& fn, const FPRegister& fm, Condition cond) argument
1624 CompareAndBranch(const Register& lhs, const Operand& rhs, Condition cond, Label* label) argument
[all...]
/external/chromium_org/v8/src/mips/
H A Dmacro-assembler-mips.h136 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
137 #define COND_ARGS cond, r1, r2
168 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
188 inline void Ret(BranchDelaySlot bd, Condition cond = al,
190 Ret(cond, rs, rt, bd);
194 Condition cond,
204 Condition cond = cc_always,
213 Condition cond,
279 Condition cond, Register src1, const Operand& src2);
286 Condition cond, Registe
676 Push(Register src, Condition cond, Register tst1, Register tst2) argument
[all...]
/external/chromium_org/v8/src/mips64/
H A Dmacro-assembler-mips64.h157 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
158 #define COND_ARGS cond, r1, r2
189 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
209 inline void Ret(BranchDelaySlot bd, Condition cond = al,
211 Ret(cond, rs, rt, bd);
215 Condition cond,
225 Condition cond = cc_always,
234 Condition cond,
300 Condition cond, Register src1, const Operand& src2);
307 Condition cond, Registe
698 Push(Register src, Condition cond, Register tst1, Register tst2) argument
[all...]
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc787 byte cond = *(data + 1) & 0x0F; local
789 const char* mnem = conditional_code_suffix[cond];
797 byte cond = *data & 0x0F; local
800 const char* mnem = conditional_code_suffix[cond];
809 byte cond = *(data + 1) & 0x0F; local
810 const char* mnem = conditional_code_suffix[cond];
/external/clang/lib/AST/
H A DStmt.cpp822 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, argument
827 SubExprs[COND] = cond;
882 SwitchStmt::SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond) argument
886 SubExprs[COND] = cond;
915 WhileStmt::WhileStmt(const ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body, argument
919 SubExprs[COND] = cond;
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp487 constexpr bool cond() { function in namespace:loops
498 static_assert(cond(), "");
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp622 bool check (bool cond, const char* msg);
644 bool ResultCollector::check (bool cond, const char* msg) argument
646 if (!cond)
648 return cond;
/external/freetype/src/cff/
H A Dcffgload.c2340 FT_Fixed cond = args[0] && args[1]; local
2345 args[0] = cond ? 0x10000L : 0;
2352 FT_Fixed cond = args[0] || args[1]; local
2357 args[0] = cond ? 0x10000L : 0;
2364 FT_Fixed cond = !args[0]; local
2369 args[0] = cond ? 0x10000L : 0;
2376 FT_Fixed cond = ( args[2] <= args[3] ); local
2381 if ( !cond )
/external/libhevc/common/arm/
H A Dihevc_intra_pred_filters_neon_intr.c1229 if(0 != (nt & 7)) /* cond for multiple of 4 */
1555 WORD32 cond = 0, col_1; local
1588 for(col = (nt - 1); (col > 0) && (cond == 0); col -= 8)
1645 for(col_1 = nt - 7; (col_1 > 0) && (cond == 1); col_1 -= 8)
1676 cond = 1;
1911 /* cond to allow multiples of 8 */
/external/libsepol/src/
H A Dexpand.c1702 cond_av_list_t ** cond)
1712 if (cond) {
1714 if (node->parse_context == cond)
1728 if (cond) {
1729 node->parse_context = cond;
1737 nl->next = *cond;
1738 *cond = nl;
1751 uint32_t specified, cond_av_list_t ** cond,
1809 if ((conflict == 1 && cond == NULL)
1810 || node->parse_context == cond)
1700 find_avtab_node(sepol_handle_t * handle, avtab_t * avtab, avtab_key_t * key, cond_av_list_t ** cond) argument
1749 expand_terule_helper(sepol_handle_t * handle, policydb_t * p, uint32_t * typemap, uint32_t specified, cond_av_list_t ** cond, cond_av_list_t ** other, uint32_t stype, uint32_t ttype, class_perm_node_t * perms, avtab_t * avtab, int enabled) argument
1858 expand_avrule_helper(sepol_handle_t * handle, uint32_t specified, cond_av_list_t ** cond, uint32_t stype, uint32_t ttype, class_perm_node_t * perms, avtab_t * avtab, int enabled) argument
1933 expand_rule_helper(sepol_handle_t * handle, policydb_t * p, uint32_t * typemap, avrule_t * source_rule, avtab_t * dest_avtab, cond_av_list_t ** cond, cond_av_list_t ** other, int enabled, ebitmap_t * stypes, ebitmap_t * ttypes) argument
1992 convert_and_expand_rule(sepol_handle_t * handle, policydb_t * dest_pol, uint32_t * typemap, avrule_t * source_rule, avtab_t * dest_avtab, cond_av_list_t ** cond, cond_av_list_t ** other, int enabled, int do_neverallow) argument
2412 expand_rule(sepol_handle_t * handle, policydb_t * source_pol, avrule_t * source_rule, avtab_t * dest_avtab, cond_av_list_t ** cond, cond_av_list_t ** other, int enabled) argument
[all...]
H A Dlink.c2281 cond_list_t *cond = decl->cond_list; local
2282 while (cond) {
2283 if (cond_normalize_expr(p, cond) < 0)
2285 cond = cond->next;
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
168 : Cond(cond), Then(then), Else(_else) {}
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp185 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
186 : Cond(cond), Then(then), Else(_else) {}
H A Dtoy.cpp191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
192 : Cond(cond), Then(then), Else(_else) {}
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp215 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
216 : Cond(cond), Then(then), Else(_else) {}
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
169 : Cond(cond), Then(then), Else(_else) {}
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
171 : Cond(cond), Then(then), Else(_else) {}
H A Dtoy.cpp170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
171 : Cond(cond), Then(then), Else(_else) {}
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp42 STATISTIC(NumCBrFixed, "Number of cond branches fixed");
239 ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, int ubr) argument
240 : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {}

Completed in 4579 milliseconds

1234567891011>>