Home
last modified time | relevance | path

Searched +full:22 +full:c (Results 1 – 25 of 1252) sorted by relevance

12345678910>>...51

/OK3568_Linux_fs/kernel/arch/powerpc/lib/
H A Dtest_emulate_step.c293 } c; in test_lfsx_stfsx() local
302 c.a = 123.45; in test_lfsx_stfsx()
303 cached_b = c.b; in test_lfsx_stfsx()
305 regs.gpr[3] = (unsigned long) &c.a; in test_lfsx_stfsx()
319 c.a = 678.91; in test_lfsx_stfsx()
324 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
336 } c; in test_plfs_pstfs() local
350 c.a = 123.45; in test_plfs_pstfs()
351 cached_b = c.b; in test_plfs_pstfs()
353 regs.gpr[3] = (unsigned long)&c.a; in test_plfs_pstfs()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dinet.h12 * $Id: Space.c,v 0.8.4.5 1992/12/12 19:25:04 bir7 Exp $
13 * $Id: arp.c,v 0.8.4.6 1993/01/28 22:30:00 bir7 Exp $
14 * $Id: arp.h,v 0.8.4.6 1993/01/28 22:30:00 bir7 Exp $
15 * $Id: dev.c,v 0.8.4.13 1993/01/23 18:00:11 bir7 Exp $
17 * $Id: eth.c,v 0.8.4.4 1993/01/22 23:21:38 bir7 Exp $
19 * $Id: icmp.c,v 0.8.4.9 1993/01/23 18:00:11 bir7 Exp $
21 * $Id: ip.c,v 0.8.4.8 1992/12/12 19:25:04 bir7 Exp $
23 * $Id: loopback.c,v 0.8.4.8 1993/01/23 18:00:11 bir7 Exp $
24 * $Id: packet.c,v 0.8.4.7 1993/01/26 22:04:00 bir7 Exp $
25 * $Id: protocols.c,v 0.8.4.3 1992/11/15 14:55:30 bir7 Exp $
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/forwarding/
H A Dtc_shblocks.sh34 tc qdisc add dev $swp1 ingress_block 22 egress_block 23 clsact
37 tc qdisc add dev $swp2 ingress_block 22 egress_block 23 clsact
53 tc filter add block 22 protocol ip pref 1 handle 101 flower \
56 $MZ $h1 -c 1 -p 64 -a $h1mac -b $swmac -A 192.0.2.1 -B 192.0.2.2 \
59 tc_check_packets "block 22" 101 1
62 $MZ $h2 -c 1 -p 64 -a $h2mac -b $swmac -A 192.0.2.1 -B 192.0.2.2 \
65 tc_check_packets "block 22" 101 2
68 tc filter del block 22 protocol ip pref 1 handle 101 flower
77 tc filter add block 22 protocol ip pref 1 handle 101 flower \
79 tc filter add block 22 protocol ip pref 2 handle 102 flower \
[all …]
/OK3568_Linux_fs/kernel/arch/x86/crypto/
H A Dsha256-avx-asm.S4 # Copyright (C) 2013 Intel Corporation.
9 # Tim Chen <tim.c.chen@linux.intel.com>
102 c = %ecx define
147 d = c
148 c = b define
161 MY_ROR (22-13), y1 # y1 = a >> (22-13)
165 xor a, y1 # y1 = a ^ (a >> (22-13)
170 MY_ROR (13-2), y1 # y1 = (a >> (13-2)) ^ (a >> (22-2))
173 xor a, y1 # y1 = a ^ (a >> (13-2)) ^ (a >> (22-2))
176 MY_ROR 2, y1 # y1 = S0 = (a>>2) ^ (a>>13) ^ (a>>22)
[all …]
H A Dsha256-ssse3-asm.S4 # Copyright (C) 2013 Intel Corporation.
9 # Tim Chen <tim.c.chen@linux.intel.com>
95 c = %ecx define
141 d = c
142 c = b define
155 ror $(22-13), y1 # y1 = a >> (22-13)
160 xor a, y1 # y1 = a ^ (a >> (22-13)
165 ror $(13-2), y1 # y1 = (a >> (13-2)) ^ (a >> (22-2))
168 xor a, y1 # y1 = a ^ (a >> (13-2)) ^ (a >> (22-2))
172 ror $2, y1 # y1 = S0 = (a>>2) ^ (a>>13) ^ (a>>22)
[all …]
H A Dsha256-avx2-asm.S4 # Copyright (C) 2013 Intel Corporation.
9 # Tim Chen <tim.c.chen@linux.intel.com>
95 c = %ecx define
149 d = c
150 c = b define
163 or c, y3 # y3 = a|c # MAJA
175 rorx $22, a, y1 # y1 = a >> 22 # S0A
178 and b, y3 # y3 = (a|c)&b # MAJA
180 xor T1, y1 # y1 = (a>>22) ^ (a>>13) # S0
185 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0
[all …]
/OK3568_Linux_fs/kernel/drivers/atm/
H A Dfirestream.h6 /* Written & (C) 2000 by R.E.Wolff@BitWizard.nl
7 * Copied snippets from zatm.c by Werner Almesberger, EPFL LRC/ICA
8 * and ambassador.c Copyright (C) 1995-1999 Madge Networks Ltd
50 #define STATUS_CODE(qe) ((qe->cmd >> 22) & 0x3f)
98 #define QE_CMD_NULL (0x00 << 22)
99 #define QE_CMD_REG_RD (0x01 << 22)
100 #define QE_CMD_REG_RDM (0x02 << 22)
101 #define QE_CMD_REG_WR (0x03 << 22)
102 #define QE_CMD_REG_WRM (0x04 << 22)
103 #define QE_CMD_CONFIG_TX (0x05 << 22)
[all …]
/OK3568_Linux_fs/buildroot/package/acpid/
H A D0001-dont-use-isfdtype.patch6 diff -Nura acpid-2.0.22.orig/sock.c acpid-2.0.22/sock.c
7 --- acpid-2.0.22.orig/sock.c 2014-04-22 18:04:19.706841764 -0300
8 +++ acpid-2.0.22/sock.c 2014-04-22 18:05:08.285479625 -0300
/OK3568_Linux_fs/buildroot/package/libwebsock/
H A D0003-fix-incorrect-inline.patch3 Currently, decode() is prototyped in utf.h, its body is in utf.c and it
4 is called from util.c.
7 when compiling util.c, the body of decode() is out-of-scope for that
10 Furthermore, decode() uses a utf8d, which is a static defined in utf.c .
11 So utf8d is not visible when compiling util.c either.
16 …es -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c utf.c -fPIC -DPIC -o .…
17 utf.c:36:12: warning: ‘utf8d’ is static but used in inline function ‘decode’ which is not static
20 utf.c:30:19: warning: ‘utf8d’ is static but used in inline function ‘decode’ which is not static
23 …s -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c util.c -fPIC -DPIC -o .…
25 from util.c:20:
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/comedi/drivers/
H A Ddac02.c3 * dac02.c
5 * Copyright (C) 2014 H Hartley Sweeten <hsweeten@visionengravers.com>
8 * Copyright (C) 2000 Frank Mori Hess <fmhess@users.sourceforge.net>
9 * Copyright (C) 2001 David A. Schleef <ds@schleef.org>
12 * Copyright (C) 1998 David A. Schleef <ds@schleef.org>
36 * 0 to 5V 0 21 to 22 24
38 * 0 to 10V 0 20 to 22 24
40 * +/-5V 0 21 to 22 23
42 * +/-10V 0 20 to 22 23
44 * 4 to 20mA 0 21 to 22 25
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-rockchip/
H A Drockchip_smccc.su
/OK3568_Linux_fs/kernel/drivers/clk/ti/
H A Dclk-7xx.c5 * Copyright (C) 2013 Texas Instruments, Inc.
75 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
129 { DRA7_IPU_MCASP1_CLKCTRL, dra7_mcasp1_bit_data, CLKF_SW_SUP, "ipu-clkctrl:0000:22" },
651 "l4per2-clkctrl:012c:24",
667 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
674 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
680 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
686 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
692 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
713 { 22, TI_CLK_MUX, dra7_mcasp1_aux_gfclk_mux_parents, NULL },
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-0.21/
H A Dserial-tests-config.patch22 @@ -22,7 +22,7 @@ AC_INIT([gettext],
24 AC_CONFIG_SRCDIR([gettext-tools/src/msgfmt.c])
35 @@ -22,7 +22,7 @@ AC_INIT([gettext-runtime],
37 AC_CONFIG_SRCDIR([intl/dcigettext.c])
48 @@ -22,7 +22,7 @@ AC_INIT([gettext-tools],
50 AC_CONFIG_SRCDIR([src/msgfmt.c])
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/
H A Dinclude.patch6 --- lrzsz-0.12.21.orig/lib/long-options.c
7 +++ lrzsz-0.12.21/lib/long-options.c
8 @@ -22,6 +22,7 @@
16 --- lrzsz-0.12.21.orig/src/lsyslog.c
17 +++ lrzsz-0.12.21/src/lsyslog.c
18 @@ -22,6 +22,7 @@
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A Dimages.c2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
7 "22 22 5 1",
8 ". c None",
9 "# c #000000",
10 "c c #838100",
11 "a c #ffff00",
12 "b c #ffffff",
37 "22 22 5 1",
38 ". c None",
39 "# c #000000",
[all …]
/OK3568_Linux_fs/kernel/scripts/kconfig/
H A Dimages.c3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
9 "22 22 5 1",
10 ". c None",
11 "# c #000000",
12 "c c #838100",
13 "a c #ffff00",
14 "b c #ffffff",
39 "22 22 5 1",
40 ". c None",
41 "# c #000000",
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/
H A Dimages.c2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
7 "22 22 5 1",
8 ". c None",
9 "# c #000000",
10 "c c #838100",
11 "a c #ffff00",
12 "b c #ffffff",
37 "22 22 5 1",
38 ". c None",
39 "# c #000000",
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Dcx23885-cardlist.rst95 - 0070:2215, 0070:221d, 0070:22f2
99 - 0070:2251, 0070:22f1
103 - 0070:2291, 0070:2295, 0070:2299, 0070:229d, 0070:22f0, 0070:22f3, 0070:22f4, 0070:22f5
105 * - 22
138 - NetUP Dual DVB-T/C-CI RF
203 - 4254:980c
207 - 4254:950c
H A Divtv.rst82 crw-rw---- 1 root video 81, 0 Jun 19 22:22 /dev/video0
83 crw-rw---- 1 root video 81, 16 Jun 19 22:22 /dev/video16
84 crw-rw---- 1 root video 81, 24 Jun 19 22:22 /dev/video24
85 crw-rw---- 1 root video 81, 32 Jun 19 22:22 /dev/video32
86 crw-rw---- 1 root video 81, 48 Jun 19 22:22 /dev/video48
87 crw-rw---- 1 root video 81, 64 Jun 19 22:22 /dev/radio0
88 crw-rw---- 1 root video 81, 224 Jun 19 22:22 /dev/vbi0
89 crw-rw---- 1 root video 81, 228 Jun 19 22:22 /dev/vbi8
90 crw-rw---- 1 root video 81, 232 Jun 19 22:22 /dev/vbi16
122 cat /dev/video0 > my.mpg (you need to hit ctrl-c to exit)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/p910nd/p910nd/
H A Dfix-var-lock.patch7 --- p910nd.orig/p910nd.8 2011-11-14 22:41:41.904615879 +0100
8 +++ p910nd/p910nd.8 2011-11-14 22:49:52.299047607 +0100
18 Index: p910nd/p910nd.c
20 --- p910nd.orig/p910nd.c 2011-11-14 22:47:41.986401420 +0100
21 +++ p910nd/p910nd.c 2011-11-14 22:49:27.274923524 +0100
30 #define PRINTERFILE "/dev/lp%c"
/OK3568_Linux_fs/device/rockchip/common/tools/armhf/
HDgdb ... d. Integer literal out of range Invalid digit `%c' in based literal ___ flex scanner push-back overflow ...
/OK3568_Linux_fs/kernel/Documentation/target/
H A Dtcm_mod_builder.rst17 1) Generate new API callers for drivers/target/target_core_fabric_configs.c logic
19 into $TCM_NEW_MOD/$TCM_NEW_MOD_configfs.c
24 SPC-3 persistent reservation are automatically generated in $TCM_NEW_MOD/$TCM_NEW_MOD_fabric.c
25 using drivers/target/target_core_fabric_lib.c logic.
27 in $TCM_NEW_MOD/$TCM_NEW_MOD_fabric.c
45 …mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_fabric.c
49 …t/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_configfs.c
75 drwxr-xr-x 9 root root 4096 2010-10-05 03:22 ..
76 -rw-r--r-- 1 root root 282 2010-10-05 03:22 Kbuild
77 -rw-r--r-- 1 root root 171 2010-10-05 03:22 Kconfig
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/i810/
H A Di810.h1 /*-*- linux-c -*-
4 * Copyright (C) 2001 Antonino Daplas<adaplas@pol.net>
88 #define SETUP_MONO_PATTERN_SL_BLT (0x10 << 22)
89 #define PIXEL_BLT (0x20 << 22)
90 #define SCANLINE_BLT (0x21 << 22)
91 #define TEXT_BLT (0x22 << 22)
92 #define TEXT_IMM_BLT (0x30 << 22)
93 #define COLOR_BLT (0x40 << 22)
94 #define MONO_PAT_BLIT (0x42 << 22)
95 #define SOURCE_COPY_BLIT (0x43 << 22)
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/elfutils/files/
H A D0001-skip-the-test-when-gcc-not-deployed.patch24 @@ -22,6 +22,8 @@ case "`uname -m`" in
30 ${CC} -m64 -c -o testfile45.o testfile45.S
37 @@ -22,6 +22,8 @@ case "`uname -m`" in
43 ${CC} -m32 -c -o testfile44.o testfile44.S
63 @@ -22,6 +22,8 @@
/OK3568_Linux_fs/kernel/arch/c6x/boot/dts/
H A Devmc6678.dts7 * Copyright (C) 2012 Texas Instruments Incorporated
44 timer10: timer@22A0000 {
49 timer11: timer@22B0000 {
54 timer12: timer@22C0000 {
59 timer13: timer@22D0000 {
64 timer14: timer@22E0000 {
69 timer15: timer@22F0000 {

12345678910>>...51