Home
last modified time | relevance | path

Searched refs:expr (Results 526 - 550 of 972) sorted by relevance

1...<<21222324252627282930>>...39

/third_party/rust/crates/regex/src/
H A Dre_builder.rs37 ($name:ident, $regex_mod:ident, $only_utf8:expr) => {
235 ($name:ident, $regex_mod:ident, $only_utf8:expr) => {
/third_party/rust/crates/os_str_bytes/src/
H A Dlib.rs214 ( $message:expr , $item:item ) => {
224 ( $result:expr ) => {
/third_party/alsa-lib/src/ucm/
H A Ducm_cond.c359 snd_config_t *expr, *_true = NULL, *_false = NULL; in if_eval_one() local
369 if (snd_config_search(cond, "Condition", &expr) < 0) { in if_eval_one()
398 err = if_eval(uc_mgr, expr); in if_eval_one()
/third_party/mesa3d/src/compiler/glsl/
H A Dir_builder.h131 ir_expression *expr(ir_expression_operation op, operand a);
132 ir_expression *expr(ir_expression_operation op, operand a, operand b);
133 ir_expression *expr(ir_expression_operation op, operand a, operand b, operand c);
/third_party/ltp/tools/sparse/sparse-src/
H A Dlib.c215 void expression_error(struct expression *expr, const char *fmt, ...) in expression_error() argument
219 do_error(expr->pos, fmt, args); in expression_error()
221 expr->ctype = &bad_ctype; in expression_error()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkDefs.hpp273 Error (VkResult error, const char* message, const char* expr, const char* file, int line);
286 NotSupportedError (VkResult error, const char* message, const char* expr, const char* file, int line);
299 OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line);
/third_party/skia/src/sksl/ir/
H A DSkSLPrefixExpression.cpp99 for (const std::unique_ptr<Expression>& expr : array) { in negate_operands()
101 if (std::unique_ptr<Expression> simplified = simplify_negation(context, *expr)) { in negate_operands()
105 expr->clone())); in negate_operands()
/third_party/skia/src/sksl/codegen/
H A DSkSLMetalCodeGenerator.h148 void writeExpression(const Expression& expr, Precedence parentPrecedence);
219 void writeNumberAsMatrix(const Expression& expr, const Type& matrixType);
225 void writeIndexExpression(const IndexExpression& expr);
H A DSkSLSPIRVCodeGenerator.h202 std::vector<SpvId> getAccessChain(const Expression& expr, OutputStream& out);
230 SpvId writeExpression(const Expression& expr, OutputStream& out);
254 SpvId vectorize(const Expression& expr, int vectorSize, OutputStream& out);
364 SpvId writeBinaryOperation(const BinaryExpression& expr, SpvOp_ ifFloat, SpvOp_ ifInt,
377 SpvId writeIndexExpression(const IndexExpression& expr, OutputStream& out);
/third_party/skia/include/sksl/
H A DDSLVar.h179 DSLPossibleExpression operator=(DSLExpression expr);
229 DSLPossibleExpression operator=(DSLExpression expr);
290 DSLPossibleExpression operator=(DSLExpression expr);
/third_party/rust/crates/minimal-lexical/src/
H A Dslow.rs199 (@mul $result:ident, $power:expr, $value:expr) => {
251 ($format:ident, $iter:expr, $result:ident, $count:ident) => {{
/third_party/rust/crates/rust-cexpr/tests/
H A Dclang.rs17 use cexpr::expr::{fn_macro_declaration, EvalResult, IdentifierParser};
38 use cexpr::expr::EvalResult::*; in test_definition()
130 assert_full_parse(IdentifierParser::new(&fnidents).expr(&expr_tokens)) in test_definition()
/third_party/rust/crates/serde/serde/src/
H A Dlib.rs284 ($expr:expr) => {
285 match $expr {
/third_party/vk-gl-cts/framework/common/
H A DtcuFloatFormat.cpp348 void check (const string& expr,
357 void Test::check (const string& expr, double result, double reference) const
362 oss << expr << " returned " << result << ", expected " << reference;
/third_party/rust/crates/cxx/src/macros/
H A Dconcat.rs4 (#[$name:ident = $value:expr] $($rest:tt)*) => {
/third_party/node/deps/v8/third_party/jinja2/
H A Dparser.py72 "'%s'" % describe_token_expr(expr) for expr in end_token_stack[-1]
192 expr = self.parse_tuple()
193 return nodes.Assign(target, expr, lineno=lineno)
490 expr = self.parse_math1()
508 return expr
509 return nodes.Compare(expr, ops, lineno=lineno)
787 def ensure(expr):
788 if not expr:
/third_party/node/tools/inspector_protocol/jinja2/
H A Dparser.py67 "'%s'" % describe_token_expr(expr)
68 for expr in end_token_stack[-1])
181 expr = self.parse_tuple()
182 return nodes.Assign(target, expr, lineno=lineno)
474 expr = self.parse_math1()
491 return expr
492 return nodes.Compare(expr, ops, lineno=lineno)
760 def ensure(expr):
761 if not expr:
/third_party/skia/third_party/externals/jinja2/
H A Dparser.py72 "'%s'" % describe_token_expr(expr) for expr in end_token_stack[-1]
192 expr = self.parse_tuple()
193 return nodes.Assign(target, expr, lineno=lineno)
490 expr = self.parse_math1()
508 return expr
509 return nodes.Compare(expr, ops, lineno=lineno)
787 def ensure(expr):
788 if not expr:
/third_party/ffmpeg/libavfilter/
H A Dvf_scale_qsv.c463 char *expr; in qsvscale_config_props() local
479 av_expr_parse_and_eval(&res, (expr = s->w_expr), in qsvscale_config_props()
483 if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr), in qsvscale_config_props()
489 if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr), in qsvscale_config_props()
541 "Error when evaluating the expression '%s'\n", expr); in qsvscale_config_props()
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_private.h95 #define vtn_fail_if(expr, ...) \
97 if (unlikely(expr)) \
112 #define vtn_assert(expr) \
114 if (!likely(expr)) \
115 vtn_fail("%s", #expr); \
/third_party/skia/third_party/externals/tint/src/resolver/
H A Ddependency_graph.cc218 TraverseExpression(r->expr); in TraverseStatement()
296 root, diagnostics_, [&](const ast::Expression* expr) { in TraverseExpression()
297 if (auto* ident = expr->As<ast::IdentifierExpression>()) { in TraverseExpression()
314 if (auto* call = expr->As<ast::CallExpression>()) { in TraverseExpression()
332 if (auto* cast = expr->As<ast::BitcastExpression>()) { in TraverseExpression()
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dtranslate.rs190 HirFrame::Expr(expr) => expr, in unwrap_expr()
191 _ => panic!("tried to unwrap expr from HirFrame, got: {:?}", self), in unwrap_expr()
331 let expr = Hir::class(hir::Class::Unicode(cls)); in visit_post()
332 self.push(HirFrame::Expr(expr)); in visit_post()
347 let expr = Hir::class(hir::Class::Bytes(cls)); in visit_post()
348 self.push(HirFrame::Expr(expr)); in visit_post()
352 let expr = self.pop().unwrap().unwrap_expr(); in visit_post()
353 self.push(HirFrame::Expr(self.hir_repetition(x, expr))); in visit_post()
356 let expr in visit_post()
[all...]
/third_party/ffmpeg/libavformat/
H A Dlibmodplug.c60 AVExpr *expr; ///< parsed color eval expression member
192 int r = av_expr_parse(&modplug->expr, modplug->color_eval, var_names, in modplug_read_header()
323 if (modplug->expr) { in modplug_read_packet()
330 color = av_expr_eval(modplug->expr, var_values, NULL); in modplug_read_packet()
/third_party/FreeBSD/sys/sys/
H A Dcdefs.h310 * Note that the comma operator is used to force expr to decay in
316 #define __generic(expr, t, yes, no) \
317 _Generic(expr, t: yes, default: no)
319 #define __generic(expr, t, yes, no) \
321 __builtin_types_compatible_p(__typeof((0, (expr))), t), yes, no)
/third_party/mesa3d/src/amd/addrlib/src/core/
H A Daddrcommon.h77 #define ADDR_ANALYSIS_ASSUME(expr) __analysis_assume(expr)
79 #define ADDR_ANALYSIS_ASSUME(expr) do { (void)(expr); } while (0)

Completed in 21 milliseconds

1...<<21222324252627282930>>...39