Home
last modified time | relevance | path

Searched refs:e2 (Results 1 - 25 of 96) sorted by relevance

1234

/kernel/linux/linux-5.10/arch/mips/bcm47xx/
H A 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()
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dexpr.c34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
39 e->right.expr = e2; in expr_alloc_two()
52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
55 return e2; in expr_alloc_and()
56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument
62 return e2; in expr_alloc_or()
63 return e2 ? expr_alloc_two(E_OR, e1, e2) in expr_alloc_or()
140 #define e2 global() macro
244 #undef e2 global() macro
252 expr_eq(struct expr *e1, struct expr *e2) expr_eq() argument
431 expr_join_or(struct expr *e1, struct expr *e2) expr_join_or() argument
495 expr_join_and(struct expr *e1, struct expr *e2) expr_join_and() argument
599 #define e2 expr_eliminate_dups1() macro
650 #undef e2 expr_eliminate_dups1() macro
924 struct expr *e1, *e2; expr_trans_compare() local
[all...]
H A Dexpr.h296 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
298 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
299 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
303 int expr_eq(struct expr *e1, struct expr *e2);
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dexpr.c34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
39 e->right.expr = e2; in expr_alloc_two()
52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
55 return e2; in expr_alloc_and()
56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument
62 return e2; in expr_alloc_or()
63 return e2 ? expr_alloc_two(E_OR, e1, e2) in expr_alloc_or()
140 #define e2 global() macro
244 #undef e2 global() macro
252 expr_eq(struct expr *e1, struct expr *e2) expr_eq() argument
431 expr_join_or(struct expr *e1, struct expr *e2) expr_join_or() argument
495 expr_join_and(struct expr *e1, struct expr *e2) expr_join_and() argument
599 #define e2 expr_eliminate_dups1() macro
650 #undef e2 expr_eliminate_dups1() macro
924 struct expr *e1, *e2; expr_trans_compare() local
[all...]
H A Dexpr.h289 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
291 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
292 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
296 int expr_eq(struct expr *e1, struct expr *e2);
/kernel/linux/linux-6.6/arch/mips/bcm47xx/
H A Dboard.c242 const struct bcm47xx_board_type_list2 *e2; in bcm47xx_board_get_nvram() local
261 for (e2 = bcm47xx_board_list_hw_version_num; e2->value1; e2++) { in bcm47xx_board_get_nvram()
262 if (!strstarts(buf1, e2->value1) && 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()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/x86_64/
H 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 in compare_cpuids()
[all...]
/kernel/linux/linux-5.10/arch/mips/include/asm/txx9/
H A Dtx3927.h56 #define endian_def_s2(e1, e2) \
57 volatile unsigned short e1, e2
58 #define endian_def_sb2(e1, e2, e3) \
59 volatile unsigned short e1;volatile unsigned char e2, e3
60 #define endian_def_b2s(e1, e2, e3) \
61 volatile unsigned char e1, e2;volatile unsigned short e3
62 #define endian_def_b4(e1, e2, e3, e4) \
63 volatile unsigned char e1, e2, e3, e4
65 #define endian_def_s2(e1, e2) \
66 volatile unsigned short e2, e
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/
H A Dcpuid.c170 static int kvm_cpuid_check_equal(struct kvm_vcpu *vcpu, struct kvm_cpuid_entry2 *e2, in kvm_cpuid_check_equal() argument
181 if (e2[i].function != orig->function || in kvm_cpuid_check_equal()
182 e2[i].index != orig->index || in kvm_cpuid_check_equal()
183 e2[i].flags != orig->flags || in kvm_cpuid_check_equal()
184 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()
409 static int kvm_set_cpuid(struct kvm_vcpu *vcpu, struct kvm_cpuid_entry2 *e2, in kvm_set_cpuid() argument
414 __kvm_update_cpuid_runtime(vcpu, e2, nen in kvm_set_cpuid()
464 struct kvm_cpuid_entry2 *e2 = NULL; kvm_vcpu_ioctl_set_cpuid() local
507 struct kvm_cpuid_entry2 *e2 = NULL; kvm_vcpu_ioctl_set_cpuid2() local
[all...]
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dpmu-events.c285 static int compare_pmu_events(const struct pmu_event *e1, const struct pmu_event *e2) in compare_pmu_events() argument
287 if (!is_same(e1->name, e2->name)) { in compare_pmu_events()
289 e1->name, e1->name, e2->name); in compare_pmu_events()
293 if (!is_same(e1->compat, e2->compat)) { in compare_pmu_events()
295 e1->name, e1->compat, e2->compat); in compare_pmu_events()
299 if (!is_same(e1->event, e2->event)) { in compare_pmu_events()
301 e1->name, e1->event, e2->event); in compare_pmu_events()
305 if (!is_same(e1->desc, e2->desc)) { in compare_pmu_events()
307 e1->name, e1->desc, e2->desc); in compare_pmu_events()
311 if (!is_same(e1->topic, e2 in compare_pmu_events()
[all...]
/kernel/linux/linux-5.10/arch/h8300/lib/
H A Dudivsi3.S32 mov.w e2,e2
36 mov.w e2,e2
42 mov.w e2,e2
H A Dmulsi3.S27 add.w r3,e2 ; ( 2 states)
33 add.w r3,e2 ; ( 2 states)
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H A 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;
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H 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;
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_wm_types.h68 const struct skl_ddb_entry *e2) in skl_ddb_entry_equal()
70 if (e1->start == e2->start && e1->end == e2->end) in skl_ddb_entry_equal()
67 skl_ddb_entry_equal(const struct skl_ddb_entry *e1, const struct skl_ddb_entry *e2) skl_ddb_entry_equal() argument
/kernel/linux/linux-5.10/arch/x86/kvm/
H A Dcpuid.c232 struct kvm_cpuid_entry2 *e2 = NULL; in kvm_vcpu_ioctl_set_cpuid() local
242 e2 = kvmalloc_array(cpuid->nent, sizeof(*e2), GFP_KERNEL_ACCOUNT); in kvm_vcpu_ioctl_set_cpuid()
243 if (!e2) { in kvm_vcpu_ioctl_set_cpuid()
249 e2[i].function = e[i].function; in kvm_vcpu_ioctl_set_cpuid()
250 e2[i].eax = e[i].eax; in kvm_vcpu_ioctl_set_cpuid()
251 e2[i].ebx = e[i].ebx; in kvm_vcpu_ioctl_set_cpuid()
252 e2[i].ecx = e[i].ecx; in kvm_vcpu_ioctl_set_cpuid()
253 e2[i].edx = e[i].edx; in kvm_vcpu_ioctl_set_cpuid()
254 e2[ in kvm_vcpu_ioctl_set_cpuid()
285 struct kvm_cpuid_entry2 *e2 = NULL; kvm_vcpu_ioctl_set_cpuid2() local
[all...]
/kernel/linux/linux-5.10/drivers/mtd/ubi/
H A Dwl.c652 struct ubi_wl_entry *e1, *e2; local
708 e2 = get_peb_for_wl(ubi);
709 if (!e2)
714 dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
726 e2 = get_peb_for_wl(ubi);
727 if (!e2)
730 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
732 e1->ec, e2->ec);
735 wl_tree_add(e2, &ubi->free);
742 e1->pnum, e1->ec, e2
1010 struct ubi_wl_entry *e2; global() local
[all...]
/kernel/linux/linux-6.6/drivers/mtd/ubi/
H A Dwl.c652 struct ubi_wl_entry *e1, *e2; local
712 e2 = get_peb_for_wl(ubi);
713 if (!e2)
718 dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
730 e2 = get_peb_for_wl(ubi);
731 if (!e2)
734 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
736 e1->ec, e2->ec);
739 wl_tree_add(e2, &ubi->free);
746 e1->pnum, e1->ec, e2
[all...]
/kernel/linux/linux-5.10/net/netfilter/ipset/
H A Dip_set_hash_ipmac.c52 const struct hash_ipmac4_elem *e2, in hash_ipmac4_data_equal()
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()
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()
51 hash_ipmac4_data_equal(const struct hash_ipmac4_elem *e1, const struct hash_ipmac4_elem *e2, u32 *multi) hash_ipmac4_data_equal() argument
158 hash_ipmac6_data_equal(const struct hash_ipmac6_elem *e1, const struct hash_ipmac6_elem *e2, u32 *multi) hash_ipmac6_data_equal() argument
/kernel/linux/linux-6.6/net/netfilter/ipset/
H A Dip_set_hash_ipmac.c52 const struct hash_ipmac4_elem *e2, in hash_ipmac4_data_equal()
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()
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()
51 hash_ipmac4_data_equal(const struct hash_ipmac4_elem *e1, const struct hash_ipmac4_elem *e2, u32 *multi) hash_ipmac4_data_equal() argument
158 hash_ipmac6_data_equal(const struct hash_ipmac6_elem *e1, const struct hash_ipmac6_elem *e2, u32 *multi) hash_ipmac6_data_equal() argument
/kernel/linux/linux-5.10/fs/nfs/flexfilelayout/
H A Dflexfilelayoutdev.c199 const struct nfs4_ff_layout_ds_err *e2) in ff_ds_error_match()
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 in ff_ds_error_match()
198 ff_ds_error_match(const struct nfs4_ff_layout_ds_err *e1, const struct nfs4_ff_layout_ds_err *e2) ff_ds_error_match() argument
[all...]
/kernel/linux/linux-6.6/fs/nfs/flexfilelayout/
H A Dflexfilelayoutdev.c201 const struct nfs4_ff_layout_ds_err *e2) in ff_ds_error_match()
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 in ff_ds_error_match()
200 ff_ds_error_match(const struct nfs4_ff_layout_ds_err *e1, const struct nfs4_ff_layout_ds_err *e2) ff_ds_error_match() argument
[all...]
/kernel/linux/linux-5.10/security/selinux/ss/
H A Debitmap.c31 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2) in ebitmap_cmp() argument
35 if (e1->highbit != e2->highbit) in ebitmap_cmp()
39 n2 = e2->node; in ebitmap_cmp()
81 int ebitmap_and(struct ebitmap *dst, struct ebitmap *e1, struct ebitmap *e2) in ebitmap_and() argument
89 if (ebitmap_get_bit(e2, bit)) { in ebitmap_and()
216 * Check to see if all the bits set in e2 are also set in e1. Optionally,
217 * if last_e2bit is non-zero, the highest set bit in e2 cannot exceed
220 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit) in ebitmap_contains() argument
225 if (e1->highbit < e2->highbit) in ebitmap_contains()
229 n2 = e2 in ebitmap_contains()
[all...]
H A Debitmap.h125 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2);
127 int ebitmap_and(struct ebitmap *dst, struct ebitmap *e1, struct ebitmap *e2);
128 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit);
/kernel/linux/linux-6.6/security/selinux/ss/
H A Debitmap.c31 int ebitmap_cmp(const struct ebitmap *e1, const struct ebitmap *e2) in ebitmap_cmp() argument
35 if (e1->highbit != e2->highbit) in ebitmap_cmp()
39 n2 = e2->node; in ebitmap_cmp()
82 int ebitmap_and(struct ebitmap *dst, const struct ebitmap *e1, const struct ebitmap *e2) in ebitmap_and() argument
90 if (ebitmap_get_bit(e2, bit)) { in ebitmap_and()
217 * Check to see if all the bits set in e2 are also set in e1. Optionally,
218 * if last_e2bit is non-zero, the highest set bit in e2 cannot exceed
221 int ebitmap_contains(const struct ebitmap *e1, const struct ebitmap *e2, u32 last_e2bit) in ebitmap_contains() argument
226 if (e1->highbit < e2->highbit) in ebitmap_contains()
230 n2 = e2 in ebitmap_contains()
[all...]

Completed in 18 milliseconds

1234