Home
last modified time | relevance | path

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

12

/linux-4.1.27/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.1.27/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.h140 enum bdi_stat_item item, s64 amount) in __add_bdi_stat() argument
142 __percpu_counter_add(&bdi->bdi_stat[item], amount, BDI_STAT_BATCH); in __add_bdi_stat()
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dlprocfs_counters.c47 void lprocfs_counter_add(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_add() argument
83 percpu_cntr->lc_sum_irq += amount; in lprocfs_counter_add()
85 percpu_cntr->lc_sum += amount; in lprocfs_counter_add()
88 percpu_cntr->lc_sumsquare += (__s64)amount * amount; in lprocfs_counter_add()
89 if (amount < percpu_cntr->lc_min) in lprocfs_counter_add()
90 percpu_cntr->lc_min = amount; in lprocfs_counter_add()
91 if (amount > percpu_cntr->lc_max) in lprocfs_counter_add()
92 percpu_cntr->lc_max = amount; in lprocfs_counter_add()
98 void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_sub() argument
133 percpu_cntr->lc_sum_irq -= amount; in lprocfs_counter_sub()
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dnv20.c38 uint32_t amount, off; in nv20_devinit_meminit() local
53 amount = nv_rd32(priv, 0x10020c); in nv20_devinit_meminit()
54 for (off = amount; off > 0x2000000; off -= 0x2000000) in nv20_devinit_meminit()
57 amount = nv_rd32(priv, 0x10020c); in nv20_devinit_meminit()
58 if (amount != fbmem_peek(fb, amount - 4)) in nv20_devinit_meminit()
/linux-4.1.27/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()
DKconfig409 # is ridiculous for the amount of code involved. Until an out-of-tree
436 module load) by a small amount, so you're welcome to play with
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/Documentation/hwmon/
Dfam15h_power24 * BasePwrWatts: Specifies in watts the maximum amount of power
26 * ProcessorPwrWatts: Specifies in watts the maximum amount of power
28 * CurrPwrWatts: Specifies in watts the current amount of power being
/linux-4.1.27/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.1.27/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
Dpagemap.txt151 For example, to find the "unique set size" (USS), which is the amount of
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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()
1242 unsigned int amount = GFS2_EA_DATA_LEN(ea); in ea_acl_chmod_unstuffed() local
1243 unsigned int nptrs = DIV_ROUND_UP(amount, sdp->sd_jbsize); in ea_acl_chmod_unstuffed()
/linux-4.1.27/Documentation/ABI/testing/
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.1.27/net/ax25/
Daf_ax25.c1691 long amount; in ax25_ioctl() local
1693 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in ax25_ioctl()
1694 if (amount < 0) in ax25_ioctl()
1695 amount = 0; in ax25_ioctl()
1696 res = put_user(amount, (int __user *)argp); in ax25_ioctl()
1702 long amount = 0L; in ax25_ioctl() local
1705 amount = skb->len; in ax25_ioctl()
1706 res = put_user(amount, (int __user *) argp); in ax25_ioctl()
1731 long amount; in ax25_ioctl() local
1736 if (get_user(amount, (long __user *)argp)) { in ax25_ioctl()
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/m68k/hp300/
DREADME.hp3006 Currently only 9000/340 machines have been tested. Any amount of RAM should
/linux-4.1.27/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.1.27/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.1.27/include/drm/ttm/
Dttm_memory.h151 uint64_t amount);
/linux-4.1.27/net/ieee802154/
Dsocket.c549 int amount = sk_wmem_alloc_get(sk); in dgram_ioctl() local
551 return put_user(amount, (int __user *)arg); in dgram_ioctl()
557 unsigned long amount; in dgram_ioctl() local
559 amount = 0; in dgram_ioctl()
567 amount = skb->len - ieee802154_hdr_length(skb); in dgram_ioctl()
570 return put_user(amount, (int __user *)arg); in dgram_ioctl()
/linux-4.1.27/net/rose/
Daf_rose.c1283 long amount; in rose_ioctl() local
1285 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in rose_ioctl()
1286 if (amount < 0) in rose_ioctl()
1287 amount = 0; in rose_ioctl()
1288 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl()
1293 long amount = 0L; in rose_ioctl() local
1296 amount = skb->len; in rose_ioctl()
1297 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl()
/linux-4.1.27/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.txt214 The amount of time we keep an ARP entry before expiring it. Used to age out
220 The amount of time we will spend trying to resolve an Appletalk address.
Dkernel.txt101 how often do we check the amount of free space (value is in
105 if we got >=4%; consider information about amount of free space
751 This parameter sets the total amount of shared memory pages that
/linux-4.1.27/include/sound/
Dsoundfont.h126 int snd_sf_linear_to_log(unsigned int amount, int offset, int ratio);
/linux-4.1.27/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-adc-ad7280a8 enable for the programmed amount of time, before it
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/watchdog/
Dsamsung-wdt.txt4 after a preset amount of time during which the WDT reset event has not
/linux-4.1.27/drivers/pinctrl/intel/
DKconfig13 so only a small amount is available for gpio use.
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dinput-reset.txt5 sysrq driver. Upon holding the keys for a specified amount of time (if
/linux-4.1.27/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.1.27/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.1.27/net/unix/
Daf_unix.c2282 long amount = 0; in unix_inq_len() local
2291 amount += unix_skb_len(skb); in unix_inq_len()
2295 amount = skb->len; in unix_inq_len()
2299 return amount; in unix_inq_len()
2312 long amount = 0; in unix_ioctl() local
2317 amount = unix_outq_len(sk); in unix_ioctl()
2318 err = put_user(amount, (int __user *)arg); in unix_ioctl()
2321 amount = unix_inq_len(sk); in unix_ioctl()
2322 if (amount < 0) in unix_ioctl()
2323 err = amount; in unix_ioctl()
[all …]
/linux-4.1.27/Documentation/blockdev/
Dzram.txt123 mem_used_total RO the amount of memory allocated for this disk
124 mem_used_max RW the maximum amount memory zram have consumed to
126 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).
Dfloppy.txt129 disk. If you get a huge amount of "Over/Underrun - retrying"
/linux-4.1.27/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.1.27/Documentation/w1/slaves/
Dw1_ds28e0422 A read operation on the "eeprom" file reads the given amount of bytes
/linux-4.1.27/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.1.27/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.1.27/fs/cachefiles/
DKconfig32 The generation of this histogram adds a certain amount of overhead to
/linux-4.1.27/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.1.27/net/ipv4/
Draw.c866 int amount = sk_wmem_alloc_get(sk); in raw_ioctl() local
868 return put_user(amount, (int __user *)arg); in raw_ioctl()
872 int amount = 0; in raw_ioctl() local
877 amount = skb->len; in raw_ioctl()
879 return put_user(amount, (int __user *)arg); in raw_ioctl()
Dudp.c1224 int amount = sk_wmem_alloc_get(sk); in udp_ioctl() local
1226 return put_user(amount, (int __user *)arg); in udp_ioctl()
1231 unsigned int amount = first_packet_length(sk); in udp_ioctl() local
1233 if (amount) in udp_ioctl()
1239 amount -= sizeof(struct udphdr); in udp_ioctl()
1241 return put_user(amount, (int __user *)arg); in udp_ioctl()
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.
533 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.1.27/arch/powerpc/lib/
Ddiv64.S35 srw r10,r10,r0 # the divisor right the same amount,
/linux-4.1.27/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.txt89 - When a SCHED_DEADLINE task executes for an amount of time t, its
133 arrival time r_j (the time when the job starts), an amount of computation
273 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.1.27/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.1.27/drivers/staging/lustre/lustre/include/
Dlprocfs_status.h503 long amount);
505 long amount);
819 int index, long amount) in lprocfs_counter_add() argument
825 int index, long amount) in lprocfs_counter_sub() argument
/linux-4.1.27/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.1.27/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
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
368 pressure: when amount of memory allocated by TCP exceeds this number
375 Defaults are calculated at boot time from amount of available
611 max: Maximal amount of memory allowed for automatically tuned
619 A TCP socket can control the amount of unsent bytes in its write queue,
621 reports POLLOUT events if the amount of unsent bytes is below a per
625 This global variable controls the amount of unsent data for
666 result in a large amount of packets queued in qdisc/device
684 memory appetite. When amount of memory allocated by UDP exceeds
[all …]
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,
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.1.27/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.1.27/net/ipv6/
Draw.c1127 int amount = sk_wmem_alloc_get(sk); in rawv6_ioctl() local
1129 return put_user(amount, (int __user *)arg); in rawv6_ioctl()
1133 int amount = 0; in rawv6_ioctl() local
1138 amount = skb_tail_pointer(skb) - in rawv6_ioctl()
1141 return put_user(amount, (int __user *)arg); in rawv6_ioctl()
/linux-4.1.27/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.txt29 to cause the system to reboot automatically after a specified amount
Dkernel-parameters.txt465 Change the amount of debugging information output
765 a memory unit (amount[KMG]). See also
779 that require some amount of low memory, e.g. swiotlb
828 amount of memory for normal system use. The maximum
1631 specifies the amount of memory usable by the kernel
1632 for non-movable allocations. The requested amount is
1965 mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory
2106 amount of memory used for migratable allocations.
2111 that the amount of memory usable for all allocations
2288 [NET] Specifies amount of time (in seconds) that
[all …]
Dkref.txt300 substantial amount of time.
Dkmemleak.txt166 amount of false negatives and their scanning is not enabled by default.
/linux-4.1.27/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.1.27/drivers/watchdog/
DKconfig552 it does, it reboots your computer after a certain amount of time.
622 a certain amount of time.
635 amount of time.
677 it does, it reboots your computer after a certain amount of time.
809 amount of time.
873 amount of time.
942 and if it does, it reboots your computer after a certain amount of
978 amount of time.
1022 amount of time.
1036 and if it does, it reboots your computer after a certain amount of
[all …]
/linux-4.1.27/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.1.27/drivers/staging/lustre/lustre/ptlrpc/
Dptlrpc_internal.h83 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount);
Dlproc_ptlrpc.c1123 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount) in ptlrpc_lprocfs_rpc_sent() argument
1134 lprocfs_counter_add(svc_stats, opc + EXTRA_MAX_OPCODES, amount); in ptlrpc_lprocfs_rpc_sent()
/linux-4.1.27/drivers/virtio/
DKconfig46 This driver supports increasing and decreasing the amount
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Ddwc3.txt27 amount of 8B10B errors occur.
/linux-4.1.27/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.1.27/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.txt41 a large amount of memory through a smaller window, then you cannot
Dproc.txt434 (size), the amount of the mapping that is currently resident in RAM (RSS), the
439 indicates the amount of memory currently marked as referenced or accessed.
440 "Anonymous" shows the amount of memory that does not belong to any file. Even
878 SwapTotal: total amount of swap space available
889 PageTables: amount of memory dedicated to the lowest level of page
896 this is the total amount of memory currently available to
908 Committed_AS: The amount of memory presently allocated on the system.
922 VmallocUsed: amount of vmalloc area which is used
1156 the used IRQ and the IO address range. The amount of information shown is
1276 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.
Dxfs-self-describing-metadata.txt30 Most of the analysis work is slow and tedious, so as the amount of analysis goes
80 contain, a large amount of the manual verification work can be skipped.
Dbtrfs.txt134 Specify the maximum amount of space, in bytes, that can be inlined in
/linux-4.1.27/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.1.27/Documentation/leds/
Dledtrig-oneshot.txt8 specified amount of time.
Dleds-class.txt40 and the aim is to keep a small amount of code giving as much functionality
/linux-4.1.27/drivers/gpu/drm/nouveau/
Dnouveau_bo.c906 u32 amount, stride, height; in nv50_bo_move_m2mf() local
912 amount = min(length, (u64)(4 * 1024 * 1024)); in nv50_bo_move_m2mf()
914 height = amount / stride; in nv50_bo_move_m2mf()
958 length -= amount; in nv50_bo_move_m2mf()
959 src_offset += amount; in nv50_bo_move_m2mf()
960 dst_offset += amount; in nv50_bo_move_m2mf()
/linux-4.1.27/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.1.27/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.1.27/drivers/net/wireless/brcm80211/
DKconfig78 issues. This option adds a small amount of overhead when tracing
/linux-4.1.27/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.1.27/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.1.27/arch/powerpc/boot/
Ddiv64.S35 srw r10,r10,r0 # the divisor right the same amount,
/linux-4.1.27/arch/alpha/lib/
Dev6-copy_user.S66 ble $1, $onebyteloop # .. .. U .. : 1st branch : small amount of data
/linux-4.1.27/net/dccp/
Dproto.c372 unsigned long amount = 0; in dccp_ioctl() local
380 amount = skb->len; in dccp_ioctl()
382 rc = put_user(amount, (int __user *)arg); in dccp_ioctl()
/linux-4.1.27/Documentation/x86/x86_64/
Dfake-numa-for-cpusets8 amount of system memory that are available to a certain class of tasks.
/linux-4.1.27/Documentation/infiniband/
Duser_verbs.txt49 amount of memory pinned in the process's locked_vm, and checks that
/linux-4.1.27/arch/x86/crypto/
Dcrc32c-pcl-intel-asm_64.S109 and $7, bufp # calculate the unalignment amount of
/linux-4.1.27/Documentation/misc-devices/
Dbh1770glc.txt25 amount of reflected IR light and produces proximity result. Resolution is
/linux-4.1.27/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.1.27/fs/reiserfs/
DKconfig51 increases the amount of kernel memory required for each mount.
DREADME22 makes his next sale. He makes no guarantees as to the amount if any,
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-mt65xx.txt13 binding is used, the amount of cells must be specified as 2. See the below
Drockchip,pinctrl.txt46 binding is used, the amount of cells must be specified as 2. See generic
/linux-4.1.27/Documentation/w1/masters/
Dds249041 removed it can produce a good amount of error output before the bus
/linux-4.1.27/Documentation/cpu-freq/
Dcpufreq-stats.txt53 This gives the amount of time spent in each of the frequencies supported by
/linux-4.1.27/Documentation/watchdog/
Dhpwdt.txt45 each time the NMI signal fires off. This could amount to several thousands of
/linux-4.1.27/tools/perf/Documentation/
Dperf-bench.txt21 Specify amount of times to repeat the run (default 10).
Dperf-stat.txt139 useful to gauge the amount of aggregation.
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/Documentation/ABI/
DREADME67 documented amount of time has gone by.
/linux-4.1.27/tools/lguest/
Dlguest.txt77 64: the amount of memory to use, in MB.
/linux-4.1.27/fs/btrfs/
Ddev-replace.c916 void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount) in btrfs_bio_counter_sub() argument
918 percpu_counter_sub(&fs_info->bio_counter, amount); in btrfs_bio_counter_sub()
/linux-4.1.27/arch/powerpc/
DKconfig.debug36 the amount of time spent in hypervisor calls. Wall time spent in
42 This option will add a small amount of overhead to all hypervisor
/linux-4.1.27/drivers/pinctrl/
DKconfig79 functionality by firmware,so only a small amount is available
/linux-4.1.27/Documentation/block/
Dqueue-sysfs.txt89 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.1.27/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.1.27/arch/tile/
DKconfig227 Linux can use the full amount of RAM in the system by
230 amount of physical memory, not all of it can be "permanently
/linux-4.1.27/arch/powerpc/platforms/ps3/
DKconfig99 small amount.
/linux-4.1.27/Documentation/i2c/busses/
Di2c-parport81 The ADM1032 evaluation board uses D4-D7. Beware that the amount of
/linux-4.1.27/arch/arm/boot/dts/
Darmada-xp-gp.dts74 * 8 GB of plug-in RAM modules by default.The amount
/linux-4.1.27/arch/sh/lib64/
Dmemcpy.S33 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
Dcopy_user_memcpy.S31 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
/linux-4.1.27/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.1.27/Documentation/sound/oss/
DREADME.modules83 the machine has been running for any amount of time. The way to avoid this
/linux-4.1.27/Documentation/trace/
Devents-kmem.txt73 amount of writing on struct page.
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
DKconfig117 SAR is the unit of measurement for the amount of radio frequency(RF)
/linux-4.1.27/Documentation/usb/
Derror-codes.txt130 -EOVERFLOW (*) The amount of data returned by the endpoint was
Dgadget_hid.txt75 the amount of interrupt endpoints your gadget driver supports.
/linux-4.1.27/Documentation/RCU/
DUP.txt9 work a surprising amount of the time, it is a very bad idea in general.
/linux-4.1.27/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,
/linux-4.1.27/Documentation/crypto/
Dapi-intro.txt43 one block while the former can operate on an arbitrary amount of data,
/linux-4.1.27/fs/cramfs/
DREADME104 require the least amount of change: just change `#define
/linux-4.1.27/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
1191 If the amount of data attached to the key differs from the size in
1431 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.1.27/Documentation/virtual/kvm/
Dppc-pv.txt188 That way we can inject an arbitrary amount of code as replacement for a single
/linux-4.1.27/net/packet/
Daf_packet.c3647 int amount = sk_wmem_alloc_get(sk); in packet_ioctl() local
3649 return put_user(amount, (int __user *)arg); in packet_ioctl()
3654 int amount = 0; in packet_ioctl() local
3659 amount = skb->len; in packet_ioctl()
3661 return put_user(amount, (int __user *)arg); in packet_ioctl()
/linux-4.1.27/Documentation/serial/
Dmoxa-smartio464 close_delay set the amount of time(in 1/100 of a second) that DTR
466 closing_wait set the amount of time(in 1/100 of a second) that the
/linux-4.1.27/arch/cris/arch-v10/
DREADME.mm185 PGDIR_SHIFT is the log2 of the amount of memory an entry in the PGD can map; in our
/linux-4.1.27/arch/blackfin/
DKconfig.debug113 By turning this off, you may save a tiny amount of power.
/linux-4.1.27/drivers/xen/
DKconfig66 Maxmium amount of memory (in GiB) that a PV guest can be
/linux-4.1.27/Documentation/timers/
Dhrtimers.txt176 code got a healthy amount of testing and use in practice.

12