| /kernel/linux/linux-5.10/lib/ |
| D | errname.c | 15 #define E(err) [err + BUILD_BUG_ON_ZERO(err <= 0 || err > 300)] = "-" #err macro 17 E(E2BIG), 18 E(EACCES), 19 E(EADDRINUSE), 20 E(EADDRNOTAVAIL), 21 E(EADV), 22 E(EAFNOSUPPORT), 23 E(EALREADY), 24 E(EBADE), 25 E(EBADF), [all …]
|
| D | sha1.c | 55 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument 57 E += TEMP + rol32(A,5) + (fn) + (constant); \ 60 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument 61 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument 62 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument 63 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument 64 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument 86 __u32 A, B, C, D, E; in sha1_transform() local 92 E = digest[4]; in sha1_transform() 95 T_0_15( 0, A, B, C, D, E); in sha1_transform() [all …]
|
| /kernel/linux/linux-4.19/drivers/isdn/hardware/eicon/ |
| D | um_idi.c | 30 static void cleanup_entity(divas_um_idi_entity_t *e); 34 static int process_idi_request(divas_um_idi_entity_t *e, 36 static int process_idi_rc(divas_um_idi_entity_t *e, byte rc); 37 static int process_idi_ind(divas_um_idi_entity_t *e, byte ind); 38 static int write_return_code(divas_um_idi_entity_t *e, byte rc); 173 divas_um_idi_entity_t *e; in cleanup_adapter() local 176 e = list_entry(tmp, divas_um_idi_entity_t, link); in cleanup_adapter() 178 cleanup_entity(e); in cleanup_adapter() 179 if (e->os_context) { in cleanup_adapter() 180 diva_os_wakeup_read(e->os_context); in cleanup_adapter() [all …]
|
| /kernel/linux/linux-5.10/net/netfilter/ipset/ |
| D | pfxlen.c | 7 #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 …]
|
| /kernel/linux/linux-4.19/net/netfilter/ipset/ |
| D | pfxlen.c | 6 #ifdef E 7 #undef E 11 E(0x00000000, 0x00000000, 0x00000000, 0x00000000), \ 12 E(0x80000000, 0x00000000, 0x00000000, 0x00000000), \ 13 E(0xC0000000, 0x00000000, 0x00000000, 0x00000000), \ 14 E(0xE0000000, 0x00000000, 0x00000000, 0x00000000), \ 15 E(0xF0000000, 0x00000000, 0x00000000, 0x00000000), \ 16 E(0xF8000000, 0x00000000, 0x00000000, 0x00000000), \ 17 E(0xFC000000, 0x00000000, 0x00000000, 0x00000000), \ 18 E(0xFE000000, 0x00000000, 0x00000000, 0x00000000), \ [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/ |
| D | l2t.c | 65 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 …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/chelsio/cxgb4/ |
| D | l2t.c | 65 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 …]
|
| /kernel/linux/linux-4.19/scripts/kconfig/ |
| D | expr.c | 15 static struct expr *expr_eliminate_yn(struct expr *e); 19 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 20 e->type = E_SYMBOL; in expr_alloc_symbol() 21 e->left.sym = sym; in expr_alloc_symbol() 22 return e; in expr_alloc_symbol() 27 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 28 e->type = type; in expr_alloc_one() 29 e->left.expr = ce; in expr_alloc_one() 30 return e; in expr_alloc_one() 35 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local [all …]
|
| /kernel/linux/linux-5.10/scripts/kconfig/ |
| D | expr.c | 16 static struct expr *expr_eliminate_yn(struct expr *e); 20 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 21 e->type = E_SYMBOL; in expr_alloc_symbol() 22 e->left.sym = sym; in expr_alloc_symbol() 23 return e; in expr_alloc_symbol() 28 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 29 e->type = type; in expr_alloc_one() 30 e->left.expr = ce; in expr_alloc_one() 31 return e; in expr_alloc_one() 36 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/powerpc/pmu/ |
| D | event.c | 23 void event_init_opts(struct event *e, u64 config, int type, char *name) in event_init_opts() argument 25 memset(e, 0, sizeof(*e)); in event_init_opts() 27 e->name = name; in event_init_opts() 29 e->attr.type = type; in event_init_opts() 30 e->attr.config = config; in event_init_opts() 31 e->attr.size = sizeof(e->attr); in event_init_opts() 33 e->attr.read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | \ in event_init_opts() 37 void event_init_named(struct event *e, u64 config, char *name) in event_init_named() argument 39 event_init_opts(e, config, PERF_TYPE_RAW, name); in event_init_named() 42 void event_init(struct event *e, u64 config) in event_init() argument [all …]
|
| /kernel/linux/linux-4.19/tools/testing/selftests/powerpc/pmu/ |
| D | event.c | 23 void event_init_opts(struct event *e, u64 config, int type, char *name) in event_init_opts() argument 25 memset(e, 0, sizeof(*e)); in event_init_opts() 27 e->name = name; in event_init_opts() 29 e->attr.type = type; in event_init_opts() 30 e->attr.config = config; in event_init_opts() 31 e->attr.size = sizeof(e->attr); in event_init_opts() 33 e->attr.read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | \ in event_init_opts() 37 void event_init_named(struct event *e, u64 config, char *name) in event_init_named() argument 39 event_init_opts(e, config, PERF_TYPE_RAW, name); in event_init_named() 42 void event_init(struct event *e, u64 config) in event_init() argument [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb3/ |
| D | l2t.c | 63 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 …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/chelsio/cxgb3/ |
| D | l2t.c | 63 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 …]
|
| /kernel/linux/linux-4.19/lib/ |
| D | sha1.c | 55 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument 57 E += TEMP + rol32(A,5) + (fn) + (constant); \ 60 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument 61 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument 62 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument 63 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument 64 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument 84 __u32 A, B, C, D, E; in sha_transform() local 90 E = digest[4]; in sha_transform() 93 T_0_15( 0, A, B, C, D, E); in sha_transform() [all …]
|
| /kernel/linux/linux-5.10/security/apparmor/ |
| D | policy_unpack_test.c | 47 struct aa_ext *e; member 55 struct aa_ext *e; in build_aa_ext_struct() local 60 e = kunit_kmalloc(test, sizeof(*e), GFP_USER); in build_aa_ext_struct() 61 KUNIT_EXPECT_NOT_ERR_OR_NULL(test, e); in build_aa_ext_struct() 63 e->start = buf; in build_aa_ext_struct() 64 e->end = e->start + buf_size; in build_aa_ext_struct() 65 e->pos = e->start; in build_aa_ext_struct() 71 buf = e->start + TEST_STRING_BUF_OFFSET; in build_aa_ext_struct() 76 buf = e->start + TEST_NAMED_U32_BUF_OFFSET; in build_aa_ext_struct() 83 buf = e->start + TEST_NAMED_U64_BUF_OFFSET; in build_aa_ext_struct() [all …]
|
| /kernel/linux/linux-4.19/arch/alpha/lib/ |
| D | ev6-memcpy.S | 16 * 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 …]
|
| D | ev6-memchr.S | 26 * 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 …]
|
| /kernel/linux/linux-5.10/arch/alpha/lib/ |
| D | ev6-memcpy.S | 16 * 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 …]
|
| D | ev6-memchr.S | 26 * 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 …]
|
| /kernel/linux/linux-5.10/scripts/coccinelle/api/ |
| D | kvmalloc.cocci | 24 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 …]
|
| /kernel/linux/linux-5.10/scripts/coccinelle/null/ |
| D | badzero.cocci | 27 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 …]
|
| /kernel/linux/linux-4.19/scripts/coccinelle/null/ |
| D | badzero.cocci | 26 expression *E; 31 (E = f(...)) == 35 (E = f(...)) != 41 == (E = f(...)) 45 != (E = f(...)) 50 expression *E; 56 (E = f(...)) == 59 (E = f(...)) != 63 == (E = f(...)) 66 != (E = f(...)) [all …]
|
| /kernel/linux/linux-4.19/arch/x86/crypto/ |
| D | aes-x86_64-asm_64.S | 56 movl (r7),r5 ## E; \ 57 movl 4(r7),r1 ## E; \ 58 movl 8(r7),r6 ## E; \ 59 movl 12(r7),r7 ## E; \ 60 movl 480(r8),r10 ## E; \ 61 xorl -48(r9),r5 ## E; \ 62 xorl -44(r9),r1 ## E; \ 63 xorl -40(r9),r6 ## E; \ 64 xorl -36(r9),r7 ## E; \ 65 cmpl $24,r10 ## E; \ [all …]
|
| /kernel/linux/linux-5.10/ |
| D | CREDITS | 4 scripts. The fields are: name (N), email (E), web-address 13 E: mpm@selenic.com 17 E: mea@nic.funet.fi 24 E: thomas.ab@samsung.com 28 E: dragos@iname.com 36 E: madler@alumni.caltech.edu 41 E: magrawal@nortelnetworks.com 48 E: airlied@linux.ie 56 E: tigran@aivazian.fsnet.co.uk 64 E: werner@almesberger.net [all …]
|
| /kernel/linux/linux-4.19/ |
| D | CREDITS | 4 scripts. The fields are: name (N), email (E), web-address 13 E: mpm@selenic.com 17 E: mea@nic.funet.fi 24 E: thomas.ab@samsung.com 28 E: dragos@iname.com 36 E: madler@alumni.caltech.edu 41 E: magrawal@nortelnetworks.com 48 E: airlied@linux.ie 56 E: tigran@aivazian.fsnet.co.uk 64 E: werner@almesberger.net [all …]
|