/linux-6.3-rc2/tools/debugging/ |
A D | kernel-chktaint | 62 T=`expr $T / 2` 70 T=`expr $T / 2` 78 T=`expr $T / 2` 86 T=`expr $T / 2` 94 T=`expr $T / 2` 102 T=`expr $T / 2` 110 T=`expr $T / 2` 118 T=`expr $T / 2` 126 T=`expr $T / 2` 134 T=`expr $T / 2` [all …]
|
/linux-6.3-rc2/scripts/kconfig/ |
A D | expr.h | 38 struct expr *expr; member 42 struct expr { struct 55 struct expr *expr; member 290 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 292 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 293 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 294 struct expr *expr_copy(const struct expr *org); 297 int expr_eq(struct expr *e1, struct expr *e2); 299 struct expr *expr_trans_bool(struct expr *e); 300 struct expr *expr_eliminate_dups(struct expr *e); [all …]
|
A D | expr.c | 16 static struct expr *expr_eliminate_yn(struct expr *e); 34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() 52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() 59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() 66 struct expr *expr_copy(const struct expr *org) in expr_copy() 80 e->left.expr = expr_copy(org->left.expr); in expr_copy() 94 e->left.expr = expr_copy(org->left.expr); in expr_copy() 95 e->right.expr = expr_copy(org->right.expr); in expr_copy() 431 static struct expr *expr_join_or(struct expr *e1, struct expr *e2) in expr_join_or() 495 static struct expr *expr_join_and(struct expr *e1, struct expr *e2) in expr_join_and() [all …]
|
A D | menu.c | 83 static struct expr *rewrite_m(struct expr *e) in rewrite_m() 90 e->left.expr = rewrite_m(e->left.expr); in rewrite_m() 94 e->left.expr = rewrite_m(e->left.expr); in rewrite_m() 95 e->right.expr = rewrite_m(e->right.expr); in rewrite_m() 140 prop->expr = expr; in menu_add_prop() 199 void menu_add_visibility(struct expr *expr) in menu_add_visibility() argument 202 expr); in menu_add_visibility() 205 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 393 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in menu_finalize() 397 es->implied.expr = expr_alloc_or(es->implied.expr, in menu_finalize() [all …]
|
A D | symbol.c | 249 struct expr *e; in sym_choice_default() 521 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value() 972 struct expr **expr; member 1047 } else if (stack->expr == &sym->dir_dep.expr) { in sym_check_print_recursive() 1052 } else if (stack->expr == &sym->rev_dep.expr) { in sym_check_print_recursive() 1057 } else if (stack->expr == &sym->implied.expr) { in sym_check_print_recursive() 1129 stack.expr = &sym->dir_dep.expr; in sym_check_sym_deps() 1134 stack.expr = &sym->rev_dep.expr; in sym_check_sym_deps() 1139 stack.expr = &sym->implied.expr; in sym_check_sym_deps() 1156 stack.expr = &prop->expr; in sym_check_sym_deps() [all …]
|
/linux-6.3-rc2/tools/testing/selftests/nolibc/ |
A D | nolibc-test.c | 137 int ret = !(expr == 0); in expect_zr() 150 int ret = !(expr != 0); in expect_nz() 202 int ret = !(expr > val); in expect_gt() 228 int ret = !(expr < val); in expect_lt() 243 if (expr) { in expect_syszr() 262 if (expr != val) { in expect_syseq() 281 if (expr == val) { in expect_sysne() 321 if (expr) { in expect_ptrzr() 339 if (!expr) { in expect_ptrnz() 357 if (expr) { in expect_strzr() [all …]
|
/linux-6.3-rc2/tools/perf/util/ |
A D | expr.y | 159 if_expr: expr IF expr ELSE if_expr 198 | expr 211 | expr '<' expr { BINARY_OP($$, <, $1, $3); } 212 | expr '>' expr { BINARY_OP($$, >, $1, $3); } 213 | expr '+' expr { BINARY_OP($$, +, $1, $3); } 214 | expr '-' expr { BINARY_OP($$, -, $1, $3); } 216 | expr '/' expr 231 | expr '%' expr 246 | D_RATIO '(' expr ',' expr ')' 276 | MIN '(' expr ',' expr ')' [all …]
|
/linux-6.3-rc2/net/netfilter/ |
A D | nft_objref.c | 14 #define nft_objref_priv(expr) *((struct nft_object **)nft_expr_priv(expr)) argument 16 void nft_objref_eval(const struct nft_expr *expr, in nft_objref_eval() argument 20 struct nft_object *obj = nft_objref_priv(expr); in nft_objref_eval() 26 const struct nft_expr *expr, in nft_objref_init() argument 44 nft_objref_priv(expr) = obj; in nft_objref_init() 67 const struct nft_expr *expr, in nft_objref_deactivate() argument 79 const struct nft_expr *expr) in nft_objref_activate() argument 127 const struct nft_expr *expr, in nft_objref_map_init() argument 175 const struct nft_expr *expr, in nft_objref_map_deactivate() argument 184 const struct nft_expr *expr) in nft_objref_map_activate() argument [all …]
|
A D | nf_tables_core.c | 221 e = (unsigned long)expr->ops->eval; in expr_call_ops_eval() 245 expr->ops->eval(expr, regs, pkt); in expr_call_ops_eval() 249 #define nft_rule_expr_next(expr) ((void *)expr) + expr->ops->size argument 255 (expr) != (last); \ 256 (expr) = nft_rule_expr_next(expr)) 264 const struct nft_expr *expr, *last; in nft_do_chain() local 287 if (expr->ops == &nft_cmp_fast_ops) in nft_do_chain() 288 nft_cmp_fast_eval(expr, ®s); in nft_do_chain() 290 nft_cmp16_fast_eval(expr, ®s); in nft_do_chain() 292 nft_bitwise_fast_eval(expr, ®s); in nft_do_chain() [all …]
|
A D | nft_immediate.c | 18 void nft_immediate_eval(const struct nft_expr *expr, in nft_immediate_eval() argument 22 const struct nft_immediate_expr *priv = nft_expr_priv(expr); in nft_immediate_eval() 47 const struct nft_expr *expr, in nft_immediate_init() argument 50 struct nft_immediate_expr *priv = nft_expr_priv(expr); in nft_immediate_init() 98 const struct nft_expr *expr) in nft_immediate_activate() argument 106 const struct nft_expr *expr, in nft_immediate_deactivate() argument 118 const struct nft_expr *expr) in nft_immediate_destroy() argument 151 const struct nft_expr *expr, bool reset) in nft_immediate_dump() argument 166 const struct nft_expr *expr, in nft_immediate_validate() argument 221 const struct nft_expr *expr) in nft_immediate_offload() argument [all …]
|
A D | nft_compat.c | 77 void *info = nft_expr_priv(expr); in nft_target_eval_xt() 104 void *info = nft_expr_priv(expr); in nft_target_eval_bridge() 239 void *info = nft_expr_priv(expr); in nft_target_init() 288 kfree(expr->ops); in __nft_mt_tg_destroy() 295 void *info = nft_expr_priv(expr); in nft_target_destroy() 306 __nft_mt_tg_destroy(me, expr); in nft_target_destroy() 411 __nft_match_eval(expr, regs, pkt, nft_expr_priv(expr)); in nft_match_eval() 505 return __nft_match_init(ctx, expr, tb, nft_expr_priv(expr)); in nft_match_init() 541 __nft_mt_tg_destroy(me, expr); in __nft_match_destroy() 547 __nft_match_destroy(ctx, expr, nft_expr_priv(expr)); in nft_match_destroy() [all …]
|
A D | nft_numgen.c | 40 struct nft_ng_inc *priv = nft_expr_priv(expr); in nft_ng_inc_eval() 53 const struct nft_expr *expr, in nft_ng_inc_init() argument 56 struct nft_ng_inc *priv = nft_expr_priv(expr); in nft_ng_inc_init() 88 const struct nft_expr *expr) in nft_ng_inc_reduce() argument 116 const struct nft_expr *expr, bool reset) in nft_ng_inc_dump() argument 125 const struct nft_expr *expr) in nft_ng_inc_destroy() argument 147 struct nft_ng_random *priv = nft_expr_priv(expr); in nft_ng_random_eval() 153 const struct nft_expr *expr, in nft_ng_random_init() argument 156 struct nft_ng_random *priv = nft_expr_priv(expr); in nft_ng_random_init() 173 const struct nft_expr *expr, bool reset) in nft_ng_random_dump() argument [all …]
|
A D | nft_dynset.c | 22 bool expr; member 33 struct nft_expr *expr; in nft_dynset_expr_setup() local 94 expr, regs, &ext)) { in nft_dynset_eval() 128 struct nft_expr *expr; in nft_dynset_expr_alloc() local 132 if (IS_ERR(expr)) in nft_dynset_expr_alloc() 133 return expr; in nft_dynset_expr_alloc() 140 return expr; in nft_dynset_expr_alloc() 143 nft_expr_destroy(ctx, expr); in nft_dynset_expr_alloc() 185 priv->expr = true; in nft_dynset_init() 258 if (!priv->expr) in nft_dynset_init() [all …]
|
A D | nft_hash.c | 30 struct nft_jhash *priv = nft_expr_priv(expr); in nft_jhash_eval() 50 struct nft_symhash *priv = nft_expr_priv(expr); in nft_symhash_eval() 70 const struct nft_expr *expr, in nft_jhash_init() argument 73 struct nft_jhash *priv = nft_expr_priv(expr); in nft_jhash_init() 117 const struct nft_expr *expr, in nft_symhash_init() argument 120 struct nft_symhash *priv = nft_expr_priv(expr); in nft_symhash_init() 142 const struct nft_expr *expr, bool reset) in nft_jhash_dump() argument 169 const struct nft_expr *expr) in nft_jhash_reduce() argument 179 const struct nft_expr *expr, bool reset) in nft_symhash_dump() argument 199 const struct nft_expr *expr) in nft_symhash_reduce() argument [all …]
|
A D | nft_fwd_netdev.c | 28 struct nft_fwd_netdev *priv = nft_expr_priv(expr); in nft_fwd_netdev_eval() 47 const struct nft_expr *expr, in nft_fwd_netdev_init() argument 50 struct nft_fwd_netdev *priv = nft_expr_priv(expr); in nft_fwd_netdev_init() 60 const struct nft_expr *expr, bool reset) in nft_fwd_netdev_dump() argument 62 struct nft_fwd_netdev *priv = nft_expr_priv(expr); in nft_fwd_netdev_dump() 75 const struct nft_expr *expr) in nft_fwd_netdev_offload() argument 98 struct nft_fwd_neigh *priv = nft_expr_priv(expr); in nft_fwd_neigh_eval() 156 const struct nft_expr *expr, in nft_fwd_neigh_init() argument 159 struct nft_fwd_neigh *priv = nft_expr_priv(expr); in nft_fwd_neigh_init() 191 const struct nft_expr *expr, bool reset) in nft_fwd_neigh_dump() argument [all …]
|
A D | nft_dup_netdev.c | 20 static void nft_dup_netdev_eval(const struct nft_expr *expr, in nft_dup_netdev_eval() argument 24 struct nft_dup_netdev *priv = nft_expr_priv(expr); in nft_dup_netdev_eval() 35 const struct nft_expr *expr, in nft_dup_netdev_init() argument 38 struct nft_dup_netdev *priv = nft_expr_priv(expr); in nft_dup_netdev_init() 48 const struct nft_expr *expr, bool reset) in nft_dup_netdev_dump() argument 50 struct nft_dup_netdev *priv = nft_expr_priv(expr); in nft_dup_netdev_dump() 63 const struct nft_expr *expr) in nft_dup_netdev_offload() argument 65 const struct nft_dup_netdev *priv = nft_expr_priv(expr); in nft_dup_netdev_offload() 71 static bool nft_dup_netdev_offload_action(const struct nft_expr *expr) in nft_dup_netdev_offload_action() argument
|
A D | nft_osf.c | 23 struct nft_osf *priv = nft_expr_priv(expr); in nft_osf_eval() 61 const struct nft_expr *expr, in nft_osf_init() argument 64 struct nft_osf *priv = nft_expr_priv(expr); in nft_osf_init() 96 const struct nft_expr *expr, bool reset) in nft_osf_dump() argument 98 const struct nft_osf *priv = nft_expr_priv(expr); in nft_osf_dump() 116 const struct nft_expr *expr, in nft_osf_validate() argument 137 const struct nft_expr *expr) in nft_osf_reduce() argument 139 struct nft_osf *priv = nft_expr_priv(expr); in nft_osf_reduce() 142 if (!nft_reg_track_cmp(track, expr, priv->dreg)) { in nft_osf_reduce() 143 nft_reg_track_update(track, expr, priv->dreg, NFT_OSF_MAXGENRELEN); in nft_osf_reduce() [all …]
|
A D | nft_queue.c | 28 static void nft_queue_eval(const struct nft_expr *expr, in nft_queue_eval() argument 32 struct nft_queue *priv = nft_expr_priv(expr); in nft_queue_eval() 59 struct nft_queue *priv = nft_expr_priv(expr); in nft_queue_sreg_eval() 72 const struct nft_expr *expr, in nft_queue_validate() argument 104 const struct nft_expr *expr, in nft_queue_init() argument 107 struct nft_queue *priv = nft_expr_priv(expr); in nft_queue_init() 133 const struct nft_expr *expr, in nft_queue_sreg_init() argument 136 struct nft_queue *priv = nft_expr_priv(expr); in nft_queue_sreg_init() 156 const struct nft_expr *expr, bool reset) in nft_queue_dump() argument 158 const struct nft_queue *priv = nft_expr_priv(expr); in nft_queue_dump() [all …]
|
A D | nft_masq.c | 29 const struct nft_expr *expr, in nft_masq_validate() argument 43 const struct nft_expr *expr, in nft_masq_init() argument 47 struct nft_masq *priv = nft_expr_priv(expr); in nft_masq_init() 77 const struct nft_expr *expr, bool reset) in nft_masq_dump() argument 79 const struct nft_masq *priv = nft_expr_priv(expr); in nft_masq_dump() 99 static void nft_masq_ipv4_eval(const struct nft_expr *expr, in nft_masq_ipv4_eval() argument 103 struct nft_masq *priv = nft_expr_priv(expr); in nft_masq_ipv4_eval() 146 static void nft_masq_ipv6_eval(const struct nft_expr *expr, in nft_masq_ipv6_eval() argument 150 struct nft_masq *priv = nft_expr_priv(expr); in nft_masq_ipv6_eval() 213 return nft_masq_ipv4_eval(expr, regs, pkt); in nft_masq_inet_eval() [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/i915/ |
A D | i915_gem.h | 104 #define GEM_WARN_ON(expr) WARN_ON(expr) argument 106 #define GEM_DEBUG_WARN_ON(expr) GEM_WARN_ON(expr) argument 112 #define GEM_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr) argument 113 #define GEM_WARN_ON(expr) ({ unlikely(!!(expr)); }) argument 115 #define GEM_DEBUG_WARN_ON(expr) ({ BUILD_BUG_ON_INVALID(expr); 0; }) argument 126 #define GEM_TRACE_DUMP_ON(expr) \ argument 127 do { if (expr) GEM_TRACE_DUMP(); } while (0) 132 #define GEM_TRACE_DUMP_ON(expr) BUILD_BUG_ON_INVALID(expr) argument
|
/linux-6.3-rc2/include/net/netfilter/ |
A D | nft_meta.h | 19 const struct nft_expr *expr, 23 const struct nft_expr *expr, 27 const struct nft_expr *expr, bool reset); 30 const struct nft_expr *expr, bool reset); 32 void nft_meta_get_eval(const struct nft_expr *expr, 36 void nft_meta_set_eval(const struct nft_expr *expr, 41 const struct nft_expr *expr); 44 const struct nft_expr *expr, 48 const struct nft_expr *expr); 51 void nft_meta_inner_eval(const struct nft_expr *expr,
|
A D | nf_tables_core.h | 131 void nft_meta_get_eval(const struct nft_expr *expr, 133 void nft_cmp_eval(const struct nft_expr *expr, 135 void nft_lookup_eval(const struct nft_expr *expr, 137 void nft_payload_eval(const struct nft_expr *expr, 139 void nft_immediate_eval(const struct nft_expr *expr, 141 void nft_bitwise_eval(const struct nft_expr *expr, 143 void nft_range_eval(const struct nft_expr *expr, 145 void nft_byteorder_eval(const struct nft_expr *expr, 147 void nft_dynset_eval(const struct nft_expr *expr, 149 void nft_rt_get_eval(const struct nft_expr *expr, [all …]
|
A D | nft_fib.h | 21 int nft_fib_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset); 22 int nft_fib_init(const struct nft_ctx *ctx, const struct nft_expr *expr, 24 int nft_fib_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, 28 void nft_fib4_eval_type(const struct nft_expr *expr, struct nft_regs *regs, 30 void nft_fib4_eval(const struct nft_expr *expr, struct nft_regs *regs, 33 void nft_fib6_eval_type(const struct nft_expr *expr, struct nft_regs *regs, 35 void nft_fib6_eval(const struct nft_expr *expr, struct nft_regs *regs, 42 const struct nft_expr *expr);
|
/linux-6.3-rc2/drivers/pinctrl/aspeed/ |
A D | pinctrl-aspeed.c | 81 expr->function); in aspeed_sig_expr_enable() 99 expr->function); in aspeed_sig_expr_disable() 170 while ((expr = *funcs)) { in get_defined_attribute() 205 return expr->function; in aspeed_sig_expr_function() 215 return expr->signal; in aspeed_sig_expr_signal() 254 if (expr) in aspeed_pinmux_set_mux() 264 if (!expr) { in aspeed_pinmux_set_mux() 282 expr->function); in aspeed_pinmux_set_mux() 360 !strcmp(expr->signal, expr->function); in aspeed_expr_is_gpio() 418 expr = *funcs; in aspeed_gpio_request_enable() [all …]
|
/linux-6.3-rc2/fs/xfs/ |
A D | xfs_linux.h | 202 #define ASSERT_ALWAYS(expr) \ argument 203 (likely(expr) ? (void)0 : assfail(NULL, #expr, __FILE__, __LINE__)) 206 #define ASSERT(expr) \ argument 207 (likely(expr) ? (void)0 : assfail(NULL, #expr, __FILE__, __LINE__)) 213 #define ASSERT(expr) \ argument 214 (likely(expr) ? (void)0 : asswarn(NULL, #expr, __FILE__, __LINE__)) 218 #define ASSERT(expr) ((void)0) argument 223 #define XFS_IS_CORRUPT(mp, expr) \ argument 224 (unlikely(expr) ? xfs_corruption_error(#expr, XFS_ERRLEVEL_LOW, (mp), \
|