/linux-4.4.14/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.4.14/drivers/staging/lustre/lustre/obdclass/ |
D | lprocfs_counters.c | 44 void lprocfs_counter_add(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_add() argument 77 percpu_cntr->lc_sum_irq += amount; in lprocfs_counter_add() 79 percpu_cntr->lc_sum += amount; in lprocfs_counter_add() 82 percpu_cntr->lc_sumsquare += (__s64)amount * amount; in lprocfs_counter_add() 83 if (amount < percpu_cntr->lc_min) in lprocfs_counter_add() 84 percpu_cntr->lc_min = amount; in lprocfs_counter_add() 85 if (amount > percpu_cntr->lc_max) in lprocfs_counter_add() 86 percpu_cntr->lc_max = amount; in lprocfs_counter_add() 92 void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx, long amount) in lprocfs_counter_sub() argument 124 percpu_cntr->lc_sum_irq -= amount; in lprocfs_counter_sub() [all …]
|
/linux-4.4.14/include/linux/ |
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 | 58 enum wb_stat_item item, s64 amount) in __add_wb_stat() argument 60 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH); in __add_wb_stat()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | nv20.c | 38 uint32_t amount, off; in nv20_devinit_meminit() local 53 amount = nvkm_rd32(device, 0x10020c); in nv20_devinit_meminit() 54 for (off = amount; off > 0x2000000; off -= 0x2000000) in nv20_devinit_meminit() 57 amount = nvkm_rd32(device, 0x10020c); in nv20_devinit_meminit() 58 if (amount != fbmem_peek(fb, amount - 4)) in nv20_devinit_meminit()
|
/linux-4.4.14/lib/ |
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 | 415 # is ridiculous for the amount of code involved. Until an out-of-tree 442 module load) by a small amount, so you're welcome to play with
|
/linux-4.4.14/sound/pci/ctxfi/ |
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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/Documentation/hwmon/ |
D | fam15h_power | 26 * BasePwrWatts: Specifies in watts the maximum amount of power 28 * ProcessorPwrWatts: Specifies in watts the maximum amount of power 30 * CurrPwrWatts: Specifies in watts the current amount of power being
|
/linux-4.4.14/Documentation/vm/ |
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 | idle_page_tracking.txt | 40 That said, in order to estimate the amount of pages that are not used by a
|
D | pagemap.txt | 168 For example, to find the "unique set size" (USS), which is the amount of
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-scsi_tape | 16 Shows the total amount of time spent waiting for all I/O 23 To determine the amount of time spent waiting for other I/O 64 Shows the total amount of time in nanoseconds waiting for 95 Shows the total amount of time in nanoseconds waiting for
|
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.4.14/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.4.14/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.4.14/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.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | atombios_crtc.c | 292 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); in amdgpu_atombios_crtc_program_ss() 789 u32 amount = (((fb_div * 10) + frac_fb_div) * in amdgpu_atombios_crtc_set_pll() local 792 amdgpu_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK; in amdgpu_atombios_crtc_set_pll() 793 amdgpu_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) & in amdgpu_atombios_crtc_set_pll() 796 step_size = (4 * amount * ref_div * ((u32)amdgpu_crtc->ss.rate * 2048)) / in amdgpu_atombios_crtc_set_pll() 799 step_size = (2 * amount * ref_div * ((u32)amdgpu_crtc->ss.rate * 2048)) / in amdgpu_atombios_crtc_set_pll()
|
D | amdgpu_mode.h | 364 uint16_t amount; member
|
/linux-4.4.14/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() 1245 unsigned int amount = GFS2_EA_DATA_LEN(ea); in ea_acl_chmod_unstuffed() local 1246 unsigned int nptrs = DIV_ROUND_UP(amount, sdp->sd_jbsize); in ea_acl_chmod_unstuffed()
|
/linux-4.4.14/net/ax25/ |
D | af_ax25.c | 1690 long amount; in ax25_ioctl() local 1692 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in ax25_ioctl() 1693 if (amount < 0) in ax25_ioctl() 1694 amount = 0; in ax25_ioctl() 1695 res = put_user(amount, (int __user *)argp); in ax25_ioctl() 1701 long amount = 0L; in ax25_ioctl() local 1704 amount = skb->len; in ax25_ioctl() 1705 res = put_user(amount, (int __user *) argp); in ax25_ioctl() 1730 long amount; in ax25_ioctl() local 1735 if (get_user(amount, (long __user *)argp)) { in ax25_ioctl() [all …]
|
/linux-4.4.14/Documentation/device-mapper/ |
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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/arch/m68k/hp300/ |
D | README.hp300 | 6 Currently only 9000/340 machines have been tested. Any amount of RAM should
|
/linux-4.4.14/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.4.14/Documentation/devicetree/bindings/ |
D | ipmi.txt | 13 - reg-shift - The amount to shift the registers to the right to get the data
|
/linux-4.4.14/include/drm/ttm/ |
D | ttm_memory.h | 151 uint64_t amount);
|
/linux-4.4.14/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.4.14/net/ieee802154/ |
D | socket.c | 541 int amount = sk_wmem_alloc_get(sk); in dgram_ioctl() local 543 return put_user(amount, (int __user *)arg); in dgram_ioctl() 549 unsigned long amount; in dgram_ioctl() local 551 amount = 0; in dgram_ioctl() 559 amount = skb->len - ieee802154_hdr_length(skb); in dgram_ioctl() 562 return put_user(amount, (int __user *)arg); in dgram_ioctl()
|
/linux-4.4.14/net/rose/ |
D | af_rose.c | 1284 long amount; in rose_ioctl() local 1286 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk); in rose_ioctl() 1287 if (amount < 0) in rose_ioctl() 1288 amount = 0; in rose_ioctl() 1289 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl() 1294 long amount = 0L; in rose_ioctl() local 1297 amount = skb->len; in rose_ioctl() 1298 return put_user(amount, (unsigned int __user *) argp); in rose_ioctl()
|
/linux-4.4.14/Documentation/sysctl/ |
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 | 216 The amount of time we keep an ARP entry before expiring it. Used to age out 222 The amount of time we will spend trying to resolve an Appletalk address.
|
/linux-4.4.14/include/sound/ |
D | soundfont.h | 126 int snd_sf_linear_to_log(unsigned int amount, int offset, int ratio);
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-adc-ad7280a | 8 enable for the programmed amount of time, before it
|
/linux-4.4.14/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.4.14/Documentation/devicetree/bindings/input/ |
D | input-reset.txt | 5 sysrq driver. Upon holding the keys for a specified amount of time (if
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/pinctrl/intel/ |
D | Kconfig | 13 so only a small amount is available for gpio use.
|
/linux-4.4.14/Documentation/w1/slaves/ |
D | w1_ds28e04 | 22 A read operation on the "eeprom" file reads the given amount of bytes
|
/linux-4.4.14/net/unix/ |
D | af_unix.c | 2580 long amount = 0; in unix_inq_len() local 2589 amount += unix_skb_len(skb); in unix_inq_len() 2593 amount = skb->len; in unix_inq_len() 2597 return amount; in unix_inq_len() 2610 long amount = 0; in unix_ioctl() local 2615 amount = unix_outq_len(sk); in unix_ioctl() 2616 err = put_user(amount, (int __user *)arg); in unix_ioctl() 2619 amount = unix_inq_len(sk); in unix_ioctl() 2620 if (amount < 0) in unix_ioctl() 2621 err = amount; in unix_ioctl() [all …]
|
/linux-4.4.14/arch/microblaze/ |
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.4.14/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.4.14/fs/cachefiles/ |
D | Kconfig | 32 The generation of this histogram adds a certain amount of overhead to
|
/linux-4.4.14/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.4.14/net/ipv4/ |
D | raw.c | 876 int amount = sk_wmem_alloc_get(sk); in raw_ioctl() local 878 return put_user(amount, (int __user *)arg); in raw_ioctl() 882 int amount = 0; in raw_ioctl() local 887 amount = skb->len; in raw_ioctl() 889 return put_user(amount, (int __user *)arg); in raw_ioctl()
|
D | udp.c | 1235 int amount = sk_wmem_alloc_get(sk); in udp_ioctl() local 1237 return put_user(amount, (int __user *)arg); in udp_ioctl() 1242 unsigned int amount = first_packet_length(sk); in udp_ioctl() local 1244 if (amount) in udp_ioctl() 1250 amount -= sizeof(struct udphdr); in udp_ioctl() 1252 return put_user(amount, (int __user *)arg); in udp_ioctl()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
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.4.14/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.4.14/drivers/ras/ |
D | Kconfig | 16 time, i.e. the amount of time a device is actually operating as the
|
/linux-4.4.14/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.4.14/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.4.14/arch/powerpc/lib/ |
D | div64.S | 35 srw r10,r10,r0 # the divisor right the same amount,
|
/linux-4.4.14/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 | 93 - When a SCHED_DEADLINE task executes for an amount of time t, its 140 arrival time r_j (the time when the job starts), an amount of computation 203 computing the total amount of CPU time h(t) needed by all the tasks to 206 the amount of time needed by the tasks in a time interval of size t is 397 Specifying a periodic/sporadic task that executes for a given amount of
|
D | sched-rt-group.txt | 43 the amount of bandwidth (eg. CPU time) being constant. In order to schedule
|
/linux-4.4.14/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.4.14/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.4.14/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 | 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 | 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 377 pressure: when amount of memory allocated by TCP exceeds this number 384 Defaults are calculated at boot time from amount of available 652 max: Maximal amount of memory allowed for automatically tuned 660 A TCP socket can control the amount of unsent bytes in its write queue, 662 reports POLLOUT events if the amount of unsent bytes is below a per 666 This global variable controls the amount of unsent data for 707 result in a large amount of packets queued in qdisc/device 725 memory appetite. When amount of memory allocated by UDP exceeds [all …]
|
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.4.14/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.4.14/net/ipv6/ |
D | raw.c | 1132 int amount = sk_wmem_alloc_get(sk); in rawv6_ioctl() local 1134 return put_user(amount, (int __user *)arg); in rawv6_ioctl() 1138 int amount = 0; in rawv6_ioctl() local 1143 amount = skb_tail_pointer(skb) - in rawv6_ioctl() 1146 return put_user(amount, (int __user *)arg); in rawv6_ioctl()
|
/linux-4.4.14/Documentation/ |
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 | 30 to cause the system to reboot automatically after a specified amount
|
D | ntb.txt | 8 of the device, so that peers can exchange a small amount of information at a
|
D | kernel-parameters.txt | 472 Change the amount of debugging information output 778 a memory unit (amount[KMG]). See also 792 that require some amount of low memory, e.g. swiotlb 843 amount of memory for normal system use. The maximum 1696 specifies the amount of memory usable by the kernel 1697 for non-movable allocations. The requested amount is 2032 mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory 2173 amount of memory used for migratable allocations. 2178 that the amount of memory usable for all allocations 2365 [NET] Specifies amount of time (in seconds) that [all …]
|
D | kref.txt | 300 substantial amount of time.
|
/linux-4.4.14/Documentation/blockdev/ |
D | zram.txt | 177 mem_used_total RO the amount of memory allocated for this disk 178 mem_used_max RW the maximum amount of memory zram have consumed to 181 mem_limit RW the maximum amount of memory ZRAM can use to store
|
D | cciss.txt | 156 certain amount of time (which can vary depending on the command).
|
/linux-4.4.14/drivers/watchdog/ |
D | Kconfig | 616 it does, it reboots your computer after a certain amount of time. 686 a certain amount of time. 699 amount of time. 741 it does, it reboots your computer after a certain amount of time. 875 amount of time. 939 amount of time. 1008 and if it does, it reboots your computer after a certain amount of 1044 amount of time. 1088 amount of time. 1102 and if it does, it reboots your computer after a certain amount of [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
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.4.14/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.4.14/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. 534 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.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | ptlrpc_internal.h | 90 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount);
|
D | lproc_ptlrpc.c | 1125 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req, long amount) in ptlrpc_lprocfs_rpc_sent() argument 1136 lprocfs_counter_add(svc_stats, opc + EXTRA_MAX_OPCODES, amount); in ptlrpc_lprocfs_rpc_sent()
|
/linux-4.4.14/drivers/virtio/ |
D | Kconfig | 46 This driver supports increasing and decreasing the amount
|
/linux-4.4.14/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.4.14/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 | 43 a large amount of memory through a smaller window, then you cannot
|
D | proc.txt | 441 (size), the amount of the mapping that is currently resident in RAM (RSS), the 452 "Referenced" indicates the amount of memory currently marked as referenced or 454 "Anonymous" shows the amount of memory that does not belong to any file. Even 893 SwapTotal: total amount of swap space available 904 PageTables: amount of memory dedicated to the lowest level of page 911 this is the total amount of memory currently available to 923 Committed_AS: The amount of memory presently allocated on the system. 937 VmallocUsed: amount of vmalloc area which is used 1171 the used IRQ and the IO address range. The amount of information shown is 1291 lines. These numbers identify the amount of time the CPU has spent performing [all …]
|
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.
|
/linux-4.4.14/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.4.14/Documentation/leds/ |
D | ledtrig-oneshot.txt | 8 specified amount of time.
|
D | leds-class.txt | 37 and the aim is to keep a small amount of code giving as much functionality
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_bo.c | 900 u32 amount, stride, height; in nv50_bo_move_m2mf() local 906 amount = min(length, (u64)(4 * 1024 * 1024)); in nv50_bo_move_m2mf() 908 height = amount / stride; in nv50_bo_move_m2mf() 952 length -= amount; in nv50_bo_move_m2mf() 953 src_offset += amount; in nv50_bo_move_m2mf() 954 dst_offset += amount; in nv50_bo_move_m2mf()
|
/linux-4.4.14/arch/frv/kernel/ |
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.4.14/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.4.14/drivers/net/wireless/brcm80211/ |
D | Kconfig | 78 issues. This option adds a small amount of overhead when tracing
|
/linux-4.4.14/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.4.14/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.4.14/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 28 amount of 8B10B errors occur.
|
/linux-4.4.14/arch/alpha/lib/ |
D | ev6-copy_user.S | 66 ble $1, $onebyteloop # .. .. U .. : 1st branch : small amount of data
|
/linux-4.4.14/arch/powerpc/boot/ |
D | div64.S | 35 srw r10,r10,r0 # the divisor right the same amount,
|
/linux-4.4.14/net/dccp/ |
D | proto.c | 371 unsigned long amount = 0; in dccp_ioctl() local 379 amount = skb->len; in dccp_ioctl() 381 rc = put_user(amount, (int __user *)arg); in dccp_ioctl()
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 8 amount of system memory that are available to a certain class of tasks.
|
/linux-4.4.14/Documentation/infiniband/ |
D | user_verbs.txt | 49 amount of memory pinned in the process's locked_vm, and checks that
|
/linux-4.4.14/Documentation/misc-devices/ |
D | bh1770glc.txt | 25 amount of reflected IR light and produces proximity result. Resolution is
|
/linux-4.4.14/arch/x86/crypto/ |
D | crc32c-pcl-intel-asm_64.S | 109 and $7, bufp # calculate the unalignment amount of
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | lprocfs_status.h | 503 void lprocfs_counter_add(struct lprocfs_stats *stats, int idx, long amount); 504 void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx, long amount);
|
/linux-4.4.14/Documentation/filesystems/caching/ |
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.4.14/fs/reiserfs/ |
D | Kconfig | 51 increases the amount of kernel memory required for each mount.
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-bench.txt | 21 Specify amount of times to repeat the run (default 10).
|
D | perf-stat.txt | 148 useful to gauge the amount of aggregation.
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl-mt65xx.txt | 15 binding is used, the amount of cells must be specified as 2. See the below
|
D | rockchip,pinctrl.txt | 47 binding is used, the amount of cells must be specified as 2. See generic
|
/linux-4.4.14/Documentation/watchdog/ |
D | hpwdt.txt | 45 each time the NMI signal fires off. This could amount to several thousands of
|
/linux-4.4.14/Documentation/w1/masters/ |
D | ds2490 | 41 removed it can produce a good amount of error output before the bus
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | cpufreq-stats.txt | 53 This gives the amount of time spent in each of the frequencies supported by
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/Documentation/ABI/ |
D | README | 67 documented amount of time has gone by.
|
/linux-4.4.14/tools/lguest/ |
D | lguest.txt | 77 64: the amount of memory to use, in MB.
|
/linux-4.4.14/fs/btrfs/ |
D | dev-replace.c | 917 void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount) in btrfs_bio_counter_sub() argument 919 percpu_counter_sub(&fs_info->bio_counter, amount); in btrfs_bio_counter_sub()
|
/linux-4.4.14/drivers/usb/core/ |
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.4.14/arch/powerpc/ |
D | Kconfig.debug | 44 the amount of time spent in hypervisor calls. Wall time spent in 50 This option will add a small amount of overhead to all hypervisor
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | armada-xp-gp.dts | 74 * 8 GB of plug-in RAM modules by default.The amount
|
D | armada-370.dtsi | 353 * Reserve some amount of the crypto SRAM to put the
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-parport | 82 The ADM1032 evaluation board uses D4-D7. Beware that the amount of
|
/linux-4.4.14/Documentation/block/ |
D | queue-sysfs.txt | 97 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.4.14/arch/sh/lib64/ |
D | copy_user_memcpy.S | 31 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
|
D | memcpy.S | 33 ! a fast memcpy and the amount subtracted from r7 before L_2l_loop be 2,
|
/linux-4.4.14/drivers/pinctrl/ |
D | Kconfig | 90 functionality by firmware,so only a small amount is available
|
/linux-4.4.14/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.4.14/arch/tile/ |
D | Kconfig | 250 Linux can use the full amount of RAM in the system by 253 amount of physical memory, not all of it can be "permanently
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | Kconfig | 99 small amount.
|
/linux-4.4.14/Documentation/sound/oss/ |
D | README.modules | 83 the machine has been running for any amount of time. The way to avoid this
|
/linux-4.4.14/Documentation/trace/ |
D | events-kmem.txt | 73 amount of writing on struct page.
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | Kconfig | 117 SAR is the unit of measurement for the amount of radio frequency(RF)
|
/linux-4.4.14/arch/x86/ |
D | Kconfig.debug | 176 This option allows the user to tune the amount of TLB entries the 387 This debugging adds some small amount of runtime overhead
|
/linux-4.4.14/Documentation/usb/ |
D | error-codes.txt | 130 -EOVERFLOW (*) The amount of data returned by the endpoint was
|
/linux-4.4.14/Documentation/RCU/ |
D | UP.txt | 9 work a surprising amount of the time, it is a very bad idea in general.
|
/linux-4.4.14/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,
|
D | st.txt | 175 2. io_ns - The amount of time spent waiting (in nanoseconds) for all I/O 184 6. read_ns - The amount of time (in nanoseconds) spent waiting for read 188 9. write_ns - The amount of time (in nanoseconds) spent waiting for write 191 the residual amount to be non-zero. This should mean that a program
|
/linux-4.4.14/net/core/ |
D | sock.c | 2150 void __sk_mem_reclaim(struct sock *sk, int amount) in __sk_mem_reclaim() argument 2152 amount >>= SK_MEM_QUANTUM_SHIFT; in __sk_mem_reclaim() 2153 sk_memory_allocated_sub(sk, amount); in __sk_mem_reclaim() 2154 sk->sk_forward_alloc -= amount << SK_MEM_QUANTUM_SHIFT; in __sk_mem_reclaim()
|
/linux-4.4.14/drivers/staging/lustre/ |
D | sysfs-fs-lustre | 456 for service behind this obd (or total amount for compound 464 behind this obd (or total amount for compound devices 472 for service behind this obd (or total amount for compound
|
/linux-4.4.14/Documentation/crypto/ |
D | api-intro.txt | 43 one block while the former can operate on an arbitrary amount of data,
|
/linux-4.4.14/fs/cramfs/ |
D | README | 104 require the least amount of change: just change `#define
|
/linux-4.4.14/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 1195 If the amount of data attached to the key differs from the size in 1440 certain amount of time has passed. This time is set as a number of seconds in:
|
D | keys-request-key.txt | 145 instantiated for a short amount of time.
|
/linux-4.4.14/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.4.14/net/packet/ |
D | af_packet.c | 3889 int amount = sk_wmem_alloc_get(sk); in packet_ioctl() local 3891 return put_user(amount, (int __user *)arg); in packet_ioctl() 3896 int amount = 0; in packet_ioctl() local 3901 amount = skb->len; in packet_ioctl() 3903 return put_user(amount, (int __user *)arg); in packet_ioctl()
|