Home
last modified time | relevance | path

Searched refs:amount (Results 1 – 200 of 322) sorted by relevance

12

/linux-4.4.14/arch/parisc/math-emu/
Dhppa.h28 #define Shiftdouble(left,right,amount,dest) \ argument
30 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
33 #define Variableshiftdouble(left,right,amount,dest) \ argument
35 if (amount == 0) dest = right; \
36 else dest = ((((unsigned) left)&0x7fffffff) << (32-(amount))) | \
37 ((unsigned) right >> (amount))
40 #define Variable_shift_double(left,right,amount,dest) \ argument
42 dest = (left << (32-(amount))) | ((unsigned) right >> (amount))
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
Dlprocfs_counters.c44 void lprocfs_counter_add(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_add() argument
77 percpu_cntr->lc_sum_irq += amount; in lprocfs_counter_add()
79 percpu_cntr->lc_sum += amount; in lprocfs_counter_add()
82 percpu_cntr->lc_sumsquare += (__s64)amount * amount; in lprocfs_counter_add()
83 if (amount < percpu_cntr->lc_min) in lprocfs_counter_add()
84 percpu_cntr->lc_min = amount; in lprocfs_counter_add()
85 if (amount > percpu_cntr->lc_max) in lprocfs_counter_add()
86 percpu_cntr->lc_max = amount; in lprocfs_counter_add()
92 void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_sub() argument
124 percpu_cntr->lc_sum_irq -= amount; in lprocfs_counter_sub()
[all …]
/linux-4.4.14/include/linux/
Dpercpu_counter.h30 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
41 void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
42 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
51 static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) in percpu_counter_add() argument
53 __percpu_counter_add(fbc, amount, percpu_counter_batch); in percpu_counter_add()
98 static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount, in percpu_counter_init() argument
101 fbc->count = amount; in percpu_counter_init()
109 static inline void percpu_counter_set(struct percpu_counter *fbc, s64 amount) in percpu_counter_set() argument
111 fbc->count = amount; in percpu_counter_set()
131 percpu_counter_add(struct percpu_counter *fbc, s64 amount) in percpu_counter_add() argument
[all …]
Dbacking-dev.h58 enum wb_stat_item item, s64 amount) in __add_wb_stat() argument
60 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH); in __add_wb_stat()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dnv20.c38 uint32_t amount, off; in nv20_devinit_meminit() local
53 amount = nvkm_rd32(device, 0x10020c); in nv20_devinit_meminit()
54 for (off = amount; off > 0x2000000; off -= 0x2000000) in nv20_devinit_meminit()
57 amount = nvkm_rd32(device, 0x10020c); in nv20_devinit_meminit()
58 if (amount != fbmem_peek(fb, amount - 4)) in nv20_devinit_meminit()
/linux-4.4.14/lib/
Dpercpu_counter.c60 void percpu_counter_set(struct percpu_counter *fbc, s64 amount) in percpu_counter_set() argument
70 fbc->count = amount; in percpu_counter_set()
75 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch) in __percpu_counter_add() argument
80 count = __this_cpu_read(*fbc->counters) + amount; in __percpu_counter_add()
85 __this_cpu_sub(*fbc->counters, count - amount); in __percpu_counter_add()
88 this_cpu_add(*fbc->counters, amount); in __percpu_counter_add()
115 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp, in __percpu_counter_init() argument
122 fbc->count = amount; in __percpu_counter_init()
Dtest-hexdump.c82 size_t amount = strlen(q); in test_hexdump() local
84 strncpy(p, q, amount); in test_hexdump()
85 p += amount + 1; in test_hexdump()
DKconfig415 # is ridiculous for the amount of code involved. Until an out-of-tree
442 module load) by a small amount, so you're welcome to play with
/linux-4.4.14/sound/pci/ctxfi/
Dctresource.c27 get_resource(u8 *rscs, unsigned int amount, in get_resource() argument
33 for (i = 0, n = multi; i < amount; i++) { in get_resource()
44 if (i >= amount) { in get_resource()
84 err = get_resource(mgr->rscs, mgr->amount, n, ridx); in mgr_get_resource()
210 unsigned int amount, struct hw *hw) in rsc_mgr_init() argument
216 mgr->rscs = kzalloc(((amount + 8 - 1) / 8), GFP_KERNEL); in rsc_mgr_init()
249 mgr->avail = mgr->amount = amount; in rsc_mgr_init()
293 mgr->avail = mgr->amount = 0; in rsc_mgr_uninit()
Dctresource.h59 unsigned int amount; /* The total amount of a kind of resource */ member
68 unsigned int amount, struct hw *hw);
/linux-4.4.14/drivers/scsi/
DBusLogic.h1241 unsigned int amount) in blogic_addcount() argument
1243 bytecount->units += amount; in blogic_addcount()
1255 unsigned int amount) in blogic_incszbucket() argument
1258 if (amount < 8 * 1024) { in blogic_incszbucket()
1259 if (amount < 2 * 1024) in blogic_incszbucket()
1260 index = (amount < 1 * 1024 ? 0 : 1); in blogic_incszbucket()
1262 index = (amount < 4 * 1024 ? 2 : 3); in blogic_incszbucket()
1263 } else if (amount < 128 * 1024) { in blogic_incszbucket()
1264 if (amount < 32 * 1024) in blogic_incszbucket()
1265 index = (amount < 16 * 1024 ? 4 : 5); in blogic_incszbucket()
[all …]
Dfdomain.c579 static void do_pause(unsigned amount) /* Pause for amount*10 milliseconds */ in do_pause() argument
581 mdelay(10*amount); in do_pause()
D53c700.scr35 ; necessary amount of data and jumps to the next SG segment. The final
/linux-4.4.14/drivers/pci/hotplug/
Dibmphp_pci.c1097 struct res_needed *amount; in scan_behind_bridge() local
1099 amount = kzalloc(sizeof(*amount), GFP_KERNEL); in scan_behind_bridge()
1100 if (amount == NULL) in scan_behind_bridge()
1108 amount->devices[device] = 0; in scan_behind_bridge()
1124 amount->not_correct = 1; in scan_behind_bridge()
1125 return amount; in scan_behind_bridge()
1131 amount->not_correct = 1; in scan_behind_bridge()
1132 return amount; in scan_behind_bridge()
1135 amount->not_correct = 1; in scan_behind_bridge()
1136 return amount; in scan_behind_bridge()
[all …]
/linux-4.4.14/drivers/usb/gadget/function/
Df_mass_storage.c648 unsigned int amount; in do_read() local
688 amount = min(amount_left, FSG_BUFLEN); in do_read()
689 amount = min((loff_t)amount, in do_read()
704 if (amount == 0) { in do_read()
719 amount, &file_offset_tmp); in do_read()
720 VLDBG(curlun, "file read %u @ %llu -> %d\n", amount, in do_read()
728 } else if (nread < amount) { in do_read()
730 (int)nread, amount); in do_read()
746 if (nread < amount) { in do_read()
779 unsigned int amount; in do_write() local
[all …]
/linux-4.4.14/arch/mips/mti-malta/
Dmalta-time.c61 static unsigned int freqround(unsigned int freq, unsigned int amount) in freqround() argument
63 freq += amount; in freqround()
64 freq -= freq % (amount*2); in freqround()
/linux-4.4.14/Documentation/hwmon/
Dfam15h_power26 * BasePwrWatts: Specifies in watts the maximum amount of power
28 * ProcessorPwrWatts: Specifies in watts the maximum amount of power
30 * CurrPwrWatts: Specifies in watts the current amount of power being
/linux-4.4.14/Documentation/vm/
Dovercommit-accounting17 configurable amount (default is 50%) of physical RAM.
18 Depending on the amount you use, in most situations
29 The overcommit amount can be set via `vm.overcommit_ratio' (percentage)
32 The current overcommit limit and amount committed are viewable in
Dremap_file_pages.txt8 Supporting of nonlinear mapping requires significant amount of non-trivial
Dactive_mm.txt27 some amount of time they are not going to be interested in user space,
Dfrontswap.txt80 provides a huge amount of flexibility for more dynamic, flexible RAM
98 server configured with a large amount of RAM... without pre-configuring
215 the write of some pages for a significant amount of time. Synchrony is
Didle_page_tracking.txt40 That said, in order to estimate the amount of pages that are not used by a
Dpagemap.txt168 For example, to find the "unique set size" (USS), which is the amount of
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-scsi_tape16 Shows the total amount of time spent waiting for all I/O
23 To determine the amount of time spent waiting for other I/O
64 Shows the total amount of time in nanoseconds waiting for
95 Shows the total amount of time in nanoseconds waiting for
Dpstore37 The 'kmsg_bytes' mount option changes the target amount of
40 persistent storage until at least this amount is reached.
Ddebugfs-ec8 Knowing the EC GPE one can watch the amount of HW events related to
Dsysfs-block-zram119 The mem_used_total file is read-only and specifies the amount
130 The mem_used_max file is read/write and specifies the amount
141 amount of memory ZRAM can use to store the compressed data. The
Ddev-kmsg45 sequence numbers allow to calculate the amount of lost
Dsysfs-power179 the amount of memory reserved for allocations made by device
182 will be used as the amount of memory to reserve for allocations
Dsysfs-block-bcache149 For a cache, total amount of data in human readable units
/linux-4.4.14/net/bluetooth/
Daf_bluetooth.c454 long amount; in bt_sock_ioctl() local
464 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in bt_sock_ioctl()
465 if (amount < 0) in bt_sock_ioctl()
466 amount = 0; in bt_sock_ioctl()
467 err = put_user(amount, (int __user *) arg); in bt_sock_ioctl()
476 amount = skb ? skb->len : 0; in bt_sock_ioctl()
478 err = put_user(amount, (int __user *) arg); in bt_sock_ioctl()
/linux-4.4.14/Documentation/devicetree/
Ddynamic-resolution-notes.txt18 2. Adjust all the local phandles of the tree to resolve by that amount.
20 by the same amount.
/linux-4.4.14/drivers/gpu/drm/ttm/
Dttm_memory.c452 uint64_t amount) in ttm_mem_global_free_zone() argument
462 zone->used_mem -= amount; in ttm_mem_global_free_zone()
468 uint64_t amount) in ttm_mem_global_free() argument
470 return ttm_mem_global_free_zone(glob, NULL, amount); in ttm_mem_global_free()
476 uint64_t amount, bool reserve) in ttm_mem_global_reserve() argument
501 zone->used_mem += amount; in ttm_mem_global_reserve()
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Datombios_crtc.c292 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); in amdgpu_atombios_crtc_program_ss()
789 u32 amount = (((fb_div * 10) + frac_fb_div) * in amdgpu_atombios_crtc_set_pll() local
792 amdgpu_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK; in amdgpu_atombios_crtc_set_pll()
793 amdgpu_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) & in amdgpu_atombios_crtc_set_pll()
796 step_size = (4 * amount * ref_div * ((u32)amdgpu_crtc->ss.rate * 2048)) / in amdgpu_atombios_crtc_set_pll()
799 step_size = (2 * amount * ref_div * ((u32)amdgpu_crtc->ss.rate * 2048)) / in amdgpu_atombios_crtc_set_pll()
Damdgpu_mode.h364 uint16_t amount; member
/linux-4.4.14/fs/gfs2/
Ddir.c188 unsigned int amount; in gfs2_dir_write_data() local
191 amount = size - copied; in gfs2_dir_write_data()
192 if (amount > sdp->sd_sb.sb_bsize - o) in gfs2_dir_write_data()
193 amount = sdp->sd_sb.sb_bsize - o; in gfs2_dir_write_data()
206 if (amount == sdp->sd_jbsize || new) in gfs2_dir_write_data()
215 memcpy(bh->b_data + o, buf, amount); in gfs2_dir_write_data()
218 buf += amount; in gfs2_dir_write_data()
219 copied += amount; in gfs2_dir_write_data()
291 unsigned int amount; in gfs2_dir_read_data() local
295 amount = size - copied; in gfs2_dir_read_data()
[all …]
Dxattr.c467 unsigned int amount = GFS2_EA_DATA_LEN(ea); in gfs2_iter_unstuffed() local
468 unsigned int nptrs = DIV_ROUND_UP(amount, sdp->sd_jbsize); in gfs2_iter_unstuffed()
505 cp_size = (sdp->sd_jbsize > amount) ? amount : sdp->sd_jbsize; in gfs2_iter_unstuffed()
518 amount -= sdp->sd_jbsize; in gfs2_iter_unstuffed()
1245 unsigned int amount = GFS2_EA_DATA_LEN(ea); in ea_acl_chmod_unstuffed() local
1246 unsigned int nptrs = DIV_ROUND_UP(amount, sdp->sd_jbsize); in ea_acl_chmod_unstuffed()
/linux-4.4.14/net/ax25/
Daf_ax25.c1690 long amount; in ax25_ioctl() local
1692 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in ax25_ioctl()
1693 if (amount < 0) in ax25_ioctl()
1694 amount = 0; in ax25_ioctl()
1695 res = put_user(amount, (int __user *)argp); in ax25_ioctl()
1701 long amount = 0L; in ax25_ioctl() local
1704 amount = skb->len; in ax25_ioctl()
1705 res = put_user(amount, (int __user *) argp); in ax25_ioctl()
1730 long amount; in ax25_ioctl() local
1735 if (get_user(amount, (long __user *)argp)) { in ax25_ioctl()
[all …]
/linux-4.4.14/Documentation/device-mapper/
Dzero.txt12 than the amount of actual storage space available for that device. A user can
27 the COW device. The size of the COW device will determine the amount of real
Dcache.txt68 block sizes are bad because they increase the amount of metadata (both
115 The user can set a throttle to prevent more than a certain amount of
Dsnapshot.txt41 the amount of free space and expand the <COW device> before it fills up.
/linux-4.4.14/Documentation/locking/
Dlocktorture.txt15 acquire the lock and hold it for specific amount of time, thus simulating
16 different critical region behaviors. The amount of contention on the lock
33 ownership (readers). The default is the same amount of writer
35 both readers and writers be the amount of online CPUs.
/linux-4.4.14/fs/fscache/
DKconfig21 The gathering of statistics adds a certain amount of overhead to
38 The generation of this histogram adds a certain amount of overhead to
/linux-4.4.14/drivers/usb/misc/
Dadutux.c383 int amount = bytes_to_read < data_in_secondary ? bytes_to_read : data_in_secondary; in adu_read() local
384 i = copy_to_user(buffer, dev->read_buffer_secondary+dev->secondary_head, amount); in adu_read()
389 dev->secondary_head += (amount - i); in adu_read()
390 bytes_read += (amount - i); in adu_read()
391 bytes_to_read -= (amount - i); in adu_read()
/linux-4.4.14/net/netrom/
Daf_netrom.c1199 long amount; in nr_ioctl() local
1202 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in nr_ioctl()
1203 if (amount < 0) in nr_ioctl()
1204 amount = 0; in nr_ioctl()
1206 return put_user(amount, (int __user *)argp); in nr_ioctl()
1211 long amount = 0L; in nr_ioctl() local
1216 amount = skb->len; in nr_ioctl()
1218 return put_user(amount, (int __user *)argp); in nr_ioctl()
/linux-4.4.14/arch/m68k/hp300/
DREADME.hp3006 Currently only 9000/340 machines have been tested. Any amount of RAM should
/linux-4.4.14/Documentation/ABI/obsolete/
Dsysfs-block-zram88 The mem_used_total file is read-only and specifies the amount
100 The mem_used_max file is read/write and specifies the amount
114 amount of memory ZRAM can use to store the compressed data.
/linux-4.4.14/Documentation/devicetree/bindings/
Dipmi.txt13 - reg-shift - The amount to shift the registers to the right to get the data
/linux-4.4.14/include/drm/ttm/
Dttm_memory.h151 uint64_t amount);
/linux-4.4.14/arch/nios2/
DKconfig.debug12 Enables the display of the minimum amount of free stack which each
DKconfig143 This can be useful if you are on a board which has a small amount of
/linux-4.4.14/net/ieee802154/
Dsocket.c541 int amount = sk_wmem_alloc_get(sk); in dgram_ioctl() local
543 return put_user(amount, (int __user *)arg); in dgram_ioctl()
549 unsigned long amount; in dgram_ioctl() local
551 amount = 0; in dgram_ioctl()
559 amount = skb->len - ieee802154_hdr_length(skb); in dgram_ioctl()
562 return put_user(amount, (int __user *)arg); in dgram_ioctl()
/linux-4.4.14/net/rose/
Daf_rose.c1284 long amount; in rose_ioctl() local
1286 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in rose_ioctl()
1287 if (amount < 0) in rose_ioctl()
1288 amount = 0; in rose_ioctl()
1289 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl()
1294 long amount = 0L; in rose_ioctl() local
1297 amount = skb->len; in rose_ioctl()
1298 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl()
/linux-4.4.14/Documentation/sysctl/
Dvm.txt67 The amount of free memory in the system that should be reserved for users
122 Contains the amount of dirty memory at which the background kernel
144 Contains the amount of dirty memory at which a process generating disk writes
211 objects, it may cost a significant amount of I/O and CPU to recreate the
296 a certain amount of lowmem is defended from the possibility of being
432 Some minimal amount of memory is needed to satisfy PF_MEMALLOC
477 This file indicates the amount of address space which a user process will
560 the amount of local memory is big enough.
596 selects a rogue memory-hogging task that frees up a large amount of
613 permitted to exceed swap plus this amount of physical RAM. See below.
[all …]
Dnet.txt216 The amount of time we keep an ARP entry before expiring it. Used to age out
222 The amount of time we will spend trying to resolve an Appletalk address.
/linux-4.4.14/include/sound/
Dsoundfont.h126 int snd_sf_linear_to_log(unsigned int amount, int offset, int ratio);
/linux-4.4.14/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-adc-ad7280a8 enable for the programmed amount of time, before it
/linux-4.4.14/net/x25/
Daf_x25.c1365 int amount; in x25_ioctl() local
1367 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in x25_ioctl()
1368 if (amount < 0) in x25_ioctl()
1369 amount = 0; in x25_ioctl()
1370 rc = put_user(amount, (unsigned int __user *)argp); in x25_ioctl()
1376 int amount = 0; in x25_ioctl() local
1383 amount = skb->len; in x25_ioctl()
1385 rc = put_user(amount, (unsigned int __user *)argp); in x25_ioctl()
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dinput-reset.txt5 sysrq driver. Upon holding the keys for a specified amount of time (if
/linux-4.4.14/Documentation/devicetree/bindings/watchdog/
Dsamsung-wdt.txt4 after a preset amount of time during which the WDT reset event has not
/linux-4.4.14/Documentation/fb/
Dintelfb.txt35 select amount of system RAM in MB to allocate for the video memory
46 for the least amount). Note, an arbitrary setting may conflict
Dmodedb.txt11 - one generic video mode database with a fair amount of standard videomodes
97 where: pix = total amount of pixels in MB (xres x yres)
Dintel810.txt82 select amount of system RAM in MB to allocate for the video memory
123 (0 for maximum usage, 31/63 MB for the least amount). Note, an
Dpxafb.txt79 'struct fb_var_screeninfo', the amount is decided by:
Dvesafb.txt171 amount of video RAM, use this option to override the BIOS (in MiB).
Duvesafb.txt98 amount of video RAM, use this option to override the BIOS (in MiB).
/linux-4.4.14/Documentation/isdn/
DREADME.fax31 - full support on amount of B-channels
DREADME.diversion69 for a certain amount of time to let an external program or client decide
119 specify during a certain amount of time (normally 4 to 10 seconds) what
/linux-4.4.14/sound/synth/emux/
Dsoundfont.c798 snd_sf_linear_to_log(unsigned int amount, int offset, int ratio) in snd_sf_linear_to_log() argument
803 if (amount < 2) in snd_sf_linear_to_log()
805 for (bit = 0; ! (amount & 0x80000000L); bit++) in snd_sf_linear_to_log()
806 amount <<= 1; in snd_sf_linear_to_log()
807 s = (amount >> 24) & 0x7f; in snd_sf_linear_to_log()
808 low = (amount >> 16) & 0xff; in snd_sf_linear_to_log()
/linux-4.4.14/drivers/pinctrl/intel/
DKconfig13 so only a small amount is available for gpio use.
/linux-4.4.14/Documentation/w1/slaves/
Dw1_ds28e0422 A read operation on the "eeprom" file reads the given amount of bytes
/linux-4.4.14/net/unix/
Daf_unix.c2580 long amount = 0; in unix_inq_len() local
2589 amount += unix_skb_len(skb); in unix_inq_len()
2593 amount = skb->len; in unix_inq_len()
2597 return amount; in unix_inq_len()
2610 long amount = 0; in unix_ioctl() local
2615 amount = unix_outq_len(sk); in unix_ioctl()
2616 err = put_user(amount, (int __user *)arg); in unix_ioctl()
2619 amount = unix_inq_len(sk); in unix_ioctl()
2620 if (amount < 0) in unix_ioctl()
2621 err = amount; in unix_ioctl()
[all …]
/linux-4.4.14/arch/microblaze/
DKconfig166 have a large amount of physical memory and/or IO, not all of the
176 This option allows you to set the maximum amount of memory which
219 This option allows you to set the amount of virtual address space
/linux-4.4.14/net/appletalk/
Dddp.c1791 long amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in atalk_ioctl() local
1793 if (amount < 0) in atalk_ioctl()
1794 amount = 0; in atalk_ioctl()
1795 rc = put_user(amount, (int __user *)argp); in atalk_ioctl()
1804 long amount = 0; in atalk_ioctl() local
1807 amount = skb->len - sizeof(struct ddpehdr); in atalk_ioctl()
1808 rc = put_user(amount, (int __user *)argp); in atalk_ioctl()
/linux-4.4.14/fs/cachefiles/
DKconfig32 The generation of this histogram adds a certain amount of overhead to
/linux-4.4.14/drivers/video/console/
DKconfig37 If you want this feature, say 'Y' here and enter the amount of
46 Enter the amount of System RAM to allocate for the scrollback
/linux-4.4.14/net/ipv4/
Draw.c876 int amount = sk_wmem_alloc_get(sk); in raw_ioctl() local
878 return put_user(amount, (int __user *)arg); in raw_ioctl()
882 int amount = 0; in raw_ioctl() local
887 amount = skb->len; in raw_ioctl()
889 return put_user(amount, (int __user *)arg); in raw_ioctl()
Dudp.c1235 int amount = sk_wmem_alloc_get(sk); in udp_ioctl() local
1237 return put_user(amount, (int __user *)arg); in udp_ioctl()
1242 unsigned int amount = first_packet_length(sk); in udp_ioctl() local
1244 if (amount) in udp_ioctl()
1250 amount -= sizeof(struct udphdr); in udp_ioctl()
1252 return put_user(amount, (int __user *)arg); in udp_ioctl()
/linux-4.4.14/drivers/gpu/drm/radeon/
Datombios_crtc.c491 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); in atombios_crtc_program_ss()
510 args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); in atombios_crtc_program_ss()
1115 u32 amount = (((fb_div * 10) + frac_fb_div) * in atombios_crtc_set_pll() local
1118 radeon_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK; in atombios_crtc_set_pll()
1119 radeon_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) & in atombios_crtc_set_pll()
1122 step_size = (4 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) / in atombios_crtc_set_pll()
1125 step_size = (2 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) / in atombios_crtc_set_pll()
/linux-4.4.14/net/irda/
Daf_irda.c1810 long amount; in irda_ioctl() local
1812 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in irda_ioctl()
1813 if (amount < 0) in irda_ioctl()
1814 amount = 0; in irda_ioctl()
1815 err = put_user(amount, (unsigned int __user *)arg); in irda_ioctl()
1821 long amount = 0L; in irda_ioctl() local
1824 amount = skb->len; in irda_ioctl()
1825 err = put_user(amount, (unsigned int __user *)arg); in irda_ioctl()
/linux-4.4.14/drivers/ras/
DKconfig16 time, i.e. the amount of time a device is actually operating as the
/linux-4.4.14/Documentation/input/
Diforce-protocol.txt227 Each device has a certain amount of memory to store parameters of effects.
228 The amount of RAM may vary, I encountered values from 200 to 1000 bytes. Below
229 is the amount of memory apparently needed for every set of parameters:
Dgameport-programming.txt92 experimentation, it is the amount of noise in the ADC data. Perfect
140 represents the amount of noise in the data. See section 3.
Delantech.txt274 ds3..ds0 = scroll wheel amount and direction
294 ds7..ds0 = vertical scroll amount and direction
/linux-4.4.14/fs/squashfs/
DKconfig118 achieved and the amount of CPU time and memory necessary to
204 the filesystem. Increasing this amount may mean SquashFS
206 of extra system memory. Decreasing this amount will mean
/linux-4.4.14/arch/powerpc/lib/
Ddiv64.S35 srw r10,r10,r0 # the divisor right the same amount,
/linux-4.4.14/Documentation/scheduler/
Dsched-bwc.txt19 transferred to cpu-local "silos" on a demand basis. The amount transferred
55 on large systems. The amount transferred each time such an update is required
Dsched-design-CFS.txt60 runqueue. The total amount of work done by the system is tracked using
73 amount of time.
80 small amount of "granularity" distance relative to the leftmost task so that we
Dsched-deadline.txt93 - When a SCHED_DEADLINE task executes for an amount of time t, its
140 arrival time r_j (the time when the job starts), an amount of computation
203 computing the total amount of CPU time h(t) needed by all the tasks to
206 the amount of time needed by the tasks in a time interval of size t is
397 Specifying a periodic/sporadic task that executes for a given amount of
Dsched-rt-group.txt43 the amount of bandwidth (eg. CPU time) being constant. In order to schedule
/linux-4.4.14/net/ipx/
Daf_ipx.c1838 long amount = 0; in ipx_ioctl() local
1845 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in ipx_ioctl()
1846 if (amount < 0) in ipx_ioctl()
1847 amount = 0; in ipx_ioctl()
1848 rc = put_user(amount, (int __user *)argp); in ipx_ioctl()
1855 amount = skb->len - sizeof(struct ipxhdr); in ipx_ioctl()
1856 rc = put_user(amount, (int __user *)argp); in ipx_ioctl()
/linux-4.4.14/net/decnet/
Daf_decnet.c1228 long amount = 0; in dn_ioctl() local
1247 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in dn_ioctl()
1248 if (amount < 0) in dn_ioctl()
1249 amount = 0; in dn_ioctl()
1250 err = put_user(amount, (int __user *)arg); in dn_ioctl()
1257 amount = skb->len; in dn_ioctl()
1260 amount += skb->len; in dn_ioctl()
1263 err = put_user(amount, (int __user *)arg); in dn_ioctl()
/linux-4.4.14/Documentation/networking/
Drxrpc.txt182 (*) Each connection is retained for a certain amount of time [tunable] after
186 (*) Each internal UDP socket is retained [tunable] for a certain amount of
746 other than MSG_MORE. len is the total amount of data to transmit.
880 The amount of time in milliseconds after receiving a packet with the
890 The amount of time in milliseconds after receiving a new packet before we
895 The amount of time in milliseconds after all the packets currently in the
902 The amount of time in milliseconds after transmitting a packet before we
908 The maximum amount of time in seconds that a call may be in progress
913 The amount of time in seconds before we remove a dead call from the call
919 The amount of time in seconds after a connection was last used before we
[all …]
De1000e.txt53 The driver can limit the amount of interrupts per second that the adapter
55 adapter that is based on the maximum amount of interrupts that the adapter
154 packet is received within the set amount of time. Proper tuning,
177 packet is sent on the wire within the set amount of time. Proper tuning,
Ddriver.txt67 up the SKB and in some finite amount of time.
DREADME.ipw2100103 on the amount of validation and interoperability testing that has been
244 in the form of xxxx/yyyy (z) where xxxx is the timeout interval (amount of
245 time after packet processing), yyyy is the period to sleep (amount of time to
De1000.txt85 The driver can limit the amount of interrupts per second that the adapter
87 adapter that is based on the maximum amount of interrupts that the adapter
216 packet is received within the set amount of time. Proper tuning,
296 packet is sent on the wire within the set amount of time. Proper tuning,
Dip-sysctl.txt210 total amount of sent packets. This is done if at least one prior
240 for triggering fast retransmit when the amount of outstanding data is
377 pressure: when amount of memory allocated by TCP exceeds this number
384 Defaults are calculated at boot time from amount of available
652 max: Maximal amount of memory allowed for automatically tuned
660 A TCP socket can control the amount of unsent bytes in its write queue,
662 reports POLLOUT events if the amount of unsent bytes is below a per
666 This global variable controls the amount of unsent data for
707 result in a large amount of packets queued in qdisc/device
725 memory appetite. When amount of memory allocated by UDP exceeds
[all …]
Dixgb.txt238 # set maximum amount of option memory buffers, default 10240
266 will increase the amount of memory used by the network stack for receives, and
385 by changing the amount of available memory for receive buffer allocation, by
DREADME.ipw2200126 on the amount of validation and interoperability testing that has been
166 If using a debug build, this is used to control the amount of debug
/linux-4.4.14/arch/mn10300/lib/
Dmemset.S91 # check we set the correct amount
Dmemcpy.S104 # check we copied the correct amount
Dmemmove.S127 # check we copied the correct amount
/linux-4.4.14/net/ipv6/
Draw.c1132 int amount = sk_wmem_alloc_get(sk); in rawv6_ioctl() local
1134 return put_user(amount, (int __user *)arg); in rawv6_ioctl()
1138 int amount = 0; in rawv6_ioctl() local
1143 amount = skb_tail_pointer(skb) - in rawv6_ioctl()
1146 return put_user(amount, (int __user *)arg); in rawv6_ioctl()
/linux-4.4.14/Documentation/
Dcircular-buffers.txt54 allowing an infinite amount of data to flow through the buffer.
84 This returns the amount of space left in the buffer[1] into which items
92 This returns the amount of consecutive space left in the buffer[1] into
Dmemory-hotplug.txt42 Memory Hotplug allows users to increase/decrease the amount of memory.
45 (A) For changing the amount of memory.
277 After this, memory block XXX's state will be 'online' and the amount of
311 Assume the system has "TOTAL" amount of memory at boot time, this boot option
350 does some amount of retry with 120 seconds timeout.
Dlockup-watchdogs.txt30 to cause the system to reboot automatically after a specified amount
Dntb.txt8 of the device, so that peers can exchange a small amount of information at a
Dkernel-parameters.txt472 Change the amount of debugging information output
778 a memory unit (amount[KMG]). See also
792 that require some amount of low memory, e.g. swiotlb
843 amount of memory for normal system use. The maximum
1696 specifies the amount of memory usable by the kernel
1697 for non-movable allocations. The requested amount is
2032 mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory
2173 amount of memory used for migratable allocations.
2178 that the amount of memory usable for all allocations
2365 [NET] Specifies amount of time (in seconds) that
[all …]
Dkref.txt300 substantial amount of time.
/linux-4.4.14/Documentation/blockdev/
Dzram.txt177 mem_used_total RO the amount of memory allocated for this disk
178 mem_used_max RW the maximum amount of memory zram have consumed to
181 mem_limit RW the maximum amount of memory ZRAM can use to store
Dcciss.txt156 certain amount of time (which can vary depending on the command).
/linux-4.4.14/drivers/watchdog/
DKconfig616 it does, it reboots your computer after a certain amount of time.
686 a certain amount of time.
699 amount of time.
741 it does, it reboots your computer after a certain amount of time.
875 amount of time.
939 amount of time.
1008 and if it does, it reboots your computer after a certain amount of
1044 amount of time.
1088 amount of time.
1102 and if it does, it reboots your computer after a certain amount of
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/
Dbrcm,iproc-touchscreen.txt14 - settling_timeout: The settling duration (in ms) is the amount of time
Dti-tsc-adc.txt42 hardware knob for adjusting the amount of "settling
/linux-4.4.14/fs/jffs2/
DTODO3 let each outstanding write reserve the _maximum_ amount of physical
DKconfig19 This controls the amount of debugging messages produced by the JFFS2
/linux-4.4.14/Documentation/cgroups/
Dblkio-controller.txt211 - Total amount of time between request dispatch and request completion
225 - Total amount of time the IOs for this cgroup spent waiting in the
257 This is the amount of time the cgroup had to wait since it became busy
260 cumulative total of the amount of time spent by each IO in that cgroup
268 This is the amount of time a cgroup spends without any pending
277 This is the amount of time spent by the IO scheduler idling for a
Dmemory.txt27 amount of memory.
28 b. Create a cgroup with a limited amount of memory; this can be used
30 c. Virtualization solutions can control the amount of memory they want
32 d. A CD/DVD burner could control the amount of memory used by the
108 amount. If a task requires a lot of CPU processing, the task can spread
190 Note: we just account pages-on-LRU because our purpose is to control amount
279 the amount of kernel memory used by the system. Kernel memory is fundamentally
337 deployments where the total amount of memory per-cgroup is overcommited.
534 amount of physical memory used by the cgroup.
Dmemcg_test.txt133 Historically, memcg's shmem handling was poor and we saw some amount
250 run some programs which uses some amount of memory in /cgroup/A.
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/
Dptlrpc_internal.h90 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount);
Dlproc_ptlrpc.c1125 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount) in ptlrpc_lprocfs_rpc_sent() argument
1136 lprocfs_counter_add(svc_stats, opc + EXTRA_MAX_OPCODES, amount); in ptlrpc_lprocfs_rpc_sent()
/linux-4.4.14/drivers/virtio/
DKconfig46 This driver supports increasing and decreasing the amount
/linux-4.4.14/arch/arm/lib/
Dlib1funcs.S64 @ four bits, since this is the amount of unwinding in the main
151 @ four bits, since this is the amount of unwinding in the main
/linux-4.4.14/Documentation/filesystems/
Dxfs-delayed-logging-design.txt11 logged. The reason for these differences is to reduce the amount of log space
15 amount of metadata logged low is of prime importance.
103 log would greatly reduce the amount of metadata we write to the log, and this
123 journalling subsystem is that it disassociates the amount of outstanding
126 written to the log at any point in time, there may be a much greater amount
147 1. Reduce the amount of metadata written to the log by at least
482 amount of log space required as we add items to the commit item list, but we
519 reservation of around 150KB, which is a non-trivial amount of space.
535 items in the CIL and using this to dynamically calculate the amount of log
541 maximal amount of log metadata space they require, and such a delta reservation
[all …]
Dquota.txt15 Quota limits (and amount of grace time) are set independently for each
Ddax.txt43 a large amount of memory through a smaller window, then you cannot
Dproc.txt441 (size), the amount of the mapping that is currently resident in RAM (RSS), the
452 "Referenced" indicates the amount of memory currently marked as referenced or
454 "Anonymous" shows the amount of memory that does not belong to any file. Even
893 SwapTotal: total amount of swap space available
904 PageTables: amount of memory dedicated to the lowest level of page
911 this is the total amount of memory currently available to
923 Committed_AS: The amount of memory presently allocated on the system.
937 VmallocUsed: amount of vmalloc area which is used
1171 the used IRQ and the IO address range. The amount of information shown is
1291 lines. These numbers identify the amount of time the CPU has spent performing
[all …]
Dlogfs.txt26 constant updates, like the amount of free space, etc.
157 on the least amount of valid data contained in the segment. All
Dext2.txt89 and minimise the amount of head seeking when reading a large amount
112 Because this can consume a considerable amount of space for large
Dceph.txt130 Do not use the dcache as above. This avoids a significant amount of
Dext4.txt276 max_batch_time=usec Maximum amount of time ext4 should wait for
282 huge throughput win, we wait for a small amount
287 amount of time (on average) that it takes to
Dramfs-rootfs-initramfs.txt27 The amount of code required to implement ramfs is tiny, because all the
80 amount of space an empty instance of ramfs takes up is tiny.
/linux-4.4.14/sound/oss/
Dsequencer.c1586 unsigned long amount; in compute_finetune() local
1626 amount = (int) (semitone_tuning[semitones] * multiplier * cent_tuning[cents]) / 10000; in compute_finetune()
1629 return (base_freq * 10000) / amount; /* Bend down */ in compute_finetune()
1631 return (base_freq * amount) / 10000; /* Bend up */ in compute_finetune()
/linux-4.4.14/Documentation/leds/
Dledtrig-oneshot.txt8 specified amount of time.
Dleds-class.txt37 and the aim is to keep a small amount of code giving as much functionality
/linux-4.4.14/drivers/gpu/drm/nouveau/
Dnouveau_bo.c900 u32 amount, stride, height; in nv50_bo_move_m2mf() local
906 amount = min(length, (u64)(4 * 1024 * 1024)); in nv50_bo_move_m2mf()
908 height = amount / stride; in nv50_bo_move_m2mf()
952 length -= amount; in nv50_bo_move_m2mf()
953 src_offset += amount; in nv50_bo_move_m2mf()
954 dst_offset += amount; in nv50_bo_move_m2mf()
/linux-4.4.14/arch/frv/kernel/
Dhead-mmu-fr451.S48 # GR15 - amount to shift address by to match SDRAM addr reg
65 setlos.p #0,gr15 ; amount to shift addr reg by
Dhead-uc-fr401.S47 # GR15 - amount to shift address by to match SDRAM addr reg
64 setlos.p #0,gr15 ; amount to shift addr reg by
Dhead-uc-fr555.S46 # GR15 - amount to shift address by to match SDRAM addr reg
63 setlos #20,gr15 ; amount to shift addr by
/linux-4.4.14/Documentation/ABI/stable/
Dsysfs-class-ubi39 create a new UBI volume which has this amount of logical
158 The amount of data this volume contains. This value makes sense
Dsysfs-driver-ib_srp48 amount of data that can be transferred between initiator and
/linux-4.4.14/drivers/net/wireless/brcm80211/
DKconfig78 issues. This option adds a small amount of overhead when tracing
/linux-4.4.14/Documentation/thermal/
Dintel_powerclamp.txt147 b) determine the amount of compensation needed at each target ratio
156 When an excessive amount of wakeups occurs during idle, an
250 More compensation is needed on Westmere for the same amount of
/linux-4.4.14/arch/metag/
DKconfig84 have a large amount of physical memory and/or IO, not all of the
89 vmalloc space and actual amount of RAM, you may not need this
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Ddwc3.txt28 amount of 8B10B errors occur.
/linux-4.4.14/arch/alpha/lib/
Dev6-copy_user.S66 ble $1, $onebyteloop # .. .. U .. : 1st branch : small amount of data
/linux-4.4.14/arch/powerpc/boot/
Ddiv64.S35 srw r10,r10,r0 # the divisor right the same amount,
/linux-4.4.14/net/dccp/
Dproto.c371 unsigned long amount = 0; in dccp_ioctl() local
379 amount = skb->len; in dccp_ioctl()
381 rc = put_user(amount, (int __user *)arg); in dccp_ioctl()
/linux-4.4.14/Documentation/x86/x86_64/
Dfake-numa-for-cpusets8 amount of system memory that are available to a certain class of tasks.
/linux-4.4.14/Documentation/infiniband/
Duser_verbs.txt49 amount of memory pinned in the process's locked_vm, and checks that
/linux-4.4.14/Documentation/misc-devices/
Dbh1770glc.txt25 amount of reflected IR light and produces proximity result. Resolution is
/linux-4.4.14/arch/x86/crypto/
Dcrc32c-pcl-intel-asm_64.S109 and $7, bufp # calculate the unalignment amount of
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dlprocfs_status.h503 void lprocfs_counter_add(struct lprocfs_stats *stats, int idx, long amount);
504 void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx, long amount);
/linux-4.4.14/Documentation/filesystems/caching/
Dcachefiles.txt198 If the amount of free space and the number of available files in the cache
204 If the amount of available space or the number of available files in the
210 If the amount of available space or the number of available files in the
464 This shows the breakdown of the number of times each amount of time
/linux-4.4.14/fs/reiserfs/
DKconfig51 increases the amount of kernel memory required for each mount.
/linux-4.4.14/tools/perf/Documentation/
Dperf-bench.txt21 Specify amount of times to repeat the run (default 10).
Dperf-stat.txt148 useful to gauge the amount of aggregation.
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-mt65xx.txt15 binding is used, the amount of cells must be specified as 2. See the below
Drockchip,pinctrl.txt47 binding is used, the amount of cells must be specified as 2. See generic
/linux-4.4.14/Documentation/watchdog/
Dhpwdt.txt45 each time the NMI signal fires off. This could amount to several thousands of
/linux-4.4.14/Documentation/w1/masters/
Dds249041 removed it can produce a good amount of error output before the bus
/linux-4.4.14/Documentation/cpu-freq/
Dcpufreq-stats.txt53 This gives the amount of time spent in each of the frequencies supported by
/linux-4.4.14/Documentation/power/
Duserland-swsusp.txt63 SNAPSHOT_AVAIL_SWAP_SIZE - return the amount of available swap in bytes (the
129 data, metadata and header MUST be written in _exactly_ the same amount, form
/linux-4.4.14/arch/xtensa/lib/
Dmemcopy.S212 ssa8 a3 # set shift amount from byte offset
488 ssa8 a3 # set shift amount from byte offset
Dusercopy.S92 SSA8( a3) # set shift amount from byte offset
/linux-4.4.14/Documentation/i2c/
Dsmbus-protocol156 designated register that is specified through the Comm byte. The amount
170 Comm byte. The amount of data is specified in the Count byte.
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt125 amount of work if your battery fails while you're in laptop mode.
239 # amount of work if your battery fails you while in laptop mode.
266 # amount of dirty memory to dirty_background_ratio. Set this nice and low,
354 # amount of work if your battery fails you while in laptop mode.
388 # amount of dirty memory to dirty_background_ratio. Set this nice and low,
/linux-4.4.14/Documentation/ABI/
DREADME67 documented amount of time has gone by.
/linux-4.4.14/tools/lguest/
Dlguest.txt77 64: the amount of memory to use, in MB.
/linux-4.4.14/fs/btrfs/
Ddev-replace.c917 void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount) in btrfs_bio_counter_sub() argument
919 percpu_counter_sub(&fs_info->bio_counter, amount); in btrfs_bio_counter_sub()
/linux-4.4.14/drivers/usb/core/
Ddevio.c127 static int usbfs_increase_memory_usage(unsigned amount) in usbfs_increase_memory_usage() argument
141 atomic_add(amount, &usbfs_memory_usage); in usbfs_increase_memory_usage()
144 atomic_sub(amount, &usbfs_memory_usage); in usbfs_increase_memory_usage()
149 static void usbfs_decrease_memory_usage(unsigned amount) in usbfs_decrease_memory_usage() argument
151 atomic_sub(amount, &usbfs_memory_usage); in usbfs_decrease_memory_usage()
/linux-4.4.14/arch/powerpc/
DKconfig.debug44 the amount of time spent in hypervisor calls. Wall time spent in
50 This option will add a small amount of overhead to all hypervisor
/linux-4.4.14/arch/arm/boot/dts/
Darmada-xp-gp.dts74 * 8 GB of plug-in RAM modules by default.The amount
Darmada-370.dtsi353 * Reserve some amount of the crypto SRAM to put the
/linux-4.4.14/Documentation/i2c/busses/
Di2c-parport82 The ADM1032 evaluation board uses D4-D7. Beware that the amount of
/linux-4.4.14/Documentation/block/
Dqueue-sysfs.txt97 this amount, since it applies only to reads or writes (not the accumulated
Dcfq-iosched.txt42 The distance is the amount of space from the current head location to the
125 executed for a certain amount of time(time_slice) before switching to another
/linux-4.4.14/arch/sh/lib64/
Dcopy_user_memcpy.S31 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
Dmemcpy.S33 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
/linux-4.4.14/drivers/pinctrl/
DKconfig90 functionality by firmware,so only a small amount is available
/linux-4.4.14/Documentation/development-process/
D5.Posting57 The preparation of patches for posting can be a surprising amount of work,
70 against these other trees can require a significant amount of work
245 embodiment of a fair amount of thought about what kernel patches should
/linux-4.4.14/arch/tile/
DKconfig250 Linux can use the full amount of RAM in the system by
253 amount of physical memory, not all of it can be "permanently
/linux-4.4.14/arch/powerpc/platforms/ps3/
DKconfig99 small amount.
/linux-4.4.14/Documentation/sound/oss/
DREADME.modules83 the machine has been running for any amount of time. The way to avoid this
/linux-4.4.14/Documentation/trace/
Devents-kmem.txt73 amount of writing on struct page.
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
DKconfig117 SAR is the unit of measurement for the amount of radio frequency(RF)
/linux-4.4.14/arch/x86/
DKconfig.debug176 This option allows the user to tune the amount of TLB entries the
387 This debugging adds some small amount of runtime overhead
/linux-4.4.14/Documentation/usb/
Derror-codes.txt130 -EOVERFLOW (*) The amount of data returned by the endpoint was
/linux-4.4.14/Documentation/RCU/
DUP.txt9 work a surprising amount of the time, it is a very bad idea in general.
/linux-4.4.14/Documentation/scsi/
Dlibsas.txt379 4. Read the amount of data you expect to receive for the frame you built.
380 If you receive different amount of data you expected to receive,
Dst.txt175 2. io_ns - The amount of time spent waiting (in nanoseconds) for all I/O
184 6. read_ns - The amount of time (in nanoseconds) spent waiting for read
188 9. write_ns - The amount of time (in nanoseconds) spent waiting for write
191 the residual amount to be non-zero. This should mean that a program
/linux-4.4.14/net/core/
Dsock.c2150 void __sk_mem_reclaim(struct sock *sk, int amount) in __sk_mem_reclaim() argument
2152 amount >>= SK_MEM_QUANTUM_SHIFT; in __sk_mem_reclaim()
2153 sk_memory_allocated_sub(sk, amount); in __sk_mem_reclaim()
2154 sk->sk_forward_alloc -= amount << SK_MEM_QUANTUM_SHIFT; in __sk_mem_reclaim()
/linux-4.4.14/drivers/staging/lustre/
Dsysfs-fs-lustre456 for service behind this obd (or total amount for compound
464 behind this obd (or total amount for compound devices
472 for service behind this obd (or total amount for compound
/linux-4.4.14/Documentation/crypto/
Dapi-intro.txt43 one block while the former can operate on an arbitrary amount of data,
/linux-4.4.14/fs/cramfs/
DREADME104 require the least amount of change: just change `#define
/linux-4.4.14/Documentation/security/
Dkeys.txt185 amount of description and payload space that can be consumed.
542 Unless there's an error, it always returns the amount of data it could
649 On a successful return, the function will always return the amount of data
650 available rather than the amount copied.
777 Unless there's an error, it always returns the amount of data it could
1195 If the amount of data attached to the key differs from the size in
1440 certain amount of time has passed. This time is set as a number of seconds in:
Dkeys-request-key.txt145 instantiated for a short amount of time.
/linux-4.4.14/Documentation/virtual/kvm/
Dppc-pv.txt188 That way we can inject an arbitrary amount of code as replacement for a single
/linux-4.4.14/net/packet/
Daf_packet.c3889 int amount = sk_wmem_alloc_get(sk); in packet_ioctl() local
3891 return put_user(amount, (int __user *)arg); in packet_ioctl()
3896 int amount = 0; in packet_ioctl() local
3901 amount = skb->len; in packet_ioctl()
3903 return put_user(amount, (int __user *)arg); in packet_ioctl()

12