Home
last modified time | relevance | path

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

123

/linux/scripts/kconfig/
A Dexpr.c80 return e2; in expr_alloc_and()
81 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
87 return e2; in expr_alloc_or()
88 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or()
216 if (!e1 || !e2) in expr_eq()
228 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq()
318 if (expr_eq(e1, e2)) in expr_join_or()
322 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_or()
336 sym2 = e2->left.sym; in expr_join_or()
383 if (expr_eq(e1, e2)) in expr_join_and()
[all …]
A Dexpr.h288 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
290 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
291 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
293 bool expr_eq(struct expr *e1, struct expr *e2);
/linux/arch/mips/bcm47xx/
A Dboard.c261 for (e2 = bcm47xx_board_list_hw_version_num; e2->value1; e2++) { in bcm47xx_board_get_nvram()
263 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
264 return &e2->board; in bcm47xx_board_get_nvram()
293 for (e2 = bcm47xx_board_list_boot_hw; e2->value1; e2++) { in bcm47xx_board_get_nvram()
295 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
296 return &e2->board; in bcm47xx_board_get_nvram()
321 for (e2 = bcm47xx_board_list_board_type_rev; e2->value1; e2++) { in bcm47xx_board_get_nvram()
323 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
324 return &e2->board; in bcm47xx_board_get_nvram()
328 for (e2 = bcm47xx_board_list_key_value; e2->value1; e2++) { in bcm47xx_board_get_nvram()
[all …]
/linux/tools/testing/selftests/kvm/x86_64/
A Dcpuid_test.c75 const struct kvm_cpuid_entry2 *e1, *e2; in compare_cpuids() local
83 e2 = &cpuid2->entries[i]; in compare_cpuids()
85 TEST_ASSERT(e1->function == e2->function && in compare_cpuids()
86 e1->index == e2->index && e1->flags == e2->flags, in compare_cpuids()
89 e2->function, e2->index, e2->flags); in compare_cpuids()
94 TEST_ASSERT(e1->eax == e2->eax && e1->ebx == e2->ebx && in compare_cpuids()
95 e1->ecx == e2->ecx && e1->edx == e2->edx, in compare_cpuids()
99 e2->eax, e2->ebx, e2->ecx, e2->edx); in compare_cpuids()
/linux/tools/perf/tests/
A Dpmu-events.c302 if (!is_same(e1->name, e2->name)) { in compare_pmu_events()
304 e1->name, e1->name, e2->name); in compare_pmu_events()
316 e1->name, e1->event, e2->event); in compare_pmu_events()
320 if (!is_same(e1->desc, e2->desc)) { in compare_pmu_events()
322 e1->name, e1->desc, e2->desc); in compare_pmu_events()
328 e1->name, e1->topic, e2->topic); in compare_pmu_events()
338 if (!is_same(e1->pmu, e2->pmu)) { in compare_pmu_events()
340 e1->name, e1->pmu, e2->pmu); in compare_pmu_events()
344 if (!is_same(e1->unit, e2->unit)) { in compare_pmu_events()
346 e1->name, e1->unit, e2->unit); in compare_pmu_events()
[all …]
/linux/arch/x86/kvm/
A Dcpuid.c184 e2[i].eax != orig->eax || e2[i].ebx != orig->ebx || in kvm_cpuid_check_equal()
185 e2[i].ecx != orig->ecx || e2[i].edx != orig->edx) in kvm_cpuid_check_equal()
459 kvfree(e2); in kvm_set_cpuid()
505 e2 = kvmalloc_array(cpuid->nent, sizeof(*e2), GFP_KERNEL_ACCOUNT); in kvm_vcpu_ioctl_set_cpuid()
506 if (!e2) { in kvm_vcpu_ioctl_set_cpuid()
517 e2[i].index = 0; in kvm_vcpu_ioctl_set_cpuid()
518 e2[i].flags = 0; in kvm_vcpu_ioctl_set_cpuid()
526 kvfree(e2); in kvm_vcpu_ioctl_set_cpuid()
545 e2 = vmemdup_array_user(entries, cpuid->nent, sizeof(*e2)); in kvm_vcpu_ioctl_set_cpuid2()
546 if (IS_ERR(e2)) in kvm_vcpu_ioctl_set_cpuid2()
[all …]
/linux/drivers/mtd/ubi/
A Dwl.c724 e2 = get_peb_for_wl(ubi);
725 if (!e2)
743 if (!e2)
748 e1->ec, e2->ec);
758 e1->pnum, e1->ec, e2->pnum, e2->ec);
764 if (!e2)
773 ubi->move_to = e2;
897 e2 = NULL;
905 if (e2) {
913 if (e2) {
[all …]
/linux/tools/testing/selftests/bpf/progs/
A Dbtf_dump_test_case_syntax.c14 enum e2 { enum
20 typedef enum e2 e2_t;
172 enum e2 e;
178 enum e2 arr2[5];
257 enum e2 _2;
/linux/drivers/gpu/drm/i915/display/
A Dintel_wm_types.h68 const struct skl_ddb_entry *e2) in skl_ddb_entry_equal() argument
70 if (e1->start == e2->start && e1->end == e2->end) in skl_ddb_entry_equal()
/linux/drivers/gpu/drm/xe/
A Dxe_reg_sr.c70 const struct xe_reg_sr_entry *e2) in compatible_entries() argument
76 if (e1->clr_bits & e2->clr_bits || e1->set_bits & e2->set_bits || in compatible_entries()
77 e1->clr_bits & e2->set_bits || e1->set_bits & e2->clr_bits) in compatible_entries()
80 if (e1->reg.raw != e2->reg.raw) in compatible_entries()
/linux/fs/nfs/flexfilelayout/
A Dflexfilelayoutdev.c201 const struct nfs4_ff_layout_ds_err *e2) in ff_ds_error_match() argument
205 if (e1->opnum != e2->opnum) in ff_ds_error_match()
206 return e1->opnum < e2->opnum ? -1 : 1; in ff_ds_error_match()
207 if (e1->status != e2->status) in ff_ds_error_match()
208 return e1->status < e2->status ? -1 : 1; in ff_ds_error_match()
209 ret = memcmp(e1->stateid.data, e2->stateid.data, in ff_ds_error_match()
213 ret = memcmp(&e1->deviceid, &e2->deviceid, sizeof(e1->deviceid)); in ff_ds_error_match()
216 if (pnfs_end_offset(e1->offset, e1->length) < e2->offset) in ff_ds_error_match()
218 if (e1->offset > pnfs_end_offset(e2->offset, e2->length)) in ff_ds_error_match()
/linux/net/netfilter/ipset/
A 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()
A 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/security/selinux/ss/
A Debitmap.c28 int ebitmap_cmp(const struct ebitmap *e1, const struct ebitmap *e2) in ebitmap_cmp() argument
32 if (e1->highbit != e2->highbit) in ebitmap_cmp()
36 n2 = e2->node; in ebitmap_cmp()
79 const struct ebitmap *e2) in ebitmap_and() argument
89 if (ebitmap_get_bit(e2, bit)) { in ebitmap_and()
218 int ebitmap_contains(const struct ebitmap *e1, const struct ebitmap *e2, in ebitmap_contains() argument
224 if (e1->highbit < e2->highbit) in ebitmap_contains()
228 n2 = e2->node; in ebitmap_contains()
A Debitmap.h123 int ebitmap_cmp(const struct ebitmap *e1, const struct ebitmap *e2);
126 const struct ebitmap *e2);
127 int ebitmap_contains(const struct ebitmap *e1, const struct ebitmap *e2,
/linux/scripts/coccinelle/iterators/
A 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/scripts/coccinelle/tests/
A Dodd_ptr_err.cocci29 expression x,e1,e2;
36 PTR_ERR@p(\(e1 ? e2 : x\|e1 ? x : e2\))
A Ddoubletest.cocci31 expression r.E,e1,e2,fn;
39 <+... \(fn(...)\|e1 op e2\|e1++\|e1--\|++e1\|--e1\) ...+>
/linux/drivers/gpu/drm/msm/disp/
A Dmdp_format.c69 #define INTERLEAVED_RGB_FMT(fmt, a, r, g, b, e0, e1, e2, e3, uc, alpha, \ argument
75 .element = { (e0), (e1), (e2), (e3) }, \
89 #define INTERLEAVED_RGB_FMT_TILED(fmt, a, r, g, b, e0, e1, e2, e3, uc, \ argument
95 .element = { (e0), (e1), (e2), (e3) }, \
109 #define INTERLEAVED_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, e3, \ argument
115 .element = { (e0), (e1), (e2), (e3)}, \
207 #define PLANAR_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, alpha, chroma, bp, \ argument
213 .element = { (e0), (e1), (e2), 0 }, \
/linux/drivers/net/ethernet/broadcom/bnx2x/
A Dbnx2x_sriov.h282 struct eth_classify_rules_ramrod_data e2; member
286 struct eth_classify_rules_ramrod_data e2; member
290 struct eth_classify_rules_ramrod_data e2; member
294 struct eth_filter_rules_ramrod_data e2; member
298 struct eth_multicast_rules_ramrod_data e2; member
307 struct eth_rss_update_ramrod_data e2; member
/linux/arch/arm/crypto/
A Dghash-ce-core.S375 e2 .req q11
464 vmov e2, ctr
470 aes_encrypt ip, r6, e0, e1, e2, e3
508 veor \in2, \in2, e2
520 veor e2, e2, \in2
524 vst1.8 {e2-e3}, [r4]!
586 vld1.8 {e2}, [ip] // permute vector for ghash input
642 vld1.8 {e2}, [ip] // permute vector for ghash input
/linux/drivers/input/
A Dff-core.c40 struct ff_effect *e2) in check_effects_compatible() argument
42 return e1->type == e2->type && in check_effects_compatible()
44 e1->u.periodic.waveform == e2->u.periodic.waveform); in check_effects_compatible()
/linux/arch/powerpc/crypto/
A 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/tools/perf/pmu-events/
A Dmetric_test.py160 Expression.__eq__ = lambda e1, e2: e1.Equals(e2)
/linux/scripts/coccinelle/api/
A Dcheck_bq27xxx_data.cocci25 expression e1,e2;
32 [e2] = BQ27XXX_DATA(i2,...),

Completed in 44 milliseconds

123