Home
last modified time | relevance | path

Searched full:e (Results 1 – 25 of 7373) sorted by relevance

12345678910>>...295

/linux/lib/
H A Derrname.c16 #define E(err) [err + BUILD_BUG_ON_ZERO(err <= 0 || err > 300)] = "-" #err macro
18 E(E2BIG),
19 E(EACCES),
20 E(EADDRINUSE),
21 E(EADDRNOTAVAIL),
22 E(EADV),
23 E(EAFNOSUPPORT),
24 E(EAGAIN), /* EWOULDBLOCK */
25 E(EALREADY),
26 E(EBADE),
[all …]
/linux/scripts/coccinelle/api/
H A Dstring_choices.cocci11 expression E;
14 - ((E == 1) ? "" : "s")
15 + str_plural(E)
17 - ((E > 1) ? "s" : "")
18 + str_plural(E)
22 expression E;
26 * (E@P == 1) ? "" : "s"
28 * (E@P > 1) ? "s" : ""
33 e << str_plural_r.E;
36 coccilib.report.print_report(p[0], "opportunity for str_plural(%s)" % e)
[all …]
H A Dkvmalloc.cocci24 expression E, E1, size;
35 * E = \(kmalloc\|kzalloc\|kcalloc\|kmalloc_node\|kzalloc_node\|
41 * E = \(vmalloc\|vzalloc\|vmalloc_node\|vzalloc_node\)(..., size, ...)
45 * E = \(kmalloc\|kzalloc\|kcalloc\|kmalloc_node\|kzalloc_node\|
48 ... when != E = E1
51 * if (E == NULL)@p {
53 * E = \(vmalloc\|vzalloc\|vmalloc_node\|vzalloc_node\)(..., size, ...)
71 expression E;
75 * if (is_vmalloc_addr(E))@p {
77 * vfree(E)
[all …]
/linux/net/netfilter/ipset/
H A Dpfxlen.c7 #ifdef E
8 #undef E
12 E(0x00000000, 0x00000000, 0x00000000, 0x00000000), \
13 E(0x80000000, 0x00000000, 0x00000000, 0x00000000), \
14 E(0xC0000000, 0x00000000, 0x00000000, 0x00000000), \
15 E(0xE0000000, 0x00000000, 0x00000000, 0x00000000), \
16 E(0xF0000000, 0x00000000, 0x00000000, 0x00000000), \
17 E(0xF8000000, 0x00000000, 0x00000000, 0x00000000), \
18 E(0xFC000000, 0x00000000, 0x00000000, 0x00000000), \
19 E(0xFE000000, 0x00000000, 0x00000000, 0x00000000), \
[all …]
/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dl2t.c65 static inline unsigned int vlan_prio(const struct l2t_entry *e) in vlan_prio() argument
67 return e->vlan >> VLAN_PRIO_SHIFT; in vlan_prio()
70 static inline void l2t_hold(struct l2t_data *d, struct l2t_entry *e) in l2t_hold() argument
72 if (atomic_add_return(1, &e->refcnt) == 1) /* 0 -> 1 transition */ in l2t_hold()
118 static int addreq(const struct l2t_entry *e, const u32 *addr) in addreq() argument
120 if (e->v6) in addreq()
121 return (e->addr[0] ^ addr[0]) | (e->addr[1] ^ addr[1]) | in addreq()
122 (e->addr[2] ^ addr[2]) | (e->addr[3] ^ addr[3]); in addreq()
123 return e->addr[0] ^ addr[0]; in addreq()
126 static void neigh_replace(struct l2t_entry *e, struct neighbour *n) in neigh_replace() argument
[all …]
/linux/tools/testing/selftests/powerpc/pmu/
H A Devent.c24 static void __event_init_opts(struct event *e, u64 config, in __event_init_opts() argument
27 memset(e, 0, sizeof(*e)); in __event_init_opts()
29 e->name = name; in __event_init_opts()
31 e->attr.type = type; in __event_init_opts()
32 e->attr.config = config; in __event_init_opts()
33 e->attr.size = sizeof(e->attr); in __event_init_opts()
35 e->attr.read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | \ in __event_init_opts()
38 e->attr.sample_period = 1000; in __event_init_opts()
39 e->attr.sample_type = PERF_SAMPLE_REGS_INTR; in __event_init_opts()
40 e->attr.disabled = 1; in __event_init_opts()
[all …]
/linux/drivers/net/ethernet/chelsio/cxgb3/
H A Dl2t.c63 static inline unsigned int vlan_prio(const struct l2t_entry *e) in vlan_prio() argument
65 return e->vlan >> 13; in vlan_prio()
74 static inline void neigh_replace(struct l2t_entry *e, struct neighbour *n) in neigh_replace() argument
77 if (e->neigh) in neigh_replace()
78 neigh_release(e->neigh); in neigh_replace()
79 e->neigh = n; in neigh_replace()
88 struct l2t_entry *e) in setup_l2e_send_pending() argument
101 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_L2T_WRITE_REQ, e->idx)); in setup_l2e_send_pending()
102 req->params = htonl(V_L2T_W_IDX(e->idx) | V_L2T_W_IFF(e->smt_idx) | in setup_l2e_send_pending()
103 V_L2T_W_VLAN(e->vlan & VLAN_VID_MASK) | in setup_l2e_send_pending()
[all …]
/linux/security/apparmor/
H A Dpolicy_unpack_test.c52 struct aa_ext *e; member
60 struct aa_ext *e; in build_aa_ext_struct() local
65 e = kunit_kmalloc(test, sizeof(*e), GFP_USER); in build_aa_ext_struct()
66 KUNIT_EXPECT_NOT_ERR_OR_NULL(test, e); in build_aa_ext_struct()
68 e->start = buf; in build_aa_ext_struct()
69 e->end = e->start + buf_size; in build_aa_ext_struct()
70 e->pos = e->start; in build_aa_ext_struct()
74 strscpy(buf + 3, TEST_STRING_NAME, e->end - (void *)(buf + 3)); in build_aa_ext_struct()
76 buf = e->start + TEST_STRING_BUF_OFFSET; in build_aa_ext_struct()
79 strscpy(buf + 3, TEST_STRING_DATA, e->end - (void *)(buf + 3)); in build_aa_ext_struct()
[all …]
H A Dpolicy_unpack.c58 * @e: buffer position info
64 const char *name, const char *info, struct aa_ext *e, in audit_iface() argument
69 if (e) in audit_iface()
70 ad.iface.pos = e->pos - e->start; in audit_iface()
179 VISIBLE_IF_KUNIT bool aa_inbounds(struct aa_ext *e, size_t size) in aa_inbounds() argument
181 return (size <= e->end - e->pos); in aa_inbounds()
187 * @e: serialized data read head (NOT NULL)
192 VISIBLE_IF_KUNIT size_t aa_unpack_u16_chunk(struct aa_ext *e, char **chunk) in aa_unpack_u16_chunk() argument
195 void *pos = e->pos; in aa_unpack_u16_chunk()
197 if (!aa_inbounds(e, sizeof(u16))) in aa_unpack_u16_chunk()
[all …]
/linux/drivers/hid/bpf/progs/
H A DHuion__Kamvas13Gen3.bpf.c268e 15 a6 25 5a 75 08 95 02 81 02 c0 c0 05 0d 09 04 a1 01 85 04 09 22 a1 02 05 0d 95 01 75 06 09 51 …
327e a1 01 85 11 05 0d 09 21 a1 02 15 00 25 01 75 01 95 01 a1 00 05 09 09 01 81 02 05 0d 09 33 81 02 …
409 * E: 000000.000040 14 08 e0 01 01 20 00 00 00 00 00 00 00 00 00
410 * E: 000001.531559 14 08 e0 01 01 00 00 00 00 00 00 00 00 00 00
413 * E: 000002.787603 14 08 e0 01 01 40 00 00 00 00 00 00 00 00 00
414 * E: 000004.215609 14 08 e0 01 01 00 00 00 00 00 00 00 00 00 00
418 * E: 000194.003899 14 08 f1 01 01 00 01 00 00 00 00 00 00 00 00
421 * E: 000194.997812 14 08 f1 01 01 00 02 00 00 00 00 00 00 00 00
424 * E: 000196.693840 14 08 f1 01 02 00 01 00 00 00 00 00 00 00 00
427 * E: 000197.757895 14 08 f1 01 02 00 02 00 00 00 00 00 00 00 00
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r570/nvrm/
H A Dmsgfn.h11 #ifndef E
12 # define E(RPC, VAL) NV_VGPU_MSG_EVENT_##RPC = VAL, macro
16 E(FIRST_EVENT, 0x1000) enumerator
17 E(GSP_INIT_DONE, 0x1001)
18 E(GSP_RUN_CPU_SEQUENCER, 0x1002)
19 E(POST_EVENT, 0x1003)
20 E(RC_TRIGGERED, 0x1004)
21 E(MMU_FAULT_QUEUED, 0x1005)
22 E(OS_ERROR_LOG, 0x1006)
23 E(RG_LINE_INTR, 0x1007)
[all …]
/linux/arch/alpha/lib/
H A Dev6-memcpy.S16 * E - either cluster
34 mov $16, $0 # E : copy dest to return
36 xor $16, $17, $1 # E : are source and dest alignments the same?
37 and $1, 7, $1 # E : are they the same mod 8?
41 and $16, 7, $1 # E : Are both 0mod8?
43 nop # E :
53 subq $18, 1, $18 # E : count--
54 addq $17, 1, $17 # E : src++
56 addq $16, 1, $16 # E : dest++
57 and $16, 7, $1 # E : Are we at 0mod8 yet?
[all …]
H A Dev6-memchr.S26 * E - either cluster
50 and $17, 0xff, $17 # E : L L U U : 00000000000000ch
53 cmpult $18, 9, $4 # E : small (< 1 quad) string?
54 or $2, $17, $17 # E : 000000000000chch
55 lda $3, -1($31) # E : U L L U
58 addq $16, $5, $5 # E : Max search address
59 or $2, $17, $17 # E : 00000000chchchch
62 or $2, $17, $17 # E : chchchchchchchch
68 mov $16, $0 # E :
69 nop # E :
[all …]
H A Dev6-memset.S15 * E - either cluster
53 and $17,255,$1 # E : 00000000000000ch
55 bis $16,$16,$0 # E : return value
58 addq $18,$16,$6 # E : max address to write to
59 bis $1,$2,$17 # E : 000000000000chch
63 or $3,$4,$3 # E : 00000000chch0000
65 xor $16,$6,$1 # E : will complete write be within one quadword?
68 or $17,$3,$17 # E : 00000000chchchch
69 or $2,$5,$2 # E : chchchch00000000
70 bic $1,7,$1 # E : fit within a single quadword?
[all …]
H A Dev6-stxncpy.S36 * E - either cluster
66 lda t2, -1 # E : build a mask against false zero
69 ornot t1, t2, t2 # E : (stall)
72 cmpbge zero, t2, t8 # E : bits set iff null found
73 or t0, t3, t0 # E : (stall)
91 addq a0, 8, a0 # E :
92 subq a2, 1, a2 # E :
96 addq a1, 8, a1 # E :
97 cmpbge zero, t0, t8 # E :
113 negq t8, t12 # E : find low bit set
[all …]
/linux/
H A DCREDITS4 scripts. The fields are: name (N), email (E), web-address
13 E: mea@nic.funet.fi
20 E: kishon@kernel.org
24 E: thomas.ab@samsung.com
28 E: jose.abreu@synopsys.com
32 E: dragos@iname.com
40 E: madler@alumni.caltech.edu
45 E: magrawal@nortelnetworks.com
52 E: airlied@linux.ie
60 E: tigran@aivazian.fsnet.co.uk
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/nvrm/
H A Dmsgfn.h11 #ifndef E
12 # define E(RPC) NV_VGPU_MSG_EVENT_##RPC, macro
16 E(FIRST_EVENT = 0x1000) // 0x1000 enumerator
17 E(GSP_INIT_DONE) // 0x1001
18 E(GSP_RUN_CPU_SEQUENCER) // 0x1002
19 E(POST_EVENT) // 0x1003
20 E(RC_TRIGGERED) // 0x1004
21 E(MMU_FAULT_QUEUED) // 0x1005
22 E(OS_ERROR_LOG) // 0x1006
23 E(RG_LINE_INTR) // 0x1007
[all …]
/linux/scripts/coccinelle/null/
H A Dbadzero.cocci27 expression *E;
32 (E = f(...)) ==
36 (E = f(...)) !=
42 == (E = f(...))
46 != (E = f(...))
51 expression *E;
57 (E = f(...)) ==
60 (E = f(...)) !=
64 == (E = f(...))
67 != (E = f(...))
[all …]
/linux/drivers/md/
H A Ddm-cache-policy-smq.c88 struct entry *e; in __get_entry() local
90 e = es->begin + block; in __get_entry()
91 BUG_ON(e >= es->end); in __get_entry()
93 return e; in __get_entry()
96 static unsigned int to_index(struct entry_space *es, struct entry *e) in to_index() argument
98 BUG_ON(e < es->begin || e >= es->end); in to_index()
99 return e - es->begin; in to_index()
133 static struct entry *l_next(struct entry_space *es, struct entry *e) in l_next() argument
135 return to_entry(es, e->next); in l_next()
138 static struct entry *l_prev(struct entry_space *es, struct entry *e) in l_prev() argument
[all …]
/linux/scripts/kconfig/
H A Dexpr.c21 static struct expr *expr_eliminate_yn(struct expr *e);
35 struct expr *e; in expr_lookup() local
40 hash_for_each_possible(expr_hashtable, e, node, hash) { in expr_lookup()
41 if (e->type == type && e->left._initdata == l && in expr_lookup()
42 e->right._initdata == r) in expr_lookup()
43 return e; in expr_lookup()
46 e = xmalloc(sizeof(*e)); in expr_lookup()
47 e->type = type; in expr_lookup()
48 e->left._initdata = l; in expr_lookup()
49 e->right._initdata = r; in expr_lookup()
[all …]
/linux/Documentation/driver-api/media/drivers/ccs/
H A Dccs-regs.asc6 # - e enum value # after a field
7 # - e enum value [LSB MSB]
23 - e GRBG 0
24 - e RGGB 1
25 - e BGGR 2
26 - e GBRG 3
28 - e v1_0 0x10
29 - e v1_1 0x11
40 - e ts 0
41 - e es 1
[all …]
/linux/drivers/media/test-drivers/vidtv/
H A Dvidtv_s302m.c165 static void vidtv_s302m_access_unit_destroy(struct vidtv_encoder *e) in vidtv_s302m_access_unit_destroy() argument
167 struct vidtv_access_unit *head = e->access_units; in vidtv_s302m_access_unit_destroy()
176 e->access_units = NULL; in vidtv_s302m_access_unit_destroy()
179 static void vidtv_s302m_alloc_au(struct vidtv_encoder *e) in vidtv_s302m_alloc_au() argument
184 if (e->sync && e->sync->is_video_encoder) { in vidtv_s302m_alloc_au()
185 sync_au = e->sync->access_units; in vidtv_s302m_alloc_au()
188 temp = vidtv_s302m_access_unit_init(e->access_units); in vidtv_s302m_alloc_au()
189 if (!e->access_units) in vidtv_s302m_alloc_au()
190 e->access_units = temp; in vidtv_s302m_alloc_au()
198 e->access_units = vidtv_s302m_access_unit_init(NULL); in vidtv_s302m_alloc_au()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/
H A Dindir_table.c97 struct mlx5_esw_indir_table_entry *e) in mlx5_esw_indir_table_rule_get() argument
109 if (e->recirc_rule) { in mlx5_esw_indir_table_rule_get()
110 refcount_inc(&e->recirc_rule->refcnt); in mlx5_esw_indir_table_rule_get()
139 flow_act.fg = e->recirc_grp; in mlx5_esw_indir_table_rule_get()
146 handle = mlx5_add_flow_rules(e->ft, NULL, &flow_act, &dest, 1); in mlx5_esw_indir_table_rule_get()
156 e->recirc_rule = rule; in mlx5_esw_indir_table_rule_get()
172 struct mlx5_esw_indir_table_entry *e) in mlx5_esw_indir_table_rule_put() argument
174 struct mlx5_esw_indir_table_rule *rule = e->recirc_rule; in mlx5_esw_indir_table_rule_put()
187 e->recirc_rule = NULL; in mlx5_esw_indir_table_rule_put()
190 static int mlx5_create_indir_recirc_group(struct mlx5_esw_indir_table_entry *e) in mlx5_create_indir_recirc_group() argument
[all …]
/linux/fs/
H A Dbinfmt_misc.c95 Node *e; in search_binfmt_handler() local
98 list_for_each_entry(e, &misc->entries, list) { in search_binfmt_handler()
103 if (!test_bit(Enabled, &e->flags)) in search_binfmt_handler()
107 if (!test_bit(Magic, &e->flags)) { in search_binfmt_handler()
108 if (p && !strcmp(e->magic, p + 1)) in search_binfmt_handler()
109 return e; in search_binfmt_handler()
114 s = bprm->buf + e->offset; in search_binfmt_handler()
115 if (e->mask) { in search_binfmt_handler()
116 for (j = 0; j < e->size; j++) in search_binfmt_handler()
117 if ((*s++ ^ e->magic[j]) & e->mask[j]) in search_binfmt_handler()
[all …]
/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A Dtrace.c78 struct trace_entry *e; in trace_alloc_entry() local
80 e = trace_alloc(tb, sizeof(*e) + payload_size); in trace_alloc_entry()
81 if (e) in trace_alloc_entry()
82 e->length = payload_size; in trace_alloc_entry()
84 return e; in trace_alloc_entry()
89 struct trace_entry *e; in trace_log_reg() local
92 e = trace_alloc_entry(tb, sizeof(reg) + sizeof(value)); in trace_log_reg()
93 if (!e) in trace_log_reg()
96 e->type = TRACE_TYPE_REG; in trace_log_reg()
97 p = (u64 *)e->data; in trace_log_reg()
[all …]

12345678910>>...295