Home
last modified time | relevance | path

Searched refs:expr (Results 851 - 875 of 1354) sorted by relevance

1...<<31323334353637383940>>...55

/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp1008 # define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast<T>(expr))
1013 # define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \
1016 ((T) (expr)); \
1020 # define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr))
1027 #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast<T>(expr))
1029 #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr))
[all...]
/third_party/json/single_include/nlohmann/
H A Djson.hpp1145 # define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast<T>(expr))
1150 # define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \
1153 ((T) (expr)); \
1157 # define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr))
1164 #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast<T>(expr))
1166 #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr))
[all...]
/third_party/rust/crates/syn/src/gen/
H A Dhash.rs601 self.expr.hash(state); in hash()
624 self.expr.hash(state); in hash()
690 self.expr.hash(state); in hash()
702 self.expr.hash(state); in hash()
726 self.expr.hash(state); in hash()
749 self.expr.hash(state); in hash()
794 self.expr.hash(state); in hash()
820 self.expr.hash(state); in hash()
857 self.expr.hash(state); in hash()
868 self.expr in hash()
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dqconf.cc95 tristate expr; in updateMenu() local
144 expr = sym_get_tristate_value(sym); in updateMenu()
145 switch (expr) { in updateMenu()
1047 if (_menu->prompt->visible.expr) { in menuInfo()
1049 expr_print(_menu->prompt->visible.expr, in menuInfo()
1072 if (sym->rev_dep.expr) { in debug_info()
1074 expr_print(sym->rev_dep.expr, expr_print_help, &stream, E_NONE); in debug_info()
1093 expr_print(prop->expr, expr_print_help, in debug_info()
1100 expr_print(prop->expr, expr_print_help, in debug_info()
1110 if (prop->visible.expr) { in debug_info()
[all...]
H A Dlkc_proto.h50 /* expr.c */
51 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dqconf.cc97 tristate expr; in updateMenu() local
147 expr = sym_get_tristate_value(sym); in updateMenu()
148 switch (expr) { in updateMenu()
1054 if (_menu->prompt->visible.expr) { in menuInfo()
1056 expr_print(_menu->prompt->visible.expr, in menuInfo()
1079 if (sym->rev_dep.expr) { in debug_info()
1081 expr_print(sym->rev_dep.expr, expr_print_help, &stream, E_NONE); in debug_info()
1100 expr_print(prop->expr, expr_print_help, in debug_info()
1107 expr_print(prop->expr, expr_print_help, in debug_info()
1117 if (prop->visible.expr) { in debug_info()
[all...]
H A Dlkc_proto.h51 /* expr.c */
52 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);
/third_party/mesa3d/src/compiler/glsl/
H A Dglsl_parser_extras.cpp922 * Recurses through <type> and <expr> if <expr> is an aggregate initializer
923 * and sets <expr>'s <constructor_type> field to <type>. Gives later functions
969 ast_expression *expr)
971 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)expr;
984 ast_expression *expr = exec_node_data(ast_expression, expr_node,
987 if (expr->oper == ast_aggregate)
988 _mesa_ast_set_aggregate_type(type->fields.array, expr);
998 ast_expression *expr = exec_node_data(ast_expression, expr_node,
1001 if (expr
[all...]
H A Dast.h381 ast_layout_expression(const struct YYLTYPE &locp, ast_expression *expr) in ast_layout_expression() argument
384 layout_const_expressions.push_tail(&expr->link); in ast_layout_expression()
1374 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
1386 ast_expression *expr);
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/netdevsim/
H A Ddevlink_in_netns.sh29 for i in $(seq 0 $(expr $PORT_COUNT - 1)); do
/kernel/linux/linux-5.10/security/selinux/ss/
H A Dconditional.h59 struct cond_expr expr; member
/kernel/linux/linux-6.6/security/selinux/ss/
H A Dconditional.h59 struct cond_expr expr; member
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/netdevsim/
H A Ddevlink_in_netns.sh29 for i in $(seq 0 $(expr $PORT_COUNT - 1)); do
/third_party/fsverity-utils/programs/
H A Dutils.h29 __cold __noreturn void assertion_failed(const char *expr,
/third_party/vk-gl-cts/execserver/
H A DxsDefs.hpp68 Error (const char* message, const char* expr, const char* file, int line);
/third_party/skia/third_party/externals/tint/src/ast/
H A Dunary_op_expression_test.cc31 EXPECT_EQ(u->expr, ident); in TEST_F()
/third_party/rust/crates/regex/examples/
H A Dshootout-regex-dna.rs13 ($re:expr) => {
/third_party/rust/crates/regex/tests/
H A Dnoparse.rs2 ($name:ident, $re:expr) => (
/third_party/rust/crates/cxx/macro/src/
H A Dexpand.rs642 let mut expr; in expand_cxx_function_shim() variables
644 expr = call; in expand_cxx_function_shim()
646 expr = match &efn.ret { in expand_cxx_function_shim()
717 expr = quote_spanned!(span=> ::cxx::core::result::Result::Ok(#expr)); in expand_cxx_function_shim()
720 let mut dispatch = quote!(#setup #expr); in expand_cxx_function_shim()
1087 let mut expr = match conversion { in expand_rust_function_shim_impl() variables
1111 expr = quote_spanned!(span=> ::cxx::private::r#try(#out, #expr)); in expand_rust_function_shim_impl()
1114 expr in expand_rust_function_shim_impl()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns/
H A Dhnae.h44 #define assert(expr) \
46 if (!(expr)) { \
48 #expr, __FILE__, __func__, __LINE__); \
56 #define assert(expr)
/kernel/linux/linux-6.6/drivers/net/ethernet/hisilicon/hns/
H A Dhnae.h44 #define assert(expr) \
46 if (!(expr)) { \
48 #expr, __FILE__, __func__, __LINE__); \
56 #define assert(expr)
/kernel/liteos_m/kal/posix/src/
H A Dmqueue.c524 #define OS_MQ_GOTO_ERROUT_UNLOCK_IF(expr, errcode) \
525 if (expr) { \
529 #define OS_MQ_GOTO_ERROUT_IF(expr, errcode) \
530 if (expr) { \
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-array-builder.h530 void SetExpressionPosition(Expression* expr) { in SetExpressionPosition() argument
531 SetExpressionPosition(expr->position()); in SetExpressionPosition()
543 void SetExpressionAsStatementPosition(Expression* expr) { in SetExpressionAsStatementPosition() argument
544 SetStatementPosition(expr->position()); in SetExpressionAsStatementPosition()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dfunction.h978 /// @param expr a typed expression
980 TypedExpression InferFunctionStorageClass(TypedExpression expr);
1225 /// @param expr the expression to take the address of
1226 /// @returns a TypedExpression that is the address-of `expr` (`&expr`)
1227 /// @note `expr` must be a reference type
1228 TypedExpression AddressOf(TypedExpression expr);
1230 /// Returns AddressOf(expr) if expr is has reference type and
1231 /// the instruction has a pointer result type. Otherwise returns expr
[all...]
/third_party/rust/crates/memchr/src/memmem/
H A Dmod.rs89 ($fwd:expr, $rev:expr) => {
133 ($fwd:expr, $rev:expr) => {

Completed in 28 milliseconds

1...<<31323334353637383940>>...55