Home
last modified time | relevance | path

Searched full:so (Results 1 – 25 of 6447) sorted by relevance

12345678910>>...258

/linux/arch/sh/boards/mach-kfr2r09/
H A Dlcd_wqvga.c60 struct sh_mobile_lcdc_sys_bus_ops *so) in read_reg() argument
62 return so->read_data(sohandle); in read_reg()
66 struct sh_mobile_lcdc_sys_bus_ops *so, in write_reg() argument
70 so->write_data(sohandle, v); /* PTH4/LCDRS High [param, 17:0] */ in write_reg()
72 so->write_index(sohandle, v); /* PTH4/LCDRS Low [cmd, 7:0] */ in write_reg()
76 struct sh_mobile_lcdc_sys_bus_ops *so, in write_data() argument
82 write_reg(sohandle, so, 1, data[i]); in write_data()
86 struct sh_mobile_lcdc_sys_bus_ops *so) in read_device_code() argument
91 write_reg(sohandle, so, 0, 0xb0); in read_device_code()
92 write_reg(sohandle, so, 1, 0x00); in read_device_code()
[all …]
/linux/net/can/
H A Disotp.c182 static u32 isotp_bc_flags(struct isotp_sock *so) in isotp_bc_flags() argument
184 return so->opt.flags & ISOTP_ALL_BC_FLAGS; in isotp_bc_flags()
187 static bool isotp_register_rxid(struct isotp_sock *so) in isotp_register_rxid() argument
190 return (isotp_bc_flags(so) == 0); in isotp_register_rxid()
195 struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, in isotp_rx_timer_handler() local
197 struct sock *sk = &so->sk; in isotp_rx_timer_handler()
199 if (so->rx.state == ISOTP_WAIT_DATA) { in isotp_rx_timer_handler()
208 so->rx.state = ISOTP_IDLE; in isotp_rx_timer_handler()
220 struct isotp_sock *so = isotp_sk(sk); in isotp_send_fc() local
223 nskb = alloc_skb(so->ll.mtu, gfp_any()); in isotp_send_fc()
[all …]
/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_streamoutput.c12 * permit persons to whom the Software is furnished to do so, subject to
92 struct vmw_dx_streamoutput *so = vmw_res_to_dx_streamoutput(res); in vmw_dx_streamoutput_unscrub() local
99 if (!list_empty(&so->cotable_head) || !so->committed ) in vmw_dx_streamoutput_unscrub()
102 cmd = VMW_CMD_CTX_RESERVE(dev_priv, sizeof(*cmd), so->ctx->id); in vmw_dx_streamoutput_unscrub()
108 cmd->body.soid = so->id; in vmw_dx_streamoutput_unscrub()
111 cmd->body.sizeInBytes = so->size; in vmw_dx_streamoutput_unscrub()
114 vmw_cotable_add_resource(so->cotable, &so->cotable_head); in vmw_dx_streamoutput_unscrub()
122 struct vmw_dx_streamoutput *so = vmw_res_to_dx_streamoutput(res); in vmw_dx_streamoutput_create() local
125 WARN_ON_ONCE(!so->committed); in vmw_dx_streamoutput_create()
133 res->id = so->id; in vmw_dx_streamoutput_create()
[all …]
/linux/tools/perf/tests/shell/
H A Dtest_java_symbol.sh26 if [ -e "$PWD/tools/perf/libperf-jvmti.so" ]; then
27 LIBJVMTI=$PWD/tools/perf/libperf-jvmti.so
28 elif [ -e "$PWD/libperf-jvmti.so" ]; then
29 LIBJVMTI=$PWD/libperf-jvmti.so
30 elif [ -e "$PERF_DIR/libperf-jvmti.so" ]; then
31 LIBJVMTI=$PERF_DIR/libperf-jvmti.so
32 elif [ -e "$PREFIX/lib64/libperf-jvmti.so" ]; then
33 LIBJVMTI=$PREFIX/lib64/libperf-jvmti.so
34 elif [ -e "$PREFIX/lib/libperf-jvmti.so" ]; then
35 LIBJVMTI=$PREFIX/lib/libperf-jvmti.so
[all …]
/linux/arch/arm/vdso/
H A DMakefile11 targets := $(obj-vdso) vdso.so vdso.so.dbg vdso.so.raw vdso.lds
18 ldflags-y := -Bsymbolic --no-undefined -soname=linux-vdso.so.1 \
37 $(obj)/vdso.o : $(obj)/vdso.so
39 # Link rule for the .so file
40 $(obj)/vdso.so.raw: $(obj)/vdso.lds $(obj-vdso) FORCE
43 $(obj)/vdso.so.dbg: $(obj)/vdso.so.raw $(obj)/vdsomunge FORCE
46 # Strip rule for the .so file
47 $(obj)/%.so: OBJCOPYFLAGS := -S
48 $(obj)/%.so: $(obj)/%.so.dbg FORCE
/linux/arch/sh/boards/mach-migor/
H A Dlcd_qvga.c113 int migor_lcd_qvga_setup(void *sohandle, struct sh_mobile_lcdc_sys_bus_ops *so) in migor_lcd_qvga_setup() argument
120 migor_lcd_qvga_seq(sohandle, so, sync_data, ARRAY_SIZE(sync_data)); in migor_lcd_qvga_setup()
122 if (read_reg16(sohandle, so, 0) != 0x1505) in migor_lcd_qvga_setup()
127 migor_lcd_qvga_seq(sohandle, so, sync_data, ARRAY_SIZE(sync_data)); in migor_lcd_qvga_setup()
128 write_reg16(sohandle, so, 0x00A4, 0x0001); in migor_lcd_qvga_setup()
131 migor_lcd_qvga_seq(sohandle, so, magic0_data, ARRAY_SIZE(magic0_data)); in migor_lcd_qvga_setup()
134 migor_lcd_qvga_seq(sohandle, so, magic1_data, ARRAY_SIZE(magic1_data)); in migor_lcd_qvga_setup()
135 write_reg16(sohandle, so, 0x0050, 0xef - (yres - 1)); in migor_lcd_qvga_setup()
136 write_reg16(sohandle, so, 0x0051, 0x00ef); in migor_lcd_qvga_setup()
137 write_reg16(sohandle, so, 0x0052, 0x0000); in migor_lcd_qvga_setup()
[all …]
/linux/arch/riscv/kernel/compat_vdso/
H A DMakefile31 targets := $(obj-compat_vdso) compat_vdso.so compat_vdso.so.dbg compat_vdso.lds
38 $(obj)/compat_vdso.o: $(obj)/compat_vdso.so
40 # link rule for the .so file, .lds has to be first
41 $(obj)/compat_vdso.so.dbg: $(obj)/compat_vdso.lds $(obj-compat_vdso) FORCE
43 LDFLAGS_compat_vdso.so.dbg = -shared -S -soname=linux-compat_vdso.so.1 \
49 # strip rule for the .so file
50 $(obj)/%.so: OBJCOPYFLAGS := -S
51 $(obj)/%.so: $(obj)/%.so.dbg FORCE
59 include/generated/compat_vdso-offsets.h: $(obj)/compat_vdso.so.dbg FORCE
/linux/tools/perf/Documentation/
H A Dexamples.txt85 23.57% git-repack /lib64/libc-2.5.so
86 21.81% git /lib64/libc-2.5.so
89 7.12% git /lib64/ld-2.5.so
90 3.16% git-repack /lib64/libpthread-2.5.so
92 1.97% rm /lib64/libc-2.5.so
93 1.39% mv /lib64/ld-2.5.so
94 1.37% mv /lib64/libc-2.5.so
95 1.12% git-repack /lib64/ld-2.5.so
96 0.95% rm /lib64/ld-2.5.so
97 0.90% git-update-serv /lib64/libc-2.5.so
[all …]
/linux/arch/arm64/kernel/vdso/
H A DMakefile15 targets := $(obj-vdso) vdso.so vdso.so.dbg
22 # routines, as x86 does (see 6f121e548f83 ("x86, vdso: Reimplement vdso.so
24 ldflags-y := -shared -soname=linux-vdso.so.1 \
63 # Link rule for the .so file, .lds has to be first
64 $(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
67 # Strip rule for the .so file
68 $(obj)/%.so: OBJCOPYFLAGS := -S
69 $(obj)/%.so: $(obj)/%.so.dbg FORCE
77 include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
/linux/arch/s390/kernel/vdso/
H A DMakefile19 targets := $(obj-vdso) $(obj-cvdso) vdso.so vdso.so.dbg
32 ldflags-y := -shared -soname=linux-vdso.so.1 \
43 $(obj)/vdso_wrapper.o : $(obj)/vdso.so
48 # link rule for the .so file, .lds has to be first
49 $(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) $(obj-cvdso) FORCE
52 # strip rule for the .so file
53 $(obj)/%.so: OBJCOPYFLAGS := -S
54 $(obj)/%.so: $(obj)/%.so.dbg FORCE
75 include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
/linux/tools/power/cpupower/bindings/python/
H A DMakefile16 all: _raw_pylibcpupower.so
18 _raw_pylibcpupower.so: raw_pylibcpupower_wrap.o
19 $(CC) -shared $(LDFLAGS) raw_pylibcpupower_wrap.o -o _raw_pylibcpupower.so
33 install: _raw_pylibcpupower.so
34 install -D _raw_pylibcpupower.so $(INSTALL_DIR)/_raw_pylibcpupower.so
38 rm -f $(INSTALL_DIR)/_raw_pylibcpupower.so
43 rm -f raw_pylibcpupower.py raw_pylibcpupower_wrap.c raw_pylibcpupower_wrap.o _raw_pylibcpupower.so
/linux/drivers/net/ieee802154/
H A DKconfig21 This driver can also be built as a module. To do so say M here.
33 This driver can also be built as a module. To do so, say M here.
45 This driver can also be built as a module. To do so, say M here.
56 This driver can also be built as a module. To do so, say M here.
66 This driver can also be built as a module. To do so say M here.
77 This driver can also be built as a module. To do so, say M here.
89 This driver can also be built as a module. To do so, say M here.
111 This driver can also be built as a module. To do so, say M here.
122 This driver can also be built as a module. To do so say M here.
/linux/drivers/i2c/muxes/
H A DKconfig19 This driver can also be built as a module. If so, the module
31 This driver can also be built as a module. If so, the module
44 This driver can also be built as a module. If so, the module
55 This driver can also be built as a module. If so, the module
64 This driver can also be built as a module. If so, the module
74 This driver can also be built as a module. If so, the module
87 This driver can also be built as a module. If so, the module will be
99 This driver can also be built as a module. If so, the module
119 This driver can also be built as a module. If so, the module
135 This driver can also be built as a module. If so, the module
/linux/arch/loongarch/vdso/
H A DMakefile45 ldflags-y := -Bsymbolic --no-undefined -soname=linux-vdso.so.1 \
63 include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
73 targets += vdso.lds vdso.so.dbg vdso.so
82 $(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
85 $(obj)/vdso.so: OBJCOPYFLAGS := -S
86 $(obj)/vdso.so: $(obj)/vdso.so.dbg FORCE
91 $(obj)/vdso.o : $(obj)/vdso.so
/linux/drivers/w1/masters/
H A DKconfig16 This driver can also be built as a module. If so, the module will be
26 This support is also available as a module. If so, the module
36 This support is also available as a module. If so, the module
46 This driver can also be built as a module. If so, the module
62 This support is also available as a module. If so, the module
78 This support is also available as a module. If so, the module
88 This support is also available as a module. If so, the module
/linux/fs/nls/
H A DKconfig45 in so-called DOS codepages. You need to include the appropriate
57 in so-called DOS codepages. You need to include the appropriate
69 in so-called DOS codepages. You need to include the appropriate
82 so-called DOS codepages. You need to include the appropriate
98 so-called DOS codepages. You need to include the appropriate
113 so-called DOS codepages. You need to include the appropriate
124 so-called DOS codepages. You need to include the appropriate
135 so-called DOS codepages. You need to include the appropriate
146 so-called DOS codepages. You need to include the appropriate
157 so-called DOS codepages. You need to include the appropriate
[all …]
/linux/arch/sh/kernel/vsyscall/
H A DMakefile4 $(obj)/vsyscall-syscall.o: $(obj)/vsyscall-trapa.so
7 targets += vsyscall-trapa.o vsyscall-traps.so
17 vsyscall-flags = -shared -s -Wl,-soname=linux-gate.so.1 -Wl,--hash-style=sysv
19 SYSCFLAGS_vsyscall-trapa.so = $(vsyscall-flags)
21 $(obj)/vsyscall-trapa.so: \
22 $(obj)/vsyscall-%.so: $(obj)/vsyscall.lds $(obj)/vsyscall-%.o FORCE
/linux/arch/arm64/boot/dts/rockchip/
H A Drk3588-jaguar-pre-ict-tester.dtso91 * the SoC default for this pin) so that LOW is read if
105 * default bias is pull-down therefore being LOW. So
107 * the same value. Make GPIO3_B2 a pull-up so that a
119 * - GPIO3_C6 is floating (so HIGH) if GPIO3_C6 is not
121 * - GPIO3_C6 is floating (so HIGH) if VCC_1V8_S0_1 is
124 * Make GPIO3_C6 a pull-down so that a soldering issue
134 * the SoC default for this pin) so that LOW is read if
144 * the SoC default for this pin) so that LOW is read if
154 * the SoC default for this pin) so that LOW is read if
164 * the SoC default for this pin) so that LOW is read if
/linux/Documentation/kbuild/
H A DKconfig.recursion-issue-0116 # that are possible for CORE. So for example if CORE_BELL_A_ADVANCED is 'y',
22 # CORE_BELL_A so naturally it depends on CORE_BELL_A. So if CORE_BELL_A is 'y'
27 # CORE_BELL_A depends on CORE, so CORE influences CORE_BELL_A.
40 # so trivial to resolve, we provide another example below of practical
41 # implications of this recursive issue where the solution is perhaps not so
/linux/Documentation/sound/cards/
H A Dhdspm.rst5 (translated from German, so no good English ;-),
26 allocated. So also the throughput of the PCI system can be
34 all 64 channels are available for the mixer, so channel count
43 so channel count for the driver
52 so channel count for the driver
75 64 Byte accurate. SO it is not really usable for the
84 large never to small. So if you subtract 64 you always have a
100 (especially graphic) ALSA-Mixer GUIs. So Mixer control has be
107 one, I decided to export the hardware structure, so that of
134 a studio should have working synchronisations setup. So use
[all …]
/linux/scripts/gcc-plugins/
H A DMakefile3 $(obj)/randomize_layout_plugin.so: $(obj)/randomize_layout_seed.h
21 # If the plugin foo.so is compiled from foo.c and foo2.c, you can do:
39 plugin-single := $(foreach m, $(GCC_PLUGIN), $(if $($(m:%.so=%-objs)),,$(m)))
41 plugin-objs := $(sort $(foreach m, $(plugin-multi), $($(m:%.so=%-objs))))
44 clean-files += *.so
53 $(plugin-single): $(obj)/%.so: $(src)/%.c FORCE
62 $(foreach m, $(notdir $(plugin-multi)), $(eval $(obj)/$m: $(addprefix $(obj)/, $($(m:%.so=%-objs)))))
/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dt4_pci_id_tbl.h104 CH_PCI_ID_TABLE_FENTRY(0x4007), /* T420-so */
131 CH_PCI_ID_TABLE_FENTRY(0x5007), /* T520-so */
143 CH_PCI_ID_TABLE_FENTRY(0x5014), /* T580-so */
145 CH_PCI_ID_TABLE_FENTRY(0x5016), /* T580-OCP-SO */
146 CH_PCI_ID_TABLE_FENTRY(0x5017), /* T520-OCP-SO */
149 CH_PCI_ID_TABLE_FENTRY(0x501a), /* T540-SO-BT */
150 CH_PCI_ID_TABLE_FENTRY(0x501b), /* T540-SO-CR */
166 CH_PCI_ID_TABLE_FENTRY(0x5095), /* Custom T540-CR-SO */
183 CH_PCI_ID_TABLE_FENTRY(0x50a6), /* Custom T522-BT-SO */
191 CH_PCI_ID_TABLE_FENTRY(0x50ae), /* Custom T540-XL-SO */
[all …]
/linux/Documentation/trace/
H A Dtracepoint-analysis.rst215 - When receiving an event about a PID, it can record who the parent was so
250 6.85% hackbench /lib/i686/cmov/libc-2.9.so
251 2.62% hackbench /lib/ld-2.9.so
255 0.02% perf /lib/i686/cmov/libc-2.9.so
257 0.01% perf /lib/ld-2.9.so
258 0.00% hackbench /lib/i686/cmov/libpthread-2.9.so
264 within the VDSO. With simple binaries, this will often be the case so let's
266 noticed that X was generating an insane amount of page allocations so let's look
285 47.95% Xorg /opt/gfx-test/lib/libpixman-1.so.0.13.1
286 0.09% Xorg /lib/i686/cmov/libc-2.9.so
[all …]
/linux/tools/thermal/lib/
H A DMakefile77 LIBTHERMAL_TOOLS_SO := $(OUTPUT)libthermal_tools.so.$(VERSION)
82 LIBTHERMAL_TOOLS_ALL := $(LIBTHERMAL_TOOLS_A) $(OUTPUT)libthermal_tools.so*
91 $(QUIET_LINK)$(CC) --shared -Wl,-soname,libthermal_tools.so $^ -o $@
92 @ln -sf $(@F) $(OUTPUT)libthermal_tools.so
93 @ln -sf $(@F) $(OUTPUT)libthermal_tools.so.$(LIBTHERMAL_TOOLS_VERSION)
103 …*.o *~ *.a *.so *.so.$(VERSION) *.so.$(LIBTHERMAL_TOOLS_VERSION) .*.d .*.cmd LIBTHERMAL_TOOLS-CFLA…
/linux/arch/powerpc/kernel/vdso/
H A DMakefile36 targets := $(obj-vdso32) vdso32.so.dbg vgettimeofday-32.o vgetrandom-32.o
39 targets += $(obj-vdso64) vdso64.so.dbg vgettimeofday-64.o vgetrandom-64.o
58 # This flag is supported by clang for 64-bit but not 32-bit so it will cause
72 LD32FLAGS := -Wl,-soname=linux-vdso32.so.1
75 LD64FLAGS := -Wl,-soname=linux-vdso64.so.1
83 # link rule for the .so file, .lds has to be first
84 $(obj)/vdso32.so.dbg: $(obj)/vdso32.lds $(obj-vdso32) $(obj)/vgettimeofday-32.o $(obj)/vgetrandom-3…
86 $(obj)/vdso64.so.dbg: $(obj)/vdso64.lds $(obj-vdso64) $(obj)/vgettimeofday-64.o $(obj)/vgetrandom-6…
113 include/generated/vdso32-offsets.h: $(obj)/vdso32.so.dbg FORCE
115 include/generated/vdso64-offsets.h: $(obj)/vdso64.so.dbg FORCE

12345678910>>...258