/Linux-v4.19/scripts/coccinelle/api/alloc/ |
D | zalloc-simple.cocci | 32 expression E1; 36 * x = (T)\(kmalloc(E1, ...)\|vmalloc(E1)\|dma_alloc_coherent(...,E1,...)\| 37 kmalloc_node(E1, ...)\|kmem_cache_alloc(...)\|kmem_alloc(E1, ...)\| 38 devm_kmalloc(...,E1,...)\|kvmalloc(E1, ...)\|kvmalloc_node(E1,...)\); 40 * memset((T2)x,0,E1); 49 expression E1,E2,E3,E4; 54 - x = kmalloc(E1,E2); 55 + x = kzalloc(E1,E2); 57 - x = (T *)kmalloc(E1,E2); 58 + x = kzalloc(E1,E2); [all …]
|
/Linux-v4.19/arch/x86/crypto/ |
D | sha1_ni_asm.S | 69 #define E1 %xmm2 macro 124 movdqa ABCD, E1 130 sha1nexte MSG1, E1 132 sha1rnds4 $0, E1, ABCD 139 movdqa ABCD, E1 147 sha1nexte MSG3, E1 150 sha1rnds4 $0, E1, ABCD 156 movdqa ABCD, E1 163 sha1nexte MSG1, E1 166 sha1rnds4 $1, E1, ABCD [all …]
|
/Linux-v4.19/scripts/coccinelle/locks/ |
D | double_lock.cocci | 18 expression E1; 38 ) (E1@p,...); 44 expression x <= locked.E1; 45 expression E,locked.E1; 50 <+... when != E1 51 lock(E1@p,...) 54 ... when != E1 58 <+... when != E1 59 unlock@p1(E1,...) 64 expression x <= locked.E1; [all …]
|
D | mini_lock.cocci | 22 expression E1; 53 ) (E1@p,...); 62 expression E1; 69 *lock(E1@p,...); 70 ... when != E1 73 ... when != E1 76 ... when != E1 78 *unlock@up(E1,...);
|
/Linux-v4.19/scripts/coccinelle/api/ |
D | kstrdup.cocci | 18 expression flag,E1,E2; 24 ... when != \(from = E1 \| to = E1 \) 31 expression flag,E1,E2,E3; 36 ... when != \( x = E1 \| from = E1 \) 48 expression flag,E1,E2; 54 ... when != \(from = E1 \| to = E1 \) 61 expression flag,E1,E2,E3; 67 ... when != \( x = E1 \| from = E1 \)
|
D | d_find_alias.cocci | 17 expression E, E1; 39 dent@p2 = E1; 41 E1 = dent;
|
D | memdup.cocci | 26 expression flag,E1; 31 ... when != \( x = E1 \| from = E1 \)
|
/Linux-v4.19/scripts/coccinelle/null/ |
D | deref_null.cocci | 54 expression E1,E2; 70 subE = E1 72 for(subE = E1;...;...) S4 115 expression E1,E2; 131 subE = E1 133 for(subE = E1;...;...) S4 175 expression E1,E2; 191 subE = E1 193 for(subE = E1;...;...) S4 248 expression E1,E2; [all …]
|
D | badzero.cocci | 85 expression E,E1; 89 ... when != E = E1 123 expression E1; 143 ?E = E1 147 expression E1; 165 ?E = E1
|
/Linux-v4.19/arch/m68k/fpsp040/ |
D | skeleton.S | 68 bclrb #E1,E_BYTE(%a6) 85 | otherwise clear the E1 exception. The frestore is not really 86 | necessary for E1 exceptions. 89 | bug, if an E1 snan, ovfl, or unfl occurred, and the process was 93 | fix is to check for E1, and the existence of one of snan, ovfl, 108 btstb #E1,E_BYTE(%a6) |test for E1 set 158 bclrb #E1,E_BYTE(%a6) 184 bclrb #E1,E_BYTE(%a6) 210 bclrb #E1,E_BYTE(%a6) 233 bclrb #E1,E_BYTE(%a6) |snan is always an E1 exception [all …]
|
D | gen_except.S | 168 | exception is to set the E1/E3 byte and clr the U flag. 169 | commonE1 does this for E1 exceptions, which are snan, 171 | are inex2 and inex1, and also clears the E1 exception bit 175 bsetb #E1,E_BYTE(%a6) |set E1 flag 183 bclrb #E1,E_BYTE(%a6) |clr E1 from unimp 192 bclrb #E1,E_BYTE(%a6) |clr E1 flag 268 bsetb #E1,E_BYTE(%a6) |set E1 exception flag 301 bclrb #E1,E_BYTE(%a6) |make sure E1 is clear 349 | We need to set the nmcexc bits if the exception is E1. Otherwise, 358 | btst.b #E1,E_BYTE(%a1)
|
D | fpsp.h | 172 .set CMDREG1B,LV-36 | cmd reg for E1 exceptions (2 bytes) 189 .set E_BYTE,LV-28 | holds E1 and E3 bits (1 byte) 190 .set E1,2 | which bit is E1 flag
|
/Linux-v4.19/lib/ |
D | locking-selftest.c | 268 static void name##_12(void) { E1(); E2(); } \ 269 static void name##_21(void) { E2(); E1(); } 273 static void name##_123(void) { E1(); E2(); E3(); } \ 274 static void name##_132(void) { E1(); E3(); E2(); } \ 275 static void name##_213(void) { E2(); E1(); E3(); } \ 276 static void name##_231(void) { E2(); E3(); E1(); } \ 277 static void name##_312(void) { E3(); E1(); E2(); } \ 278 static void name##_321(void) { E3(); E2(); E1(); } 727 #define E1() \ macro 760 #undef E1 in GENERATE_PERMUTATIONS_2_EVENTS() [all …]
|
/Linux-v4.19/scripts/coccinelle/iterators/ |
D | itnull.cocci | 23 expression x,E,E1,E2; 40 - (x == NULL && ...) ? E1 : 44 E1
|
/Linux-v4.19/scripts/kconfig/tests/err_recursive_dep/ |
D | Kconfig | 37 config E1 config 38 bool "E1"
|
D | expected_stderr | 24 Kconfig:37: symbol E1 depends on E2 25 Kconfig:42: symbol E2 is implied by E1
|
/Linux-v4.19/drivers/isdn/hardware/mISDN/ |
D | Kconfig | 15 tristate "Support for HFC multiport cards (HFC-4S/8S/E1)" 24 * HFC-E1 (E1 interface for 2Mbit ISDN)
|
/Linux-v4.19/scripts/coccinelle/free/ |
D | kfree.cocci | 79 expression E1; 94 list_remove_head(E1,subE,...)
|
/Linux-v4.19/Documentation/devicetree/bindings/net/ |
D | maxim,ds26522.txt | 1 * Maxim (Dallas) DS26522 Dual T1/E1/J1 Transceiver
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | tango4-vantage-1172.dts | 7 model = "Sigma Designs SMP8758 Vantage-1172 Rev E1";
|
D | dove-sbc-a510.dts | 98 /* Ethernet0 depends on CM-A510 option E1 */ 153 * PCIe0 can be configured by Jumper E1 to be either connected to
|
/Linux-v4.19/drivers/net/wan/ |
D | farsync.h | 198 #define E1 6 macro
|
/Linux-v4.19/arch/c6x/kernel/ |
D | switch_to.S | 61 B .S2 B3 ; return in next E1
|
/Linux-v4.19/arch/arc/kernel/ |
D | troubleshoot.c | 203 STS_BIT(regs, E2), STS_BIT(regs, E1)); in show_regs()
|
/Linux-v4.19/Documentation/fb/ |
D | tgafb.txt | 10 ZLxP-E1 (8bpp, 2 MB VRAM)
|