Home
last modified time | relevance | path

Searched refs:missing (Results 1 – 25 of 222) sorted by relevance

123456789

/Linux-v4.19/arch/c6x/lib/
Dchecksum.c19 int missing; in csum_partial_copy_from_user() local
21 missing = __copy_from_user(dst, src, len); in csum_partial_copy_from_user()
22 if (missing) { in csum_partial_copy_from_user()
23 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
/Linux-v4.19/arch/parisc/lib/
Dchecksum.c139 int missing; in csum_partial_copy_from_user() local
141 missing = copy_from_user(dst, src, len); in csum_partial_copy_from_user()
142 if (missing) { in csum_partial_copy_from_user()
143 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
/Linux-v4.19/arch/powerpc/lib/
Dchecksum_wrappers.c50 int missing = __copy_from_user(dst, src, len); in csum_and_copy_from_user() local
52 if (missing) { in csum_and_copy_from_user()
53 memset(dst + len - missing, 0, missing); in csum_and_copy_from_user()
/Linux-v4.19/lib/
Dchecksum.c159 int missing; in csum_partial_copy_from_user() local
161 missing = __copy_from_user(dst, src, len); in csum_partial_copy_from_user()
162 if (missing) { in csum_partial_copy_from_user()
163 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
/Linux-v4.19/
DKbuild8 # 4) Check for missing system calls
62 # 4) Check for missing system calls
65 always += missing-syscalls
66 targets += missing-syscalls
71 missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
/Linux-v4.19/Documentation/devicetree/bindings/regulator/
Dtps62360-regulator.txt15 If this property is missing, then assume that there is no GPIO
18 If this property is missing, then assume that there is no GPIO
21 If this property is missing, then assume the state as low (0).
23 If this property is missing, then assume the state as low (0).
Dfixed-regulator.txt11 If this property is missing, the default assumed is Active low.
13 If this property is missing then default assumption is false.
/Linux-v4.19/Documentation/media/v4l-drivers/
Drcar-fdp1.rst25 recover missing lines. This method is also known as blending or Line
28 - The previous and next fields are averaged to recover lines missing from
32 field is used to fill missing lines from the current field. This method
36 used to fill missing lines from the current field. This method is also
/Linux-v4.19/scripts/
DMakefile.headersinst61 missing := $(filter-out $(all-files),$(mandatory-y))
62 ifneq ($(missing),)
63 $(error Some mandatory headers ($(missing)) are missing in $(obj))
Dsphinx-pre-install23 my %missing;
83 foreach my $prog (sort keys %missing) {
84 my $is_optional = $missing{$prog};
106 $missing{$package} = $is_optional;
/Linux-v4.19/scripts/coccinelle/free/
Dpci_free_consistent.cocci1 /// Find missing pci_free_consistent for every pci_alloc_consistent.
42 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei…
50 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei…
Diounmap.cocci1 /// Find missing iounmaps.
3 //# This only signals a missing iounmap when there is an iounmap later
66 msg = "ERROR: missing iounmap; ioremap on line %s and execution via conditional on line %s" % (p1[0…
Dclk_put.cocci1 /// Find missing clk_puts.
3 //# This only signals a missing clk_put when there is a clk_put later
66 msg = "ERROR: missing clk_put; clk_get on line %s and execution via conditional on line %s" % (p1[0…
/Linux-v4.19/drivers/usb/wusbcore/
Dwa-nep.c81 u8 missing = 0; in wa_notif_dispatch() local
101 missing = sizeof(*notif_hdr) - size; in wa_notif_dispatch()
150 missing, (int)size); in wa_notif_dispatch()
/Linux-v4.19/drivers/spi/
Dspidev.c168 unsigned long missing; in spidev_read() local
170 missing = copy_to_user(buf, spidev->rx_buffer, status); in spidev_read()
171 if (missing == status) in spidev_read()
174 status = status - missing; in spidev_read()
188 unsigned long missing; in spidev_write() local
197 missing = copy_from_user(spidev->tx_buffer, buf, count); in spidev_write()
198 if (missing == 0) in spidev_write()
/Linux-v4.19/scripts/coccinelle/locks/
Dmini_lock.cocci1 /// Find missing unlocks. This semantic match considers the specific case
2 /// where the unlock is missing from an if branch, and there is a lock
/Linux-v4.19/Documentation/devicetree/bindings/clock/
Drockchip,rk3036-cru.txt18 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3128-cru.txt20 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3228-cru.txt18 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3288-cru.txt18 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3328-cru.txt18 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rv1108-cru.txt18 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3188-cru.txt19 If missing pll rates are not changeable, due to the missing pll lock status.
Drockchip,rk3368-cru.txt18 If missing, pll rates are not changeable, due to the missing pll lock status.
/Linux-v4.19/drivers/rtc/
Dinterface.c209 enum { none, day, month, year } missing = none; in __rtc_read_alarm() local
297 missing = day; in __rtc_read_alarm()
301 if (missing == none) in __rtc_read_alarm()
302 missing = month; in __rtc_read_alarm()
306 if (missing == none) in __rtc_read_alarm()
307 missing = year; in __rtc_read_alarm()
323 switch (missing) { in __rtc_read_alarm()

123456789