Home
last modified time | relevance | path

Searched refs:expr (Results 1 - 25 of 360) sorted by relevance

12345678910>>...15

/kernel/linux/linux-5.10/tools/perf/util/
H A Dexpr.y9 #include "expr.h"
48 %type <num> expr if_expr
83 expr IF expr ELSE expr { $$ = $3 ? $1 : $5; }
84 | expr
87 expr: NUMBER label
99 | expr '|' expr { $$ = (long)$1 | (long)$3; }
100 | expr '
[all...]
/kernel/linux/linux-6.6/tools/debugging/
H A Dkernel-chktaint55 if [ `expr $T % 2` -eq 0 ]; then
62 T=`expr $T / 2`
63 if [ `expr $T % 2` -eq 0 ]; then
70 T=`expr $T / 2`
71 if [ `expr $T % 2` -eq 0 ]; then
78 T=`expr $T / 2`
79 if [ `expr $T % 2` -eq 0 ]; then
86 T=`expr $T / 2`
87 if [ `expr $T % 2` -eq 0 ]; then
94 T=`expr
[all...]
/kernel/linux/linux-5.10/tools/debugging/
H A Dkernel-chktaint55 if [ `expr $T % 2` -eq 0 ]; then
62 T=`expr $T / 2`
63 if [ `expr $T % 2` -eq 0 ]; then
70 T=`expr $T / 2`
71 if [ `expr $T % 2` -eq 0 ]; then
78 T=`expr $T / 2`
79 if [ `expr $T % 2` -eq 0 ]; then
86 T=`expr $T / 2`
87 if [ `expr $T % 2` -eq 0 ]; then
94 T=`expr
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dexpr.h38 struct expr *expr; member
42 struct expr { struct
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
55 struct expr *expr; member
197 struct expr *expr; /* the optional conditional part of the property */ member
247 struct expr *visibility;
253 struct expr *de
[all...]
H A Dexpr.c16 static struct expr *expr_eliminate_yn(struct expr *e);
18 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol()
20 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol()
26 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one()
28 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one()
30 e->left.expr = ce; in expr_alloc_one()
34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e
[all...]
H A Dmenu.c82 static struct expr *rewrite_m(struct expr *e) in rewrite_m()
89 e->left.expr = rewrite_m(e->left.expr); in rewrite_m()
93 e->left.expr = rewrite_m(e->left.expr); in rewrite_m()
94 e->right.expr = rewrite_m(e->right.expr); in rewrite_m()
107 void menu_add_dep(struct expr *dep) in menu_add_dep()
128 static struct property *menu_add_prop(enum prop_type type, struct expr *exp argument
198 menu_add_visibility(struct expr *expr) menu_add_visibility() argument
204 menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) menu_add_expr() argument
721 get_dep_str(struct gstr *r, struct expr *expr, const char *prefix) get_dep_str() argument
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dexpr.h38 struct expr *expr; member
42 struct expr { struct
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
55 struct expr *expr; member
194 struct expr *expr; /* the optional conditional part of the property */ member
244 struct expr *visibility;
250 struct expr *de
[all...]
H A Dexpr.c16 static struct expr *expr_eliminate_yn(struct expr *e);
18 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol()
20 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol()
26 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one()
28 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one()
30 e->left.expr = ce; in expr_alloc_one()
34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e
[all...]
H A Dmenu.c83 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()
108 void menu_add_dep(struct expr *dep) in menu_add_dep()
129 static struct property *menu_add_prop(enum prop_type type, struct expr *exp argument
199 menu_add_visibility(struct expr *expr) menu_add_visibility() argument
205 menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) menu_add_expr() argument
695 get_dep_str(struct gstr *r, struct expr *expr, const char *prefix) get_dep_str() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Di915_gem.h48 #define GEM_WARN_ON(expr) WARN_ON(expr)
51 #define GEM_DEBUG_EXEC(expr) expr
52 #define GEM_DEBUG_BUG_ON(expr) GEM_BUG_ON(expr)
53 #define GEM_DEBUG_WARN_ON(expr) GEM_WARN_ON(expr)
59 #define GEM_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr)
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dbpf-filter.c58 static int check_sample_flags(struct evsel *evsel, struct perf_bpf_filter_expr *expr) in check_sample_flags() argument
62 if (evsel->core.attr.sample_type & expr->sample_flags) in check_sample_flags()
65 if (expr->op == PBF_OP_GROUP_BEGIN) { in check_sample_flags()
68 list_for_each_entry(group, &expr->groups, list) { in check_sample_flags()
75 info = get_sample_info(expr->sample_flags); in check_sample_flags()
78 evsel__name(evsel), expr->sample_flags); in check_sample_flags()
94 struct perf_bpf_filter_expr *expr; in perf_bpf_filter__prepare() local
104 list_for_each_entry(expr, &evsel->bpf_filters, list) { in perf_bpf_filter__prepare()
106 .op = expr->op, in perf_bpf_filter__prepare()
107 .part = expr in perf_bpf_filter__prepare()
159 struct perf_bpf_filter_expr *expr, *tmp; perf_bpf_filter__destroy() local
180 struct perf_bpf_filter_expr *expr; perf_bpf_filter_expr__new() local
[all...]
H A Dexpr.y9 #include "expr.h"
10 #include "expr-bison.h"
54 %type <ids> expr if_expr
155 if_expr: expr IF expr ELSE if_expr
169 * ids are being computed and the IF expr is a non-zero
194 | expr
197 expr: NUMBER label
216 | expr '|' expr
[all...]
H A Dbpf-filter.y14 static void perf_bpf_filter_error(struct list_head *expr __maybe_unused,
30 struct perf_bpf_filter_expr *expr;
34 %type <expr> filter_term filter_expr
35 %destructor { free ($$); } <expr>
56 struct perf_bpf_filter_expr *expr;
59 expr = $1;
61 expr = perf_bpf_filter_expr__new(0, 0, PBF_OP_GROUP_BEGIN, 1);
62 list_add_tail(&$1->list, &expr->groups);
64 expr->val++;
65 list_add_tail(&$3->list, &expr
[all...]
/kernel/linux/linux-5.10/net/netfilter/
H A Dnft_objref.c14 #define nft_objref_priv(expr) *((struct nft_object **)nft_expr_priv(expr))
16 static 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()
29 struct nft_object *obj = nft_objref_priv(expr); in nft_objref_init()
47 nft_objref_priv(expr) = obj; in nft_objref_init()
52 static int nft_objref_dump(struct sk_buff *skb, const struct nft_expr *expr) in nft_objref_dump() argument
54 const struct nft_object *obj = nft_objref_priv(expr); in nft_objref_dump()
68 const struct nft_expr *expr, in nft_objref_deactivate()
25 nft_objref_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_objref_init() argument
67 nft_objref_deactivate(const struct nft_ctx *ctx, const struct nft_expr *expr, enum nft_trans_phase phase) nft_objref_deactivate() argument
79 nft_objref_activate(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_activate() argument
104 nft_objref_map_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_objref_map_eval() argument
124 nft_objref_map_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_objref_map_init() argument
157 nft_objref_map_dump(struct sk_buff *skb, const struct nft_expr *expr) nft_objref_map_dump() argument
171 nft_objref_map_deactivate(const struct nft_ctx *ctx, const struct nft_expr *expr, enum nft_trans_phase phase) nft_objref_map_deactivate() argument
180 nft_objref_map_activate(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_map_activate() argument
188 nft_objref_map_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_map_destroy() argument
[all...]
H A Dnft_dynset.c26 struct nft_expr *expr; member
30 static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr, in nft_dynset_new() argument
33 const struct nft_dynset *priv = nft_expr_priv(expr); in nft_dynset_new()
50 if (priv->expr != NULL && in nft_dynset_new()
51 nft_expr_clone(nft_set_ext_expr(ext), priv->expr) < 0) in nft_dynset_new()
64 void nft_dynset_eval(const struct nft_expr *expr, in nft_dynset_eval() argument
67 const struct nft_dynset *priv = nft_expr_priv(expr); in nft_dynset_eval()
78 expr, regs, &ext)) { in nft_dynset_eval()
109 const struct nft_expr *expr, in nft_dynset_init()
113 struct nft_dynset *priv = nft_expr_priv(expr); in nft_dynset_init()
108 nft_dynset_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_dynset_init() argument
229 nft_dynset_deactivate(const struct nft_ctx *ctx, const struct nft_expr *expr, enum nft_trans_phase phase) nft_dynset_deactivate() argument
238 nft_dynset_activate(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_dynset_activate() argument
246 nft_dynset_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_dynset_destroy() argument
257 nft_dynset_dump(struct sk_buff *skb, const struct nft_expr *expr) nft_dynset_dump() argument
[all...]
H A Dnf_tables_core.c50 static void nft_bitwise_fast_eval(const struct nft_expr *expr, in nft_bitwise_fast_eval() argument
53 const struct nft_bitwise_fast_expr *priv = nft_expr_priv(expr); in nft_bitwise_fast_eval()
60 static void nft_cmp_fast_eval(const struct nft_expr *expr, in nft_cmp_fast_eval() argument
63 const struct nft_cmp_fast_expr *priv = nft_expr_priv(expr); in nft_cmp_fast_eval()
70 static void nft_cmp16_fast_eval(const struct nft_expr *expr, in nft_cmp16_fast_eval() argument
73 const struct nft_cmp16_fast_expr *priv = nft_expr_priv(expr); in nft_cmp16_fast_eval()
114 static bool nft_payload_fast_eval(const struct nft_expr *expr, in nft_payload_fast_eval() argument
118 const struct nft_payload *priv = nft_expr_priv(expr); in nft_payload_fast_eval()
176 static void expr_call_ops_eval(const struct nft_expr *expr, in expr_call_ops_eval() argument
181 unsigned long e = (unsigned long)expr in expr_call_ops_eval()
208 const struct nft_expr *expr, *last; nft_do_chain() local
[all...]
H A Dnft_compat.c67 static void nft_target_eval_xt(const struct nft_expr *expr, in nft_target_eval_xt() argument
71 void *info = nft_expr_priv(expr); in nft_target_eval_xt()
72 struct xt_target *target = expr->ops->data; in nft_target_eval_xt()
93 static void nft_target_eval_bridge(const struct nft_expr *expr, in nft_target_eval_bridge() argument
97 void *info = nft_expr_priv(expr); in nft_target_eval_bridge()
98 struct xt_target *target = expr->ops->data; in nft_target_eval_bridge()
235 nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr, in nft_target_init() argument
238 void *info = nft_expr_priv(expr); in nft_target_init()
239 struct xt_target *target = expr->ops->data; in nft_target_init()
270 static void __nft_mt_tg_destroy(struct module *me, const struct nft_expr *expr) in __nft_mt_tg_destroy() argument
277 nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_target_destroy() argument
312 nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr) nft_target_dump() argument
329 nft_target_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nft_data **data) nft_target_validate() argument
359 __nft_match_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt, void *info) __nft_match_eval() argument
387 nft_match_large_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_match_large_eval() argument
396 nft_match_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_match_eval() argument
463 __nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[], void *info) __nft_match_init() argument
491 nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_match_init() argument
498 nft_match_large_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_match_large_init() argument
516 __nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr, void *info) __nft_match_destroy() argument
534 nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_match_destroy() argument
540 nft_match_large_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_match_large_destroy() argument
548 __nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr, void *info) __nft_match_dump() argument
565 nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr) nft_match_dump() argument
577 nft_match_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nft_data **data) nft_match_validate() argument
[all...]
/kernel/linux/linux-6.6/net/netfilter/
H A Dnft_objref.c14 #define nft_objref_priv(expr) *((struct nft_object **)nft_expr_priv(expr))
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()
29 struct nft_object *obj = nft_objref_priv(expr); in nft_objref_init()
47 nft_objref_priv(expr) = obj; in nft_objref_init()
53 const struct nft_expr *expr, bool reset) in nft_objref_dump()
55 const struct nft_object *obj = nft_objref_priv(expr); in nft_objref_dump()
69 const struct nft_expr *expr, in nft_objref_deactivate()
25 nft_objref_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_objref_init() argument
52 nft_objref_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_objref_dump() argument
68 nft_objref_deactivate(const struct nft_ctx *ctx, const struct nft_expr *expr, enum nft_trans_phase phase) nft_objref_deactivate() argument
80 nft_objref_activate(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_activate() argument
105 nft_objref_map_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_objref_map_eval() argument
128 nft_objref_map_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_objref_map_init() argument
161 nft_objref_map_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_objref_map_dump() argument
176 nft_objref_map_deactivate(const struct nft_ctx *ctx, const struct nft_expr *expr, enum nft_trans_phase phase) nft_objref_map_deactivate() argument
185 nft_objref_map_activate(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_map_activate() argument
193 nft_objref_map_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_objref_map_destroy() argument
[all...]
H A Dnft_compat.c73 static void nft_target_eval_xt(const struct nft_expr *expr, in nft_target_eval_xt() argument
77 void *info = nft_expr_priv(expr); in nft_target_eval_xt()
78 struct xt_target *target = expr->ops->data; in nft_target_eval_xt()
100 static void nft_target_eval_bridge(const struct nft_expr *expr, in nft_target_eval_bridge() argument
104 void *info = nft_expr_priv(expr); in nft_target_eval_bridge()
105 struct xt_target *target = expr->ops->data; in nft_target_eval_bridge()
243 nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr, in nft_target_init() argument
246 void *info = nft_expr_priv(expr); in nft_target_init()
247 struct xt_target *target = expr->ops->data; in nft_target_init()
292 static void __nft_mt_tg_destroy(struct module *me, const struct nft_expr *expr) in __nft_mt_tg_destroy() argument
299 nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_target_destroy() argument
334 nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_target_dump() argument
352 nft_target_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nft_data **data) nft_target_validate() argument
392 __nft_match_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt, void *info) __nft_match_eval() argument
421 nft_match_large_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_match_large_eval() argument
430 nft_match_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_match_eval() argument
497 __nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[], void *info) __nft_match_init() argument
525 nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_match_init() argument
532 nft_match_large_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_match_large_init() argument
550 __nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr, void *info) __nft_match_destroy() argument
568 nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_match_destroy() argument
574 nft_match_large_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_match_large_destroy() argument
582 __nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr, void *info) __nft_match_dump() argument
599 nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_match_dump() argument
613 nft_match_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nft_data **data) nft_match_validate() argument
776 nft_match_reduce(struct nft_regs_track *track, const struct nft_expr *expr) nft_match_reduce() argument
[all...]
H A Dnft_numgen.c36 static void nft_ng_inc_eval(const struct nft_expr *expr, in nft_ng_inc_eval() argument
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()
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()
90 const struct nft_ng_inc *priv = nft_expr_priv(expr); in nft_ng_inc_reduce()
116 const struct nft_expr *expr, bool reset) in nft_ng_inc_dump()
118 const struct nft_ng_inc *priv = nft_expr_priv(expr); in nft_ng_inc_dump()
125 const struct nft_expr *expr) in nft_ng_inc_destroy()
127 const struct nft_ng_inc *priv = nft_expr_priv(expr); in nft_ng_inc_destroy()
52 nft_ng_inc_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_ng_inc_init() argument
87 nft_ng_inc_reduce(struct nft_regs_track *track, const struct nft_expr *expr) nft_ng_inc_reduce() argument
115 nft_ng_inc_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_ng_inc_dump() argument
124 nft_ng_inc_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) nft_ng_inc_destroy() argument
143 nft_ng_random_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) nft_ng_random_eval() argument
152 nft_ng_random_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) nft_ng_random_init() argument
172 nft_ng_random_dump(struct sk_buff *skb, const struct nft_expr *expr, bool reset) nft_ng_random_dump() argument
181 nft_ng_random_reduce(struct nft_regs_track *track, const struct nft_expr *expr) nft_ng_random_reduce() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/nolibc/
H A Dnolibc-test.c160 * expression <expr>, print the status to stdout, and update the "ret"
165 #define EXPECT_ZR(cond, expr) \
166 do { if (!(cond)) result(llen, SKIPPED); else ret += expect_zr(expr, llen); } while (0)
169 int expect_zr(int expr, int llen) in expect_zr() argument
171 int ret = !(expr == 0); in expect_zr()
173 llen += printf(" = %d ", expr); in expect_zr()
179 #define EXPECT_NZ(cond, expr, val) \
180 do { if (!(cond)) result(llen, SKIPPED); else ret += expect_nz(expr, llen; } while (0)
183 int expect_nz(int expr, int llen) in expect_nz() argument
185 int ret = !(expr ! in expect_nz()
197 expect_eq(uint64_t expr, int llen, uint64_t val) expect_eq() argument
211 expect_ne(int expr, int llen, int val) expect_ne() argument
225 expect_ge(int expr, int llen, int val) expect_ge() argument
239 expect_gt(int expr, int llen, int val) expect_gt() argument
253 expect_le(int expr, int llen, int val) expect_le() argument
267 expect_lt(int expr, int llen, int val) expect_lt() argument
281 expect_syszr(int expr, int llen) expect_syszr() argument
301 expect_syseq(int expr, int llen, int val) expect_syseq() argument
321 expect_sysne(int expr, int llen, int val) expect_sysne() argument
344 expect_syserr2(int expr, int expret, int experr1, int experr2, int llen) expect_syserr2() argument
368 expect_ptrzr(const void *expr, int llen) expect_ptrzr() argument
387 expect_ptrnz(const void *expr, int llen) expect_ptrnz() argument
405 expect_ptreq(const void *expr, int llen, const void *cmp) expect_ptreq() argument
423 expect_ptrne(const void *expr, int llen, const void *cmp) expect_ptrne() argument
441 expect_ptrge(const void *expr, int llen, const void *cmp) expect_ptrge() argument
454 expect_ptrgt(const void *expr, int llen, const void *cmp) expect_ptrgt() argument
468 expect_ptrle(const void *expr, int llen, const void *cmp) expect_ptrle() argument
482 expect_ptrlt(const void *expr, int llen, const void *cmp) expect_ptrlt() argument
498 expect_ptrerr2(const void *expr, const void *expret, int experr1, int experr2, int llen) expect_ptrerr2() argument
521 expect_strzr(const char *expr, int llen) expect_strzr() argument
540 expect_strnz(const char *expr, int llen) expect_strnz() argument
559 expect_streq(const char *expr, int llen, const char *cmp) expect_streq() argument
578 expect_strne(const char *expr, int llen, const char *cmp) expect_strne() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_gem.h104 #define GEM_WARN_ON(expr) WARN_ON(expr)
106 #define GEM_DEBUG_WARN_ON(expr) GEM_WARN_ON(expr)
112 #define GEM_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr)
113 #define GEM_WARN_ON(expr) ({ unlikely(!!(expr)); })
115 #define GEM_DEBUG_WARN_ON(expr) ({ BUILD_BUG_ON_INVALID(expr);
[all...]
/kernel/linux/linux-6.6/include/net/netfilter/
H A Dnft_meta.h19 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,
[all...]
/kernel/linux/linux-5.10/drivers/pinctrl/aspeed/
H A Dpinctrl-aspeed.c75 const struct aspeed_sig_expr *expr) in aspeed_sig_expr_enable()
79 pr_debug("Enabling signal %s for %s\n", expr->signal, in aspeed_sig_expr_enable()
80 expr->function); in aspeed_sig_expr_enable()
82 ret = aspeed_sig_expr_eval(ctx, expr, true); in aspeed_sig_expr_enable()
87 return aspeed_sig_expr_set(ctx, expr, true); in aspeed_sig_expr_enable()
93 const struct aspeed_sig_expr *expr) in aspeed_sig_expr_disable()
97 pr_debug("Disabling signal %s for %s\n", expr->signal, in aspeed_sig_expr_disable()
98 expr->function); in aspeed_sig_expr_disable()
100 ret = aspeed_sig_expr_eval(ctx, expr, true); in aspeed_sig_expr_disable()
105 return aspeed_sig_expr_set(ctx, expr, fals in aspeed_sig_expr_disable()
74 aspeed_sig_expr_enable(struct aspeed_pinmux_data *ctx, const struct aspeed_sig_expr *expr) aspeed_sig_expr_enable() argument
92 aspeed_sig_expr_disable(struct aspeed_pinmux_data *ctx, const struct aspeed_sig_expr *expr) aspeed_sig_expr_disable() argument
163 const struct aspeed_sig_expr ***prios, **funcs, *expr; get_defined_attribute() local
201 aspeed_sig_expr_function(const struct aspeed_sig_expr *expr) aspeed_sig_expr_function() argument
211 aspeed_sig_expr_signal(const struct aspeed_sig_expr *expr) aspeed_sig_expr_signal() argument
234 const struct aspeed_sig_expr *expr = NULL; aspeed_pinmux_set_mux() local
286 aspeed_expr_is_gpio(const struct aspeed_sig_expr *expr) aspeed_expr_is_gpio() argument
382 const struct aspeed_sig_expr ***prios, **funcs, *expr; aspeed_gpio_request_enable() local
[all...]
/kernel/linux/linux-6.6/drivers/pinctrl/aspeed/
H A Dpinctrl-aspeed.c76 const struct aspeed_sig_expr *expr) in aspeed_sig_expr_enable()
80 pr_debug("Enabling signal %s for %s\n", expr->signal, in aspeed_sig_expr_enable()
81 expr->function); in aspeed_sig_expr_enable()
83 ret = aspeed_sig_expr_eval(ctx, expr, true); in aspeed_sig_expr_enable()
88 return aspeed_sig_expr_set(ctx, expr, true); in aspeed_sig_expr_enable()
94 const struct aspeed_sig_expr *expr) in aspeed_sig_expr_disable()
98 pr_debug("Disabling signal %s for %s\n", expr->signal, in aspeed_sig_expr_disable()
99 expr->function); in aspeed_sig_expr_disable()
101 ret = aspeed_sig_expr_eval(ctx, expr, true); in aspeed_sig_expr_disable()
106 return aspeed_sig_expr_set(ctx, expr, fals in aspeed_sig_expr_disable()
75 aspeed_sig_expr_enable(struct aspeed_pinmux_data *ctx, const struct aspeed_sig_expr *expr) aspeed_sig_expr_enable() argument
93 aspeed_sig_expr_disable(struct aspeed_pinmux_data *ctx, const struct aspeed_sig_expr *expr) aspeed_sig_expr_disable() argument
165 const struct aspeed_sig_expr ***prios, **funcs, *expr; get_defined_attribute() local
203 aspeed_sig_expr_function(const struct aspeed_sig_expr *expr) aspeed_sig_expr_function() argument
213 aspeed_sig_expr_signal(const struct aspeed_sig_expr *expr) aspeed_sig_expr_signal() argument
236 const struct aspeed_sig_expr *expr = NULL; aspeed_pinmux_set_mux() local
288 aspeed_expr_is_gpio(const struct aspeed_sig_expr *expr) aspeed_expr_is_gpio() argument
384 const struct aspeed_sig_expr ***prios, **funcs, *expr; aspeed_gpio_request_enable() local
[all...]

Completed in 13 milliseconds

12345678910>>...15