Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 25 of 54) sorted by relevance

123

/Linux-v5.4/scripts/kconfig/
Dexpr.c16 static int expr_eq(struct expr *e1, struct expr *e2);
35 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
40 e->right.expr = e2; in expr_alloc_two()
53 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
56 return e2; in expr_alloc_and()
57 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
60 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument
63 return e2; in expr_alloc_or()
64 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or()
141 #define e2 (*ep2) macro
[all …]
Dexpr.h297 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
299 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
300 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
/Linux-v5.4/arch/mips/bcm47xx/
Dboard.c234 const struct bcm47xx_board_type_list2 *e2; in bcm47xx_board_get_nvram() local
253 for (e2 = bcm47xx_board_list_hw_version_num; e2->value1; e2++) { in bcm47xx_board_get_nvram()
254 if (!strstarts(buf1, e2->value1) && in bcm47xx_board_get_nvram()
255 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
256 return &e2->board; in bcm47xx_board_get_nvram()
285 for (e2 = bcm47xx_board_list_boot_hw; e2->value1; e2++) { in bcm47xx_board_get_nvram()
286 if (!strcmp(buf1, e2->value1) && in bcm47xx_board_get_nvram()
287 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
288 return &e2->board; in bcm47xx_board_get_nvram()
313 for (e2 = bcm47xx_board_list_board_type_rev; e2->value1; e2++) { in bcm47xx_board_get_nvram()
[all …]
/Linux-v5.4/arch/mips/include/asm/txx9/
Dtx3927.h56 #define endian_def_s2(e1, e2) \ argument
57 volatile unsigned short e1, e2
58 #define endian_def_sb2(e1, e2, e3) \ argument
59 volatile unsigned short e1;volatile unsigned char e2, e3
60 #define endian_def_b2s(e1, e2, e3) \ argument
61 volatile unsigned char e1, e2;volatile unsigned short e3
62 #define endian_def_b4(e1, e2, e3, e4) \ argument
63 volatile unsigned char e1, e2, e3, e4
65 #define endian_def_s2(e1, e2) \ argument
66 volatile unsigned short e2, e1
[all …]
/Linux-v5.4/tools/testing/selftests/bpf/progs/
Dbtf_dump_test_case_syntax.c14 enum e2 { enum
20 typedef enum e2 e2_t;
139 enum e2 e;
145 enum e2 arr2[5];
210 enum e2 _2;
/Linux-v5.4/arch/h8300/lib/
Dudivsi3.S32 mov.w e2,e2
36 mov.w e2,e2
42 mov.w e2,e2
Dmulsi3.S27 add.w r3,e2 ; ( 2 states)
33 add.w r3,e2 ; ( 2 states)
/Linux-v5.4/drivers/mtd/ubi/
Dwl.c662 struct ubi_wl_entry *e1, *e2; local
709 e2 = get_peb_for_wl(ubi);
710 if (!e2)
716 if (e2->pnum < UBI_FM_MAX_START)
721 dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
732 e2 = get_peb_for_wl(ubi);
733 if (!e2)
736 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
738 e1->ec, e2->ec);
741 wl_tree_add(e2, &ubi->free);
[all …]
/Linux-v5.4/fs/nfs/flexfilelayout/
Dflexfilelayoutdev.c199 const struct nfs4_ff_layout_ds_err *e2) in ff_ds_error_match() argument
203 if (e1->opnum != e2->opnum) in ff_ds_error_match()
204 return e1->opnum < e2->opnum ? -1 : 1; in ff_ds_error_match()
205 if (e1->status != e2->status) in ff_ds_error_match()
206 return e1->status < e2->status ? -1 : 1; in ff_ds_error_match()
207 ret = memcmp(e1->stateid.data, e2->stateid.data, in ff_ds_error_match()
211 ret = memcmp(&e1->deviceid, &e2->deviceid, sizeof(e1->deviceid)); in ff_ds_error_match()
214 if (pnfs_end_offset(e1->offset, e1->length) < e2->offset) in ff_ds_error_match()
216 if (e1->offset > pnfs_end_offset(e2->offset, e2->length)) in ff_ds_error_match()
/Linux-v5.4/net/netfilter/ipset/
Dip_set_hash_ipmac.c52 const struct hash_ipmac4_elem *e2, in hash_ipmac4_data_equal() argument
55 return e1->ip == e2->ip && ether_addr_equal(e1->ether, e2->ether); in hash_ipmac4_data_equal()
159 const struct hash_ipmac6_elem *e2, in hash_ipmac6_data_equal() argument
162 return ipv6_addr_equal(&e1->ip.in6, &e2->ip.in6) && in hash_ipmac6_data_equal()
163 ether_addr_equal(e1->ether, e2->ether); in hash_ipmac6_data_equal()
Dip_set_hash_mac.c42 const struct hash_mac4_elem *e2, in hash_mac4_data_equal() argument
45 return ether_addr_equal(e1->ether, e2->ether); in hash_mac4_data_equal()
/Linux-v5.4/scripts/coccinelle/iterators/
Ddevice_node_continue.cocci20 expression e1,e2;
37 for_each_compatible_node(n,e1,e2) S
41 for_each_matching_node_and_match(n,e1,e2) S
/Linux-v5.4/scripts/coccinelle/tests/
Dodd_ptr_err.cocci29 expression x,e1,e2;
36 PTR_ERR@p(\(e1 ? e2 : x\|e1 ? x : e2\))
Ddoubletest.cocci31 expression r.E,e1,e2,fn;
39 <+... \(fn(...)\|e1 op e2\|e1++\|e1--\|++e1\|--e1\) ...+>
/Linux-v5.4/security/selinux/ss/
Debitmap.c30 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2) in ebitmap_cmp() argument
34 if (e1->highbit != e2->highbit) in ebitmap_cmp()
38 n2 = e2->node; in ebitmap_cmp()
201 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit) in ebitmap_contains() argument
206 if (e1->highbit < e2->highbit) in ebitmap_contains()
210 n2 = e2->node; in ebitmap_contains()
Debitmap.h125 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2);
127 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit);
/Linux-v5.4/drivers/gpu/drm/i915/
Di915_buddy.c316 static inline bool overlaps(u64 s1, u64 e1, u64 s2, u64 e2) in overlaps() argument
318 return s1 <= e2 && e1 >= s2; in overlaps()
321 static inline bool contains(u64 s1, u64 e1, u64 s2, u64 e2) in contains() argument
323 return s1 <= s2 && e1 >= e2; in contains()
/Linux-v5.4/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_sriov.h281 struct eth_classify_rules_ramrod_data e2; member
285 struct eth_classify_rules_ramrod_data e2; member
289 struct eth_classify_rules_ramrod_data e2; member
293 struct eth_filter_rules_ramrod_data e2; member
297 struct eth_multicast_rules_ramrod_data e2; member
306 struct eth_rss_update_ramrod_data e2; member
/Linux-v5.4/drivers/gpu/drm/msm/disp/
Dmdp_format.c63 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs, yuv) { \ argument
69 .unpack = { e0, e1, e2, e3 }, \
/Linux-v5.4/drivers/gpu/drm/msm/disp/dpu1/
Ddpu_formats.c33 #define INTERLEAVED_RGB_FMT(fmt, a, r, g, b, e0, e1, e2, e3, uc, alpha, \ argument
39 .element = { (e0), (e1), (e2), (e3) }, \
52 #define INTERLEAVED_RGB_FMT_TILED(fmt, a, r, g, b, e0, e1, e2, e3, uc, \ argument
58 .element = { (e0), (e1), (e2), (e3) }, \
72 #define INTERLEAVED_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, e3, \ argument
78 .element = { (e0), (e1), (e2), (e3)}, \
166 #define PLANAR_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, alpha, chroma, bp, \ argument
172 .element = { (e0), (e1), (e2), 0 }, \
/Linux-v5.4/drivers/input/
Dff-core.c41 struct ff_effect *e2) in check_effects_compatible() argument
43 return e1->type == e2->type && in check_effects_compatible()
45 e1->u.periodic.waveform == e2->u.periodic.waveform); in check_effects_compatible()
/Linux-v5.4/arch/ia64/kernel/
Dmodule.c851 struct unw_table_entry tmp, *e1, *e2, *core, *init; in register_unwind_table() local
866 for (e2 = e1 + 1; e2 < end; ++e2) { in register_unwind_table()
867 if (e2->start_offset < e1->start_offset) { in register_unwind_table()
869 *e1 = *e2; in register_unwind_table()
870 *e2 = tmp; in register_unwind_table()
/Linux-v5.4/arch/powerpc/crypto/
Daes-tab-4k.S55 .long R(e2, 71, 71, 93), R(ab, d8, d8, 73)
62 .long R(1b, 80, 80, 9b), R(df, e2, e2, 3d)
111 .long R(a7, de, de, 79), R(bc, 5e, 5e, e2)
190 .long R(ab, 73, d3, 23), R(72, 4b, 02, e2)
197 .long R(f3, 07, f2, f0), R(4e, 69, e2, a1)
224 .long R(e2, 93, ba, 0a), R(c0, a0, 2a, e5)
286 .long R(16, 1d, c3, 72), R(bc, e2, 25, 0c)
/Linux-v5.4/tools/perf/util/
Devsel.h257 struct evsel *e2) in perf_evsel__match2() argument
259 return (e1->core.attr.type == e2->core.attr.type) && in perf_evsel__match2()
260 (e1->core.attr.config == e2->core.attr.config); in perf_evsel__match2()
/Linux-v5.4/arch/arc/kernel/
Dunwind.c238 const struct eh_frame_hdr_table_entry *e2 = p2; in cmp_eh_frame_hdr_table_entries() local
240 return (e1->start > e2->start) - (e1->start < e2->start); in cmp_eh_frame_hdr_table_entries()
246 struct eh_frame_hdr_table_entry *e2 = p2; in swap_eh_frame_hdr_table_entries() local
250 e1->start = e2->start; in swap_eh_frame_hdr_table_entries()
251 e2->start = v; in swap_eh_frame_hdr_table_entries()
253 e1->fde = e2->fde; in swap_eh_frame_hdr_table_entries()
254 e2->fde = v; in swap_eh_frame_hdr_table_entries()

123