Home
last modified time | relevance | path

Searched refs:E1 (Results 1 – 25 of 88) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/dl/whetstone/
H A Dwhetstone.c82 double T,T1,T2,E1[5]; variable
182 E1[1] = 1.0; in main()
183 E1[2] = -1.0; in main()
184 E1[3] = -1.0; in main()
185 E1[4] = -1.0; in main()
188 E1[1] = ( E1[1] + E1[2] + E1[3] - E1[4]) * T; in main()
189 E1[2] = ( E1[1] + E1[2] - E1[3] + E1[4]) * T; in main()
190 E1[3] = ( E1[1] - E1[2] + E1[3] + E1[4]) * T; in main()
191 E1[4] = (-E1[1] + E1[2] + E1[3] + E1[4]) * T; in main()
195 IF (JJ==II)POUT(N2,N3,N2,E1[1],E1[2],E1[3],E1[4]); in main()
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/api/alloc/
H A Dzalloc-simple.cocci33 expression E1;
37 * x = (T)\(kmalloc(E1, ...)\|vmalloc(E1)\|dma_alloc_coherent(...,E1,...)\|
38 kmalloc_node(E1, ...)\|kmem_cache_alloc(...)\|kmem_alloc(E1, ...)\|
39 devm_kmalloc(...,E1,...)\|kvmalloc(E1, ...)\|kvmalloc_node(E1,...)\);
41 * memset((T2)x,0,E1);
50 expression E1,E2,E3,E4;
55 - x = kmalloc(E1,E2);
56 + x = kzalloc(E1,E2);
58 - x = (T *)kmalloc(E1,E2);
59 + x = kzalloc(E1,E2);
[all …]
/OK3568_Linux_fs/kernel/arch/x86/crypto/
H A Dsha1_ni_asm.S69 #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 …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/misc/
H A Darray_size_dup.cocci20 expression E1, E2;
23 array_size(E1, E2)
26 expression subE1 <= as.E1;
28 expression as.E1, as.E2, E3;
33 * E1 * E2@p1
36 * array_size(E1, E2)@p2
55 expression subE1 <= as.E1;
57 expression as.E1, as.E2, E3;
62 * array_size(E1, E2)@p1
65 * E1 * E2@p2
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/locks/
H A Ddouble_lock.cocci19 expression E1;
39 ) (E1@p,...);
45 expression x <= locked.E1;
46 expression E,locked.E1;
51 <+... when != E1
52 lock(E1@p,...)
55 ... when != E1
59 <+... when != E1
60 unlock@p1(E1,...)
65 expression x <= locked.E1;
[all …]
H A Dmini_lock.cocci23 expression E1;
54 ) (E1@p,...);
63 expression E1;
70 *lock(E1@p,...);
71 ... when != E1
74 ... when != E1
77 ... when != E1
79 *unlock@up(E1,...);
/OK3568_Linux_fs/kernel/scripts/coccinelle/api/
H A Dkstrdup.cocci19 expression flag,E1,E2;
25 ... when != \(from = E1 \| to = E1 \)
32 expression flag,E1,E2,E3;
37 ... when != \( x = E1 \| from = E1 \)
49 expression flag,E1,E2;
55 ... when != \(from = E1 \| to = E1 \)
62 expression flag,E1,E2,E3;
68 ... when != \( x = E1 \| from = E1 \)
H A Dkvmalloc.cocci24 expression E, E1, size;
33 * if (size cmp E1 || ...)@p {
48 ... when != E = E1
49 when != size = E1
60 ... when != x = E1
61 when != size = E1
87 expression E, E1, size, node;
94 - if (size cmp E1)
100 - if (size cmp E1)
126 - if (size cmp E1)
[all …]
H A Dd_find_alias.cocci17 expression E, E1;
39 dent@p2 = E1;
41 E1 = dent;
H A Dmemdup.cocci27 expression flag,E1;
32 ... when != \( x = E1 \| from = E1 \)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/preprocessed/
H A Ddeduce_domain_n.hpp16 template<typename E0 , typename E1 , typename E2>
19 … typename domain_of<E0 >::type , typename domain_of<E1 >::type , typename domain_of<E2 >::type
30 template<typename E0 , typename E1 , typename E2 , typename E3>
33 …typename domain_of<E0 >::type , typename domain_of<E1 >::type , typename domain_of<E2 >::type , ty…
44 template<typename E0 , typename E1 , typename E2 , typename E3 , typename E4>
47 …typename domain_of<E0 >::type , typename domain_of<E1 >::type , typename domain_of<E2 >::type , ty…
58 template<typename E0 , typename E1 , typename E2 , typename E3 , typename E4 , typename E5>
61 …typename domain_of<E0 >::type , typename domain_of<E1 >::type , typename domain_of<E2 >::type , ty…
72 …template<typename E0 , typename E1 , typename E2 , typename E3 , typename E4 , typename E5 , typen…
75 …typename domain_of<E0 >::type , typename domain_of<E1 >::type , typename domain_of<E2 >::type , ty…
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/null/
H A Dderef_null.cocci55 expression E1,E2;
71 subE = E1
73 for(subE = E1;...;...) S4
116 expression E1,E2;
132 subE = E1
134 for(subE = E1;...;...) S4
176 expression E1,E2;
192 subE = E1
194 for(subE = E1;...;...) S4
249 expression E1,E2;
[all …]
H A Dbadzero.cocci86 expression E,E1;
90 ... when != E = E1
124 expression E1;
144 ?E = E1
148 expression E1;
166 ?E = E1
/OK3568_Linux_fs/kernel/arch/m68k/fpsp040/
H A Dskeleton.S68 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 …]
H A Dgen_except.S168 | 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)
/OK3568_Linux_fs/kernel/lib/
H A Dlocking-selftest.c270 static void name##_12(void) { E1(); E2(); } \
271 static void name##_21(void) { E2(); E1(); }
275 static void name##_123(void) { E1(); E2(); E3(); } \
276 static void name##_132(void) { E1(); E3(); E2(); } \
277 static void name##_213(void) { E2(); E1(); E3(); } \
278 static void name##_231(void) { E2(); E3(); E1(); } \
279 static void name##_312(void) { E3(); E1(); E2(); } \
280 static void name##_321(void) { E3(); E2(); E1(); }
772 #define E1() \ macro
805 #undef E1 in GENERATE_PERMUTATIONS_2_EVENTS()
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/iterators/
H A Ditnull.cocci24 expression x,E,E1,E2;
41 - (x == NULL && ...) ? E1 :
45 E1
/OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/arm/armv8-2a/
H A Dtune-neoversee1.inc2 # Tune Settings for Neoverse-E1
6 TUNEVALID[neoversee1] = "Enable Neoverse-E1 specific processor optimizations"
/OK3568_Linux_fs/kernel/scripts/kconfig/tests/err_recursive_dep/
H A DKconfig37 config E1 config
38 bool "E1"
H A Dexpected_stderr24 Kconfig:37: symbol E1 depends on E2
25 Kconfig:42: symbol E2 is implied by E1
/OK3568_Linux_fs/kernel/drivers/isdn/hardware/mISDN/
H A DKconfig16 tristate "Support for HFC multiport cards (HFC-4S/8S/E1)"
25 * HFC-E1 (E1 interface for 2Mbit ISDN)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/
H A Diu_CA40 % "Canada" in Inuktitut: ᑲᓇᑕ (https://iu.wikipedia.org/wiki/%E1%91%B2%E1%93%87%E1%91%95)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/
H A Diu_CA40 % "Canada" in Inuktitut: ᑲᓇᑕ (https://iu.wikipedia.org/wiki/%E1%91%B2%E1%93%87%E1%91%95)
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pinctrl/
H A Dpinctrl-mt8183.txt78 When E1=0/E0=0, the strength is 0.125mA.
79 When E1=0/E0=1, the strength is 0.25mA.
80 When E1=1/E0=0, the strength is 0.5mA.
81 When E1=1/E0=1, the strength is 1mA.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/
H A Ddeduce_domain.hpp187 template<typename E0, typename E1>
191 , typename domain_of<E1>::type

1234