/linux-4.1.27/arch/parisc/math-emu/ |
D | hppa.h | 28 #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/ |
D | percpu_counter.h | 30 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 …]
|
D | backing-dev.h | 140 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/ |
D | lprocfs_counters.c | 47 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/ |
D | nv20.c | 38 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/ |
D | percpu_counter.c | 60 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()
|
D | test-hexdump.c | 82 size_t amount = strlen(q); in test_hexdump() local 84 strncpy(p, q, amount); in test_hexdump() 85 p += amount + 1; in test_hexdump()
|
D | Kconfig | 409 # 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/ |
D | ctresource.c | 27 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()
|
D | ctresource.h | 59 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/ |
D | BusLogic.h | 1241 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 …]
|
D | fdomain.c | 579 static void do_pause(unsigned amount) /* Pause for amount*10 milliseconds */ in do_pause() argument 581 mdelay(10*amount); in do_pause()
|
D | 53c700.scr | 35 ; necessary amount of data and jumps to the next SG segment. The final
|
/linux-4.1.27/drivers/pci/hotplug/ |
D | ibmphp_pci.c | 1097 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/ |
D | f_mass_storage.c | 648 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/ |
D | fam15h_power | 24 * 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/ |
D | malta-time.c | 61 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/ |
D | overcommit-accounting | 17 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
|
D | remap_file_pages.txt | 8 Supporting of nonlinear mapping requires significant amount of non-trivial
|
D | active_mm.txt | 27 some amount of time they are not going to be interested in user space,
|
D | frontswap.txt | 80 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
|
D | pagemap.txt | 151 For example, to find the "unique set size" (USS), which is the amount of
|
/linux-4.1.27/net/bluetooth/ |
D | af_bluetooth.c | 454 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/ |
D | dynamic-resolution-notes.txt | 18 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/ |
D | ttm_memory.c | 452 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/ |
D | dir.c | 188 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 …]
|
D | xattr.c | 467 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/ |
D | pstore | 37 The 'kmsg_bytes' mount option changes the target amount of 40 persistent storage until at least this amount is reached.
|
D | debugfs-ec | 8 Knowing the EC GPE one can watch the amount of HW events related to
|
D | sysfs-block-zram | 119 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
|
D | dev-kmsg | 45 sequence numbers allow to calculate the amount of lost
|
D | sysfs-power | 179 the amount of memory reserved for allocations made by device 182 will be used as the amount of memory to reserve for allocations
|
D | sysfs-block-bcache | 149 For a cache, total amount of data in human readable units
|
/linux-4.1.27/net/ax25/ |
D | af_ax25.c | 1691 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/ |
D | zero.txt | 12 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
|
D | cache.txt | 68 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
|
D | snapshot.txt | 41 the amount of free space and expand the <COW device> before it fills up.
|
/linux-4.1.27/Documentation/locking/ |
D | locktorture.txt | 15 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/ |
D | Kconfig | 21 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/ |
D | adutux.c | 383 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/ |
D | af_netrom.c | 1199 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/ |
D | README.hp300 | 6 Currently only 9000/340 machines have been tested. Any amount of RAM should
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-block-zram | 88 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/ |
D | Kconfig.debug | 12 Enables the display of the minimum amount of free stack which each
|
D | Kconfig | 143 This can be useful if you are on a board which has a small amount of
|
/linux-4.1.27/include/drm/ttm/ |
D | ttm_memory.h | 151 uint64_t amount);
|
/linux-4.1.27/net/ieee802154/ |
D | socket.c | 549 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/ |
D | af_rose.c | 1283 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/ |
D | vm.txt | 67 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 …]
|
D | net.txt | 214 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.
|
D | kernel.txt | 101 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/ |
D | soundfont.h | 126 int snd_sf_linear_to_log(unsigned int amount, int offset, int ratio);
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-adc-ad7280a | 8 enable for the programmed amount of time, before it
|
/linux-4.1.27/net/x25/ |
D | af_x25.c | 1365 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/ |
D | samsung-wdt.txt | 4 after a preset amount of time during which the WDT reset event has not
|
/linux-4.1.27/drivers/pinctrl/intel/ |
D | Kconfig | 13 so only a small amount is available for gpio use.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | input-reset.txt | 5 sysrq driver. Upon holding the keys for a specified amount of time (if
|
/linux-4.1.27/Documentation/fb/ |
D | intelfb.txt | 35 select amount of system RAM in MB to allocate for the video memory 46 for the least amount). Note, an arbitrary setting may conflict
|
D | modedb.txt | 11 - one generic video mode database with a fair amount of standard videomodes 97 where: pix = total amount of pixels in MB (xres x yres)
|
D | intel810.txt | 82 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
|
D | pxafb.txt | 79 'struct fb_var_screeninfo', the amount is decided by:
|
D | vesafb.txt | 171 amount of video RAM, use this option to override the BIOS (in MiB).
|
D | uvesafb.txt | 98 amount of video RAM, use this option to override the BIOS (in MiB).
|
/linux-4.1.27/Documentation/isdn/ |
D | README.fax | 31 - full support on amount of B-channels
|
D | README.diversion | 69 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/ |
D | af_unix.c | 2282 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/ |
D | zram.txt | 123 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
|
D | cciss.txt | 156 certain amount of time (which can vary depending on the command).
|
D | floppy.txt | 129 disk. If you get a huge amount of "Over/Underrun - retrying"
|
/linux-4.1.27/sound/synth/emux/ |
D | soundfont.c | 798 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/ |
D | w1_ds28e04 | 22 A read operation on the "eeprom" file reads the given amount of bytes
|
/linux-4.1.27/arch/microblaze/ |
D | Kconfig | 166 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/ |
D | ddp.c | 1791 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/ |
D | Kconfig | 32 The generation of this histogram adds a certain amount of overhead to
|
/linux-4.1.27/drivers/video/console/ |
D | Kconfig | 37 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/ |
D | raw.c | 866 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()
|
D | udp.c | 1224 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/ |
D | atombios_crtc.c | 491 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/ |
D | af_irda.c | 1810 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/ |
D | Kconfig | 118 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/ |
D | iforce-protocol.txt | 227 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:
|
D | gameport-programming.txt | 92 experimentation, it is the amount of noise in the ADC data. Perfect 140 represents the amount of noise in the data. See section 3.
|
D | elantech.txt | 274 ds3..ds0 = scroll wheel amount and direction 294 ds7..ds0 = vertical scroll amount and direction
|
/linux-4.1.27/Documentation/cgroups/ |
D | blkio-controller.txt | 211 - 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
|
D | memory.txt | 27 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.
|
D | memcg_test.txt | 133 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/ |
D | div64.S | 35 srw r10,r10,r0 # the divisor right the same amount,
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-bwc.txt | 19 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
|
D | sched-design-CFS.txt | 60 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
|
D | sched-deadline.txt | 89 - 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
|
D | sched-rt-group.txt | 43 the amount of bandwidth (eg. CPU time) being constant. In order to schedule
|
/linux-4.1.27/net/ipx/ |
D | af_ipx.c | 1838 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/ |
D | lprocfs_status.h | 503 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/ |
D | af_decnet.c | 1228 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/ |
D | rxrpc.txt | 182 (*) 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 …]
|
D | e1000e.txt | 53 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,
|
D | driver.txt | 67 up the SKB and in some finite amount of time.
|
D | README.ipw2100 | 103 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
|
D | ip-sysctl.txt | 210 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 …]
|
D | e1000.txt | 85 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,
|
D | ixgb.txt | 238 # 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
|
D | README.ipw2200 | 126 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/ |
D | memset.S | 91 # check we set the correct amount
|
D | memcpy.S | 104 # check we copied the correct amount
|
D | memmove.S | 127 # check we copied the correct amount
|
/linux-4.1.27/net/ipv6/ |
D | raw.c | 1127 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/ |
D | circular-buffers.txt | 54 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
|
D | memory-hotplug.txt | 42 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.
|
D | lockup-watchdogs.txt | 29 to cause the system to reboot automatically after a specified amount
|
D | kernel-parameters.txt | 465 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 …]
|
D | kref.txt | 300 substantial amount of time.
|
D | kmemleak.txt | 166 amount of false negatives and their scanning is not enabled by default.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | brcm,iproc-touchscreen.txt | 14 - settling_timeout: The settling duration (in ms) is the amount of time
|
D | ti-tsc-adc.txt | 42 hardware knob for adjusting the amount of "settling
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 552 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/ |
D | TODO | 3 let each outstanding write reserve the _maximum_ amount of physical
|
D | Kconfig | 19 This controls the amount of debugging messages produced by the JFFS2
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | ptlrpc_internal.h | 83 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount);
|
D | lproc_ptlrpc.c | 1123 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/ |
D | Kconfig | 46 This driver supports increasing and decreasing the amount
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 27 amount of 8B10B errors occur.
|
/linux-4.1.27/arch/arm/lib/ |
D | lib1funcs.S | 64 @ 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/ |
D | xfs-delayed-logging-design.txt | 11 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 …]
|
D | quota.txt | 15 Quota limits (and amount of grace time) are set independently for each
|
D | dax.txt | 41 a large amount of memory through a smaller window, then you cannot
|
D | proc.txt | 434 (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 …]
|
D | logfs.txt | 26 constant updates, like the amount of free space, etc. 157 on the least amount of valid data contained in the segment. All
|
D | ext2.txt | 89 and minimise the amount of head seeking when reading a large amount 112 Because this can consume a considerable amount of space for large
|
D | ceph.txt | 130 Do not use the dcache as above. This avoids a significant amount of
|
D | ext4.txt | 276 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
|
D | ramfs-rootfs-initramfs.txt | 27 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.
|
D | xfs-self-describing-metadata.txt | 30 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.
|
D | btrfs.txt | 134 Specify the maximum amount of space, in bytes, that can be inlined in
|
/linux-4.1.27/sound/oss/ |
D | sequencer.c | 1586 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/ |
D | ledtrig-oneshot.txt | 8 specified amount of time.
|
D | leds-class.txt | 40 and the aim is to keep a small amount of code giving as much functionality
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_bo.c | 906 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/ |
D | head-mmu-fr451.S | 48 # GR15 - amount to shift address by to match SDRAM addr reg 65 setlos.p #0,gr15 ; amount to shift addr reg by
|
D | head-uc-fr401.S | 47 # GR15 - amount to shift address by to match SDRAM addr reg 64 setlos.p #0,gr15 ; amount to shift addr reg by
|
D | head-uc-fr555.S | 46 # 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/ |
D | sysfs-class-ubi | 39 create a new UBI volume which has this amount of logical 158 The amount of data this volume contains. This value makes sense
|
D | sysfs-driver-ib_srp | 48 amount of data that can be transferred between initiator and
|
/linux-4.1.27/drivers/net/wireless/brcm80211/ |
D | Kconfig | 78 issues. This option adds a small amount of overhead when tracing
|
/linux-4.1.27/Documentation/thermal/ |
D | intel_powerclamp.txt | 147 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/ |
D | Kconfig | 84 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/ |
D | div64.S | 35 srw r10,r10,r0 # the divisor right the same amount,
|
/linux-4.1.27/arch/alpha/lib/ |
D | ev6-copy_user.S | 66 ble $1, $onebyteloop # .. .. U .. : 1st branch : small amount of data
|
/linux-4.1.27/net/dccp/ |
D | proto.c | 372 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/ |
D | fake-numa-for-cpusets | 8 amount of system memory that are available to a certain class of tasks.
|
/linux-4.1.27/Documentation/infiniband/ |
D | user_verbs.txt | 49 amount of memory pinned in the process's locked_vm, and checks that
|
/linux-4.1.27/arch/x86/crypto/ |
D | crc32c-pcl-intel-asm_64.S | 109 and $7, bufp # calculate the unalignment amount of
|
/linux-4.1.27/Documentation/misc-devices/ |
D | bh1770glc.txt | 25 amount of reflected IR light and produces proximity result. Resolution is
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | cachefiles.txt | 198 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/ |
D | Kconfig | 51 increases the amount of kernel memory required for each mount.
|
D | README | 22 makes his next sale. He makes no guarantees as to the amount if any,
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl-mt65xx.txt | 13 binding is used, the amount of cells must be specified as 2. See the below
|
D | rockchip,pinctrl.txt | 46 binding is used, the amount of cells must be specified as 2. See generic
|
/linux-4.1.27/Documentation/w1/masters/ |
D | ds2490 | 41 removed it can produce a good amount of error output before the bus
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpufreq-stats.txt | 53 This gives the amount of time spent in each of the frequencies supported by
|
/linux-4.1.27/Documentation/watchdog/ |
D | hpwdt.txt | 45 each time the NMI signal fires off. This could amount to several thousands of
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-bench.txt | 21 Specify amount of times to repeat the run (default 10).
|
D | perf-stat.txt | 139 useful to gauge the amount of aggregation.
|
/linux-4.1.27/Documentation/power/ |
D | userland-swsusp.txt | 63 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/ |
D | memcopy.S | 212 ssa8 a3 # set shift amount from byte offset 488 ssa8 a3 # set shift amount from byte offset
|
D | usercopy.S | 92 SSA8( a3) # set shift amount from byte offset
|
/linux-4.1.27/Documentation/i2c/ |
D | smbus-protocol | 156 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/ |
D | laptop-mode.txt | 125 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/ |
D | README | 67 documented amount of time has gone by.
|
/linux-4.1.27/tools/lguest/ |
D | lguest.txt | 77 64: the amount of memory to use, in MB.
|
/linux-4.1.27/fs/btrfs/ |
D | dev-replace.c | 916 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/ |
D | Kconfig.debug | 36 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/ |
D | Kconfig | 79 functionality by firmware,so only a small amount is available
|
/linux-4.1.27/Documentation/block/ |
D | queue-sysfs.txt | 89 this amount, since it applies only to reads or writes (not the accumulated
|
D | cfq-iosched.txt | 42 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/ |
D | devio.c | 127 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/ |
D | Kconfig | 227 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/ |
D | Kconfig | 99 small amount.
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-parport | 81 The ADM1032 evaluation board uses D4-D7. Beware that the amount of
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | armada-xp-gp.dts | 74 * 8 GB of plug-in RAM modules by default.The amount
|
/linux-4.1.27/arch/sh/lib64/ |
D | memcpy.S | 33 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
|
D | copy_user_memcpy.S | 31 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
|
/linux-4.1.27/Documentation/development-process/ |
D | 5.Posting | 57 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/ |
D | README.modules | 83 the machine has been running for any amount of time. The way to avoid this
|
/linux-4.1.27/Documentation/trace/ |
D | events-kmem.txt | 73 amount of writing on struct page.
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | Kconfig | 117 SAR is the unit of measurement for the amount of radio frequency(RF)
|
/linux-4.1.27/Documentation/usb/ |
D | error-codes.txt | 130 -EOVERFLOW (*) The amount of data returned by the endpoint was
|
D | gadget_hid.txt | 75 the amount of interrupt endpoints your gadget driver supports.
|
/linux-4.1.27/Documentation/RCU/ |
D | UP.txt | 9 work a surprising amount of the time, it is a very bad idea in general.
|
/linux-4.1.27/Documentation/scsi/ |
D | libsas.txt | 379 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/ |
D | api-intro.txt | 43 one block while the former can operate on an arbitrary amount of data,
|
/linux-4.1.27/fs/cramfs/ |
D | README | 104 require the least amount of change: just change `#define
|
/linux-4.1.27/Documentation/security/ |
D | keys.txt | 185 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:
|
D | keys-request-key.txt | 145 instantiated for a short amount of time.
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | ppc-pv.txt | 188 That way we can inject an arbitrary amount of code as replacement for a single
|
/linux-4.1.27/net/packet/ |
D | af_packet.c | 3647 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/ |
D | moxa-smartio | 464 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/ |
D | README.mm | 185 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/ |
D | Kconfig.debug | 113 By turning this off, you may save a tiny amount of power.
|
/linux-4.1.27/drivers/xen/ |
D | Kconfig | 66 Maxmium amount of memory (in GiB) that a PV guest can be
|
/linux-4.1.27/Documentation/timers/ |
D | hrtimers.txt | 176 code got a healthy amount of testing and use in practice.
|