Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 200 of 242) sorted by relevance

12

/linux-4.4.14/drivers/scsi/
Dscript_asm.pl416 $rest = $2;
417 foreach $rest (split (/\s*,\s*/, $rest)) {
418 if ($rest =~ /^($identifier)\s*=\s*($constant)\s*$/) {
469 $rest = $1;
470 if ($rest =~ /^FROM\s+($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) {
479 } elsif ($rest =~ /^($value)\s*,\s*(PTR\s+|)($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) {
491 } elsif ($rest =~ /^MEMORY\s+(.*)/i) {
492 $rest = $1;
494 if ($rest =~ /^($value)\s*,\s*($value)\s*,\s*($value)\s*$/) {
517 $rest = $3;
[all …]
Dscsi_debug.c2365 u64 block, rest = 0; in do_device_access() local
2384 rest = block + num - sdebug_store_sectors; in do_device_access()
2388 (num - rest) * scsi_debug_sector_size, 0, do_write); in do_device_access()
2389 if (ret != (num - rest) * scsi_debug_sector_size) in do_device_access()
2392 if (rest) { in do_device_access()
2394 fake_storep, rest * scsi_debug_sector_size, in do_device_access()
2395 (num - rest) * scsi_debug_sector_size, do_write); in do_device_access()
2408 u64 block, rest = 0; in comp_write_worker() local
2414 rest = block + num - store_blks; in comp_write_worker()
2417 (num - rest) * lb_size); in comp_write_worker()
[all …]
Dncr53c8xx.c6246 u32 rest; in ncr_int_ma() local
6263 rest = dbc & 0xffffff; in ncr_int_ma()
6276 delta=(((ctest5 << 8) | (INB (nc_dfifo) & 0xff)) - rest) & 0x3ff; in ncr_int_ma()
6278 delta=(INB (nc_dfifo) - rest) & 0x7f; in ncr_int_ma()
6287 rest += delta; in ncr_int_ma()
6289 if (ss0 & OLF) rest++; in ncr_int_ma()
6290 if (ss0 & ORF) rest++; in ncr_int_ma()
6293 if (ss2 & OLF1) rest++; in ncr_int_ma()
6294 if (ss2 & ORF1) rest++; in ncr_int_ma()
6299 (unsigned) rest, (unsigned) delta, ss0); in ncr_int_ma()
[all …]
/linux-4.4.14/scripts/
Dshow_delta49 (time_str, rest) = string.split(line[1:],']',1)
53 return (time, rest)
65 (time, rest) = get_time(line)
78 return ("[%5.6f < %5.6f >]" % (time, delta)) + rest
111 (time, rest) = get_time(line)
114 if string.find(rest, base_str)==1:
Dcheckpatch.pl2740 my $rest = $2;
2742 my $pos = pos_last_openparen($rest);
4509 my ($off, $dstat, $dcond, $rest);
4619 my ($off, $dstat, $dcond, $rest);
/linux-4.4.14/drivers/media/radio/
Dradio-terratec.c86 long rest; in terratec_s_frequency() local
92 rest = freq * 10 + 10700; /* I once had understood what is going on here */ in terratec_s_frequency()
97 while (rest != 0) { in terratec_s_frequency()
98 if (rest % temp == rest) in terratec_s_frequency()
102 rest = rest - temp; in terratec_s_frequency()
/linux-4.4.14/arch/hexagon/lib/
Dmemcpy.S173 #define rest R8 /* length - prolog bytes */ macro
335 rest = sub(len, star3); /* whats left after the loop */ define
338 if(p0) rest = add(rest, #16);
343 p0 = cmp.gt(rest, #16);
348 rest = add(rest, #-8); define
371 rest = kernel; define
381 p3 = cmp.eq(kernel, rest);
415 rest = add(kernel, #-1); define
/linux-4.4.14/tools/perf/util/
Dparse-options.c250 const char *rest; in parse_long_opt() local
256 rest = skip_prefix(arg, options->long_name); in parse_long_opt()
258 if (!rest) in parse_long_opt()
260 if (*rest == '=') in parse_long_opt()
262 if (*rest) in parse_long_opt()
267 if (!rest) { in parse_long_opt()
275 rest = skip_prefix(arg, options->long_name + 3); in parse_long_opt()
276 if (rest) { in parse_long_opt()
314 rest = skip_prefix(arg + 3, options->long_name); in parse_long_opt()
316 if (!rest && !prefixcmp(options->long_name, arg + 3)) in parse_long_opt()
[all …]
Dsession.c1217 size_t hdr_sz, rest; in perf_session__peek_event() local
1247 rest = event->header.size - hdr_sz; in perf_session__peek_event()
1249 if (readn(fd, buf, rest) != (ssize_t)rest) in perf_session__peek_event()
/linux-4.4.14/drivers/s390/block/
Ddasd_eer.c133 unsigned long rest, len; in dasd_eer_write_buffer() local
137 rest = count; in dasd_eer_write_buffer()
138 while (rest > 0) { in dasd_eer_write_buffer()
141 len = min(rest, PAGE_SIZE - localhead); in dasd_eer_write_buffer()
144 rest -= len; in dasd_eer_write_buffer()
159 unsigned long rest, len, finalcount; in dasd_eer_read_buffer() local
164 rest = finalcount; in dasd_eer_read_buffer()
165 while (rest > 0) { in dasd_eer_read_buffer()
168 len = min(rest, PAGE_SIZE - localtail); in dasd_eer_read_buffer()
171 rest -= len; in dasd_eer_read_buffer()
/linux-4.4.14/arch/x86/lib/
Dcsum-wrappers_64.c140 __u64 rest, sum64; in csum_ipv6_magic() local
142 rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + in csum_ipv6_magic()
152 : "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr)); in csum_ipv6_magic()
Dchecksum_32.S381 # zero the complete destination - computing the rest
472 # zero the complete destination (computing the rest is too much work)
/linux-4.4.14/fs/squashfs/
Dxattr.c49 size_t rest = buffer_size; in squashfs_listxattr() local
71 prefix_size = handler->list(handler, d, buffer, rest, in squashfs_listxattr()
75 if (prefix_size + name_size + 1 > rest) { in squashfs_listxattr()
89 rest -= prefix_size + name_size + 1; in squashfs_listxattr()
110 err = buffer_size - rest; in squashfs_listxattr()
/linux-4.4.14/drivers/media/dvb-core/
Ddvb_filter.c574 int ret=0, rest; in dvb_filter_pes2ts() local
593 rest=183-len; in dvb_filter_pes2ts()
594 if (rest) { in dvb_filter_pes2ts()
596 if (rest-1) in dvb_filter_pes2ts()
597 memset(buf+6, 0xff, rest-1); in dvb_filter_pes2ts()
599 buf[4]=rest; in dvb_filter_pes2ts()
600 memcpy(buf+5+rest, pes, len); in dvb_filter_pes2ts()
/linux-4.4.14/arch/s390/crypto/
Dprng.c98 u32 rest; member
614 if (prng_data->rest) { in prng_sha512_read()
616 p = prng_data->buf + prng_chunk_size - prng_data->rest; in prng_sha512_read()
617 n = (nbytes < prng_data->rest) ? in prng_sha512_read()
618 nbytes : prng_data->rest; in prng_sha512_read()
619 prng_data->rest -= n; in prng_sha512_read()
630 prng_data->rest = prng_chunk_size - n; in prng_sha512_read()
633 prng_data->rest = 0; in prng_sha512_read()
/linux-4.4.14/drivers/media/pci/ttpci/
Dav7110_ipack.c135 int rest = p->size - p->count; in write_ipack() local
136 memcpy(p->buf+p->count, data, rest); in write_ipack()
137 p->count += rest; in write_ipack()
139 if (count - rest > 0) in write_ipack()
140 write_ipack(p, data + rest, count - rest); in write_ipack()
Dav7110_hw.c153 int blocks, rest; in load_dram() local
159 rest = len % AV7110_BOOT_MAX_SIZE; in load_dram()
177 if (rest > 0) { in load_dram()
182 if (rest > 4) in load_dram()
184 ((u8 *)data) + i * AV7110_BOOT_MAX_SIZE, rest); in load_dram()
187 ((u8 *)data) + i * AV7110_BOOT_MAX_SIZE - 4, rest + 4); in load_dram()
190 iwdebi(av7110, DEBINOSWAP, AV7110_BOOT_SIZE, rest, 2); in load_dram()
Dav7110_av.c649 int check, rest; in av7110_p2t_write() local
730 rest = l % (TS_SIZE - 4); in av7110_p2t_write()
731 l -= rest; in av7110_p2t_write()
733 memcpy(p->pes, buf + c + l, rest); in av7110_p2t_write()
734 p->pos = rest; in av7110_p2t_write()
/linux-4.4.14/Documentation/cgroups/
Ddevices.txt77 B "c 1:3 rwm", "b 3:* rwm" all the rest
88 A "c 1:3 rwm", "c 1:5 r" all the rest
89 B "c 1:3 rwm", "c 1:5 r" all the rest
96 A "c *:3 rwm", "c 1:5 r" all the rest
97 B "c 1:3 rwm", "c 1:5 r" all the rest
Dmemory.txt22 from the rest of the system. The article on LWN [12] mentions some probable
33 rest of the system to ensure that burning does not fail due to lack
/linux-4.4.14/drivers/staging/comedi/drivers/
Dme4000.c590 int rest; in me4000_ai_round_cmd_args() local
598 rest = (cmd->start_arg * 33) % 1000; in me4000_ai_round_cmd_args()
601 if (rest > 33) in me4000_ai_round_cmd_args()
604 if (rest) in me4000_ai_round_cmd_args()
611 rest = (cmd->scan_begin_arg * 33) % 1000; in me4000_ai_round_cmd_args()
614 if (rest > 33) in me4000_ai_round_cmd_args()
617 if (rest) in me4000_ai_round_cmd_args()
624 rest = (cmd->convert_arg * 33) % 1000; in me4000_ai_round_cmd_args()
627 if (rest > 33) in me4000_ai_round_cmd_args()
630 if (rest) in me4000_ai_round_cmd_args()
/linux-4.4.14/sound/pci/
Dbt87x.c243 u32 rest; in snd_bt87x_create_risc() local
245 rest = period_bytes; in snd_bt87x_create_risc()
251 if (len > rest) in snd_bt87x_create_risc()
252 len = rest; in snd_bt87x_create_risc()
254 if (rest == period_bytes) { in snd_bt87x_create_risc()
260 if (len == rest) in snd_bt87x_create_risc()
266 rest -= len; in snd_bt87x_create_risc()
267 } while (rest > 0); in snd_bt87x_create_risc()
Dvia82xx_modem.c282 unsigned int i, idx, ofs, rest; in build_via_table() local
304 rest = fragsize; in build_via_table()
321 if (rest < r) in build_via_table()
322 r = rest; in build_via_table()
323 rest -= r; in build_via_table()
324 if (! rest) { in build_via_table()
341 } while (rest > 0); in build_via_table()
Dvia82xx.c429 unsigned int i, idx, ofs, rest; in build_via_table() local
451 rest = fragsize; in build_via_table()
467 r = snd_pcm_sgbuf_get_chunk_size(substream, ofs, rest); in build_via_table()
468 rest -= r; in build_via_table()
469 if (! rest) { in build_via_table()
486 } while (rest > 0); in build_via_table()
/linux-4.4.14/fs/nfsd/
Dnfs3acl.c242 #define PROC(name, argt, rest, relt, cache, respsize) \ argument
245 (kxdrproc_t) nfs3svc_encode_##rest##res, \
248 sizeof(struct nfsd3_##rest##res), \
Dnfs2acl.c348 #define PROC(name, argt, rest, relt, cache, respsize) \ argument
351 (kxdrproc_t) nfsaclsvc_encode_##rest##res, \
354 sizeof(struct nfsd3_##rest##res), \
Dnfs3proc.c651 #define PROC(name, argt, rest, relt, cache, respsize) \ argument
654 (kxdrproc_t) nfs3svc_encode_##rest##res, \
657 sizeof(struct nfsd3_##rest##res), \
/linux-4.4.14/fs/f2fs/
Dxattr.c449 size_t rest = buffer_size; in f2fs_listxattr() local
463 size = handler->list(handler, dentry, buffer, rest, in f2fs_listxattr()
465 if (buffer && size > rest) { in f2fs_listxattr()
472 rest -= size; in f2fs_listxattr()
474 error = buffer_size - rest; in f2fs_listxattr()
/linux-4.4.14/sound/soc/xtensa/
DKconfig7 the drivers for the rest of XTFPGA audio subsystem.
/linux-4.4.14/drivers/net/hamradio/
D6pack.c948 unsigned char checksum = 0, rest = 0, channel; in decode_std_command() local
964 rest = sp->rx_count; in decode_std_command()
965 if (rest != 0) in decode_std_command()
966 for (i = rest; i <= 3; i++) in decode_std_command()
968 if (rest == 2) in decode_std_command()
970 else if (rest == 3) in decode_std_command()
/linux-4.4.14/fs/ext2/
Dxattr.c250 size_t rest = buffer_size; in ext2_xattr_list() local
297 rest, entry->e_name, in ext2_xattr_list()
300 if (size > rest) { in ext2_xattr_list()
306 rest -= size; in ext2_xattr_list()
309 error = buffer_size - rest; /* total size */ in ext2_xattr_list()
530 size_t rest = (char *)last - (char *)here; in ext2_xattr_set() local
531 memmove((char *)here + size, here, rest); in ext2_xattr_set()
/linux-4.4.14/tools/perf/Documentation/
Djit-interface.txt13 symbolname is the rest of the line, so it could contain special characters.
Dperf-script-perl.txt24 You can avoid reading the rest of this document by running 'perf script
109 write a useful trace script. The sections below cover the rest.
126 The rest of the script can contain handler functions and support
Dperf-script-python.txt26 raw perf script stream. You can avoid reading the rest of this
27 document if an example is enough for you; the rest of the document
505 write a useful trace script. The sections below cover the rest.
525 The rest of the script can contain handler functions and support
/linux-4.4.14/fs/ufs/
Dballoc.c746 unsigned rest, offset; in ubh_scanc() local
754 rest = size; in ubh_scanc()
756 rest = uspi->s_fsize - offset; in ubh_scanc()
757 size -= rest; in ubh_scanc()
759 while ((table[*cp++] & mask) == 0 && --rest) in ubh_scanc()
761 if (rest || !size) in ubh_scanc()
766 return (size + rest); in ubh_scanc()
/linux-4.4.14/drivers/gpu/drm/savage/
Dsavage_bci.c365 unsigned int rest = SAVAGE_DMA_PAGE_SIZE - in savage_dma_alloc() local
367 unsigned int nr_pages = (n - rest + SAVAGE_DMA_PAGE_SIZE - 1) / in savage_dma_alloc()
373 cur, dev_priv->dma_pages[cur].used, n, rest, nr_pages); in savage_dma_alloc()
378 if (n < rest) in savage_dma_alloc()
379 rest = n; in savage_dma_alloc()
380 dev_priv->dma_pages[cur].used += rest; in savage_dma_alloc()
381 n -= rest; in savage_dma_alloc()
Dsavage_drv.h513 unsigned int rest = SAVAGE_DMA_PAGE_SIZE - \
515 if ((n) > rest) { \
/linux-4.4.14/tools/testing/ktest/
Dktest.pl907 my $rest;
924 $rest = $2;
948 if ($rest =~ s/\s+SKIP\b//) {
955 if ($rest =~ s/\sELSE\b//) {
968 if ($rest =~ s/\sIF\s+(.*)//) {
982 if ($rest =~ s/\s+ITERATE\s+(\d+)//) {
986 } elsif ($rest =~ s/\sOVERRIDE\b//) {
994 if (!$skip && $rest !~ /^\s*$/) {
1007 $rest = $1;
1010 $rest = "";
[all …]
/linux-4.4.14/drivers/s390/char/
Dvmur.h50 char rest[200]; member
/linux-4.4.14/drivers/input/mouse/
Dsentelic.c436 char *rest; in fsp_attr_set_setreg() local
439 reg = simple_strtoul(buf, &rest, 16); in fsp_attr_set_setreg()
440 if (rest == buf || *rest != ' ' || reg > 0xff) in fsp_attr_set_setreg()
443 retval = kstrtouint(rest + 1, 16, &val); in fsp_attr_set_setreg()
/linux-4.4.14/arch/cris/arch-v10/lib/
Dcsumcpfruser.S49 ;; Clear the rest of the destination area using memset. Preserve the
Dchecksum.S95 ;; checksum the rest of the words
Dchecksumcopy.S98 ;; copy and checksum the rest of the words
/linux-4.4.14/Documentation/devicetree/bindings/crypto/
Dqcom-qce.txt10 "core" clocks rest of the crypto block
/linux-4.4.14/Documentation/devicetree/bindings/arm/rockchip/
Dsmp-sram.txt14 The rest of the properties should follow the generic mmio-sram discription
/linux-4.4.14/arch/blackfin/kernel/
Dbfin_dma.c560 size_t bulk, rest; in dma_memcpy_nocache()
563 rest = size - bulk; in dma_memcpy_nocache()
566 _dma_memcpy(pdst + bulk, psrc + bulk, rest); in dma_memcpy_nocache()
/linux-4.4.14/Documentation/networking/
Dx25-iface.txt17 the rest of the skbuff, if any more information does exist.
25 This indicates that the rest of the skbuff contains data to be transmitted
49 This indicates that the rest of the skbuff contains data that has been
Dbaycom.txt140 Compatibility with the rest of the Linux kernel
Dde4x5.txt99 line with the rest (the DC21040 chip doesn't have a hardware timer).
DREADME.sb1000193 driver (which slows down the rest of the PC too when it is actively
Dcdc_mbim.txt149 implemented entirely in userspace, like the rest of the MBIM control
Dspider_net.txt97 to all of the rest of the descrs, from the last status change. The "nnn"
DLICENSE.qlcnic237 be a consequence of the rest of this License.
Dphy.txt279 assigned by the driver code. The rest are optional. Also, it is
DLICENSE.qlge237 be a consequence of the rest of this License.
/linux-4.4.14/arch/cris/arch-v32/lib/
Dcsumcpfruser.S51 ;; Clear the rest of the destination area using memset. Preserve the
Dchecksum.S69 ;; checksum the rest of the words
Dchecksumcopy.S70 ;; copy and checksum the rest of the words
/linux-4.4.14/drivers/gpu/drm/vmwgfx/
Dvmwgfx_fifo.c412 uint32_t rest; in vmw_fifo_res_copy() local
422 rest = bytes - chunk_size; in vmw_fifo_res_copy()
423 if (rest) in vmw_fifo_res_copy()
424 memcpy(fifo_mem + (min >> 2), buffer + (chunk_size >> 2), rest); in vmw_fifo_res_copy()
/linux-4.4.14/arch/openrisc/
DTODO.openrisc6 -- Implement the rest of the DMA API... dma_map_sg, etc.
/linux-4.4.14/fs/hugetlbfs/
Dinode.c1028 char *p, *rest; in hugetlbfs_parse_options() local
1070 max_size_opt = memparse(args[0].from, &rest); in hugetlbfs_parse_options()
1072 if (*rest == '%') in hugetlbfs_parse_options()
1081 pconfig->nr_inodes = memparse(args[0].from, &rest); in hugetlbfs_parse_options()
1086 ps = memparse(args[0].from, &rest); in hugetlbfs_parse_options()
1100 min_size_opt = memparse(args[0].from, &rest); in hugetlbfs_parse_options()
1102 if (*rest == '%') in hugetlbfs_parse_options()
/linux-4.4.14/Documentation/i2c/
Dupgrading-clients57 /* rest of the initialisation goes here. */
130 i2c_driver entry names. The rest of the probe routine will now need to be
248 /* rest of the initialisation goes here. */
/linux-4.4.14/Documentation/devicetree/bindings/arm/exynos/
Dsmp-sysram.txt17 The rest of the properties should follow the generic mmio-sram discription
/linux-4.4.14/drivers/usb/image/
DKconfig26 The scanner will appear as a scsi generic device to the rest
/linux-4.4.14/mm/
Dshmem.c2750 char *this_char, *value, *rest; in shmem_parse_options() local
2785 size = memparse(value,&rest); in shmem_parse_options()
2786 if (*rest == '%') { in shmem_parse_options()
2790 rest++; in shmem_parse_options()
2792 if (*rest) in shmem_parse_options()
2797 sbinfo->max_blocks = memparse(value, &rest); in shmem_parse_options()
2798 if (*rest) in shmem_parse_options()
2801 sbinfo->max_inodes = memparse(value, &rest); in shmem_parse_options()
2802 if (*rest) in shmem_parse_options()
2807 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777; in shmem_parse_options()
[all …]
Dmempolicy.c2684 char *rest = nodelist; in mpol_parse_str() local
2685 while (isdigit(*rest)) in mpol_parse_str()
2686 rest++; in mpol_parse_str()
2687 if (*rest) in mpol_parse_str()
/linux-4.4.14/arch/x86/um/
DKconfig69 source "arch/um/Kconfig.rest"
/linux-4.4.14/fs/reiserfs/
Dbitmap.c1149 int rest = amount_needed; in allocate_without_wrapping_disk() local
1152 while (rest > 0 && start <= finish) { in allocate_without_wrapping_disk()
1154 rest + prealloc_size, in allocate_without_wrapping_disk()
1161 while (rest > 0 && nr_allocated > 0) { in allocate_without_wrapping_disk()
1163 rest--; in allocate_without_wrapping_disk()
1183 return (amount_needed - rest); in allocate_without_wrapping_disk()
/linux-4.4.14/sound/pci/echoaudio/
Dechoaudio.c531 int err, per, rest, page, edge, offs; in init_engine() local
577 rest = params_period_bytes(hw_params); in init_engine()
578 if (offs + rest > params_buffer_bytes(hw_params)) in init_engine()
579 rest = params_buffer_bytes(hw_params) - offs; in init_engine()
580 while (rest) { in init_engine()
583 if (rest <= edge - offs) { in init_engine()
584 sglist_add_mapping(chip, pipe, addr, rest); in init_engine()
586 offs += rest; in init_engine()
587 rest = 0; in init_engine()
591 rest -= edge - offs; in init_engine()
/linux-4.4.14/drivers/staging/media/bcm2048/
DTODO23 until the rest of the driver is cleaned up. Then I have a better idea of
/linux-4.4.14/arch/h8300/lib/
Dmemcpy.S50 ;; rest
/linux-4.4.14/drivers/isdn/hardware/eicon/
Dmi_pc.h92 dword volatile rest[((0x1020 >> 2) - 6) - 0x1b - 1 - 0x03 - (sizeof(MP_XCPTC) >> 2)]; member
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dste-u300-syscon-clock.txt11 2 = rest/remaining clock
/linux-4.4.14/drivers/mmc/host/
Dusdhi6rol0.c1216 int i, rest; in usdhi6_blk_read() local
1236 rest = data->blksz % 4; in usdhi6_blk_read()
1237 for (i = 0; i < (rest + 1) / 2; i++) { in usdhi6_blk_read()
1240 if (rest > 1 && !i) in usdhi6_blk_read()
1256 int i, rest; in usdhi6_blk_write() local
1276 rest = data->blksz % 4; in usdhi6_blk_write()
1277 for (i = 0; i < (rest + 1) / 2; i++) { in usdhi6_blk_write()
1280 if (rest > 1 && !i) in usdhi6_blk_write()
/linux-4.4.14/drivers/dma/sh/
Drcar-hpbdma.c542 struct resource *chan, *comm, *rest, *mode, *irq_res; in hpb_dmae_probe() local
551 rest = platform_get_resource(pdev, IORESOURCE_MEM, 2); in hpb_dmae_probe()
573 hpbdev->reset_reg = devm_ioremap_resource(&pdev->dev, rest); in hpb_dmae_probe()
/linux-4.4.14/Documentation/video4linux/bttv/
DREADME.WINVIEW4 This card is basically the same as all the rest (Bt484A, Philips tuner),
/linux-4.4.14/Documentation/parisc/
Ddebugging9 rest of the kernel. To translate an absolute address to a virtual
/linux-4.4.14/Documentation/networking/caif/
DLinux-CAIF.txt163 'struct cflayer', just like the rest of the CAIF stack. In this way, transmit and
164 receive of packets is handled as by the rest of the layers: the 'dn->transmit()'
/linux-4.4.14/fs/ext4/
Dxattr.c401 size_t rest = buffer_size; in ext4_xattr_list_entries() local
409 rest, entry->e_name, in ext4_xattr_list_entries()
412 if (size > rest) in ext4_xattr_list_entries()
416 rest -= size; in ext4_xattr_list_entries()
419 return buffer_size - rest; in ext4_xattr_list_entries()
648 size_t rest = (void *)last - (void *)s->here + sizeof(__u32); in ext4_xattr_set_entry() local
649 memmove((void *)s->here + size, s->here, rest); in ext4_xattr_set_entry()
Dresize.c1052 int rest = sb->s_blocksize - size; in update_backups() local
1101 if (rest) in update_backups()
1102 memset(bh->b_data + size, 0, rest); in update_backups()
/linux-4.4.14/drivers/media/dvb-frontends/
Ddib0090.c188 u32 rest; member
873 u16 rest; in slopes_to_scale() local
877 rest = slopes[i].range; in slopes_to_scale()
879 rest = val; in slopes_to_scale()
880 ret += (rest * slopes[i].slope) / slopes[i].range; in slopes_to_scale()
881 val -= rest; in slopes_to_scale()
2139 …if (state->rest == 0 || state->identity.in_soc) { /* Just for 8090P SOCS where auto captrim HW bug… in dib0090_captrim_search()
2383 state->rest = Rest; in dib0090_tune()
/linux-4.4.14/fs/lockd/
Dsvc4proc.c465 #define PROC(name, xargt, xrest, argt, rest, respsize) \ argument
471 .pc_ressize = sizeof(struct nlm_##rest), \
Dsvcproc.c507 #define PROC(name, xargt, xrest, argt, rest, respsize) \ argument
513 .pc_ressize = sizeof(struct nlm_##rest), \
/linux-4.4.14/Documentation/blockdev/
Dmflash.txt12 So the rest mflash repersents mflash and gflash altogether.
Dfloppy.txt122 imposes more load on the rest of the system). If this is
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/
Dqcom,smd.txt43 Definition: the identifier for the remote processor as known by the rest
/linux-4.4.14/drivers/net/team/
DKconfig56 Only one port is active at a time and the rest of ports are used
/linux-4.4.14/arch/arc/include/asm/
Dentry.h144 ; Retrieve orig r25 and save it with rest of callee_regs
/linux-4.4.14/Documentation/dvb/
Dci.txt28 here 278 is a valid PMT PID. the rest of the values are the
71 The disadvantage is that the driver/hardware has to manage the rest. For
DREADME.dvb-usb130 to compile the driver as module. Hotplug does the rest.
/linux-4.4.14/drivers/firewire/
Dohci.c3313 u32 z, header_z, rest; in queue_iso_packet_per_buffer() local
3347 rest = payload_per_buffer; in queue_iso_packet_per_buffer()
3354 if (offset + rest < PAGE_SIZE) in queue_iso_packet_per_buffer()
3355 length = rest; in queue_iso_packet_per_buffer()
3370 rest -= length; in queue_iso_packet_per_buffer()
3393 int page, offset, rest, z, i, length; in queue_iso_buffer_fill() local
3397 rest = packet->payload_length; in queue_iso_buffer_fill()
3400 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE); in queue_iso_buffer_fill()
3402 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count)) in queue_iso_buffer_fill()
3417 if (offset + rest < PAGE_SIZE) in queue_iso_buffer_fill()
[all …]
/linux-4.4.14/drivers/nvmem/
DKconfig45 functions for QFPROM data to rest of the drivers via nvmem interface.
/linux-4.4.14/kernel/
Dsys.c1120 const char *rest = UTS_RELEASE; in override_release() local
1126 while (*rest) { in override_release()
1127 if (*rest == '.' && ++ndots >= 3) in override_release()
1129 if (!isdigit(*rest) && *rest != '.') in override_release()
1131 rest++; in override_release()
1135 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest); in override_release()
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
Dsym_hipd.c2402 u32 rest; local
2421 rest = dbc & 0xffffff;
2454 (dfifo & 0xff)) - rest) & 0x3ff;
2456 delta = ((dfifo & 0xff) - rest) & 0x7f;
2465 rest += delta;
2467 if (ss0 & OLF) rest++;
2469 if (ss0 & ORF) rest++;
2472 if (ss2 & OLF1) rest++;
2474 if (ss2 & ORF1) rest++;
2489 (unsigned) rest, (unsigned) delta);
[all …]
/linux-4.4.14/Documentation/ia64/
Dmca.txt88 radical surgery on the rest of ia64, plus extra hard wired TLB
97 cpus. SAL picks one of the cpus as the monarch and the rest are
105 cpu to return from the OS then drive the rest as slaves. Some versions
/linux-4.4.14/Documentation/watchdog/
Dconvert_drivers_to_kernel_api.txt84 refactoring. The rest can go.
117 owner must be set, the rest are optional. You will easily find corresponding
/linux-4.4.14/drivers/char/ipmi/
DKconfig35 string (byte 5 of the event) and part of the string (the rest of the
/linux-4.4.14/Documentation/video4linux/
Dsoc-camera.txt71 /* The rest of host operations are optional */
82 details about format conversion. The rest of the methods are called from
Dvideobuf135 At this point, much of the work is done; much of the rest is slipping
/linux-4.4.14/arch/arm/vfp/
Dvfphw.S111 @ rest of it
/linux-4.4.14/Documentation/filesystems/
Domfs.txt105 e_next. These have a header but lack the rest of the inode structure.
Ddlmfs.txt35 rest of this document will be geared towards those who want to use
Ddirectory-locking110 source), such loop would have to contain these objects and the rest of it
Dgfs2-glocks.txt187 node is able to use a glock vs. time that the rest of the
Dramfs-rootfs-initramfs.txt93 rest of the way up, including locating and mounting the real root device (if
/linux-4.4.14/Documentation/scsi/
Dqlogicfas.txt24 rest of the modules won't interfere with the operation. The next
DLICENSE.qla4xxx238 be a consequence of the rest of this License.
DLICENSE.qla2xxx239 be a consequence of the rest of this License.
/linux-4.4.14/Documentation/accounting/
Ddelay-accounting.txt71 to the kernel boot options. The rest of the instructions
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dexynos-dw-mshc.txt62 rest of the gpios (depending on the bus-width property) are the data lines in
/linux-4.4.14/Documentation/driver-model/
Dbus.txt32 initializes the rest of the fields in the bus object and inserts it
/linux-4.4.14/Documentation/
Defi-stub.txt75 which understands relative paths, whereas the rest of the command line
Drobust-futexes.txt114 That's all that is needed - all the rest of robust-futex cleanup is done
192 and wakes up the next futex waiter (if any). User-space does the rest of
Dfutex-requeue-pi.txt20 rest to the natural wakeup inherent in unlocking the mutex
Dhwspinlock.txt294 set the priv members of the locks. The rest of the members are set and
Dunshare.txt282 a couple _exit and the rest unshare with different combination
Dsvga.txt172 do -- in this case turn this switch off to see the rest.
DIPMI.txt655 for the driver, but makes it consistent with the rest of the watchdog
688 The rest of the bytes (11 bytes) are the panic string. If the panic string
Dmemory-barriers.txt109 CPU are perceived by the rest of the system as the operations cross the
110 interface between the CPU and rest of the system (the dotted lines).
903 that the rest of the system might perceive as the unordered set of { STORE A,
911 | | : | A=1 | } \/ the rest of the system
2693 making use of the bus to access the rest of the system - perhaps to
2697 to maintain coherency with the rest of the system;
Dassoc_array.txt352 It is also recommended that the index key begin with a hash of the rest of the
Dkobject.txt379 kobject will belong. kobject_add() will handle the rest.
/linux-4.4.14/fs/fat/
Dfatent.c671 unsigned long rest = sbi->fat_length - cur_block; in fat_count_free_clusters() local
672 fat_ent_reada(sb, &fatent, min(reada_blocks, rest)); in fat_count_free_clusters()
/linux-4.4.14/tools/perf/
Ddesign.txt39 * The MSB of the config word signifies if the rest contains cpu
41 * 7 bits are an event type and the rest of the bits are the event
264 that creates it. The rest of the group members are created
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-firmware-dmi-entries71 how the rest of the entry should be interpreted.
Dsysfs-block-bcache143 memory pressure from the rest of the system.
Dsysfs-bus-pci39 and Device ID fields are required, the rest are optional.
54 required, the rest are optional. After successfully
Dsysfs-bus-usb75 rest is optional. The Ref* tuple can be used to tell the
/linux-4.4.14/Documentation/leds/
Dleds-class.txt84 rest of the LED subsystem can be modular.
/linux-4.4.14/Documentation/hwmon/
Dadt747538 the rest of this document.
/linux-4.4.14/arch/xtensa/lib/
Dchecksum.S388 # clear the complete destination - computing the rest
/linux-4.4.14/fs/nilfs2/
Dsegment.c1053 size_t n, rest = nilfs_segctor_buffer_rest(sci); in nilfs_segctor_scan_file() local
1056 inode, &data_buffers, rest + 1, 0, LLONG_MAX); in nilfs_segctor_scan_file()
1057 if (n > rest) { in nilfs_segctor_scan_file()
1101 size_t n, rest = nilfs_segctor_buffer_rest(sci); in nilfs_segctor_scan_file_dsync() local
1104 n = nilfs_lookup_dirty_data_buffers(inode, &data_buffers, rest + 1, in nilfs_segctor_scan_file_dsync()
1112 BUG_ON(n > rest); in nilfs_segctor_scan_file_dsync()
/linux-4.4.14/drivers/block/
Dps3vram.c634 char *rest; in ps3vram_probe() local
668 ddr_size = ALIGN(memparse(size, &rest), 1024*1024); in ps3vram_probe()
/linux-4.4.14/drivers/media/usb/dvb-usb/
Ddib0700_devices.c1628 u32 freq_adc, ratio, rest, max = 0; in dib8090_compute_pll_parameters() local
1634 rest = ((fe->dtv_property_cache.frequency / 1000) * (1 << 8) / 1000) - ratio * freq_adc; in dib8090_compute_pll_parameters()
1636 if (rest > freq_adc / 2) in dib8090_compute_pll_parameters()
1637 rest = freq_adc - rest; in dib8090_compute_pll_parameters()
1638 deb_info("PLL ratio=%i rest=%i\n", pll_ratio, rest); in dib8090_compute_pll_parameters()
1639 if ((rest > max) && (rest > 717)) { in dib8090_compute_pll_parameters()
1641 max = rest; in dib8090_compute_pll_parameters()
/linux-4.4.14/drivers/usb/chipidea/
Dudc.c417 unsigned rest = hwreq->req.length; in _hardware_enqueue() local
438 if (rest == 0) in _hardware_enqueue()
441 while (rest > 0) { in _hardware_enqueue()
445 rest -= count; in _hardware_enqueue()
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-memory.txt72 0x8c-0xdc - rest of write linked list reg, 8 sets of 3 total, DMA goes here
/linux-4.4.14/Documentation/usb/
Drio.txt60 re-written and Pete Ikusz along with the rest will re-design it. I would
DWUSB-Design-overview.txt335 the rest of the stuff).
/linux-4.4.14/arch/sh/lib64/
Dcopy_user_memcpy.S28 ! bytes memory chunk to b copied, the rest of the word can be read
Dmemcpy.S30 ! bytes memory chunk to b copied, the rest of the word can be read
/linux-4.4.14/Documentation/fb/
Dfbcon.txt118 specified by the values 'n1' and 'n2'. The rest of the consoles
193 restore VGA text mode for you. With the rest, before detaching fbcon, you
Dsisfb.txt135 mem:X - size of memory for the console, rest will be used for DRI/DRM. X
/linux-4.4.14/Documentation/filesystems/nfs/
Dnfsroot.txt16 for the root filesystem. For the rest of this text 'client' means the
301 The rest of the IP layer autoconfiguration code has been written
/linux-4.4.14/Documentation/powerpc/
Dcxl.txt144 the rest of the API.
281 the rest of the event is structured. These types are
Dpmu-ebb.txt66 attributes - this is so that they interoperate correctly with the rest of the
Dfirmware-assisted-dump.txt71 the early boot OS will reserve rest of the memory above
Dpci_iov_resource_on_powernv.txt70 power of two in size. The rest is different:
/linux-4.4.14/arch/sh/lib/
Dchecksum.S389 ! zero the complete destination - computing the rest
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Darm,scpi.txt65 The rest of the properties should follow the generic mmio-sram description
/linux-4.4.14/Documentation/sound/alsa/
DChannel-Mapping-API.txt59 bytes (not the numbers) of channel values, and the rest are the
DHD-Audio.txt12 problem is broken BIOS, and the rest is the driver implementation.
122 Then the rest 8 bits are passed as the codec slots to probe
511 the codec. The rest patch entries are applied to this specified codec
/linux-4.4.14/drivers/char/agp/
DKconfig7 connect graphics cards to the rest of the system.
/linux-4.4.14/Documentation/arm/OMAP/
DDSS112 The rest of the non standard features are exported via sysfs. Whether the final
235 handled by omapfb, and the rest by the DSS.
/linux-4.4.14/Documentation/input/
Dgameport-programming.txt16 gameport generic code will take care of the rest.
Dff.txt220 so that support for it can be added to the rest of the drivers.
Djoystick-parport.txt392 The rest is the same as for Multi2 joysticks using db9.c
/linux-4.4.14/arch/arc/kernel/
Dentry-compact.S281 ; (so rest of handler executes in pure K mode)
/linux-4.4.14/Documentation/device-mapper/
Dverity.txt21 the rest of the block is padded with zeros.
/linux-4.4.14/arch/cris/boot/rescue/
Dhead_v10.S78 ;; The length is enough for downloading code that loads the rest
/linux-4.4.14/Documentation/vm/
Dhighmem.txt53 temporary maps to access the rest of the physical memory - the actual direct
/linux-4.4.14/drivers/net/ethernet/
Djme.c1390 int rest; in jme_poll() local
1392 rest = jme_process_receive(jme, JME_NAPI_WEIGHT_VAL(budget)); in jme_poll()
1401 if (rest) { in jme_poll()
1406 JME_NAPI_WEIGHT_SET(budget, rest); in jme_poll()
1407 return JME_NAPI_WEIGHT_VAL(budget) - rest; in jme_poll()
/linux-4.4.14/Documentation/arm/
DInterrupts49 GPIO0-10, and another for all the rest. It is just a container for
Dcluster-pm-race-avoidance.txt174 the kernel. The kernel handles the rest of the resume
/linux-4.4.14/arch/ia64/include/asm/
Dpal.h961 ia64_pal_cache_init (u64 level, u64 cache_type, u64 rest) in ia64_pal_cache_init() argument
964 PAL_CALL(iprv, PAL_CACHE_INIT, level, cache_type, rest); in ia64_pal_cache_init()
/linux-4.4.14/arch/s390/kernel/
Dhead.S162 bas %r14,.Lloader # load rest of ipl image
/linux-4.4.14/Documentation/metag/
Dkernel-ABI.txt103 pointer to be loaded for storing the rest of the context.
/linux-4.4.14/drivers/mtd/chips/
DKconfig155 unique set of values. The rest is user-programmable.
/linux-4.4.14/Documentation/thermal/
Dsysfs-api.txt133 zone. This is relative to the rest of the cooling
293 is relative to the rest of cooling devices in the thermal
Dintel_powerclamp.txt239 may take an additional period for the rest of the CPUs to catch up
/linux-4.4.14/Documentation/virtual/kvm/
Dtimekeeping.txt354 newly arriving CPUs to that of the rest of the system, resulting in
363 may not have a TSC value that is synchronized with the rest of the system.
365 to a value matching the rest of the system, but a perfect match is usually not
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DOverview.txt279 with the rest of the initialisation code
/linux-4.4.14/fs/affs/
DChanges25 a multiple of the blocksize, the rest of the
/linux-4.4.14/arch/um/
DKconfig.net117 with the rest of the world using Virtual Distributed Ethernet,
/linux-4.4.14/Documentation/RCU/
Dchecklist.txt192 expedited primitive, and will be much much easier on the rest
194 the rest of the system.
/linux-4.4.14/drivers/net/usb/
Dhso.c998 u32 rest = urb->actual_length % le16_to_cpu(max_packet_size); in fix_crc_bug() local
1000 if (((rest == 5) || (rest == 6)) && in fix_crc_bug()
/linux-4.4.14/Documentation/power/
Dsuspend-and-cpuhotplug.txt185 b. When some of the CPUs are different than the rest:
/linux-4.4.14/Documentation/scheduler/
Dsched-design-CFS.txt45 Most of the rest of CFS's design just falls out of this really simple concept,
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Ddcsr.txt8 the integration of the block with the rest of the chip.
/linux-4.4.14/drivers/s390/net/
Dqeth_core_main.c3855 int hroom, inpage, rest; in qeth_hdr_chk_and_bounce() local
3861 rest = len - inpage; in qeth_hdr_chk_and_bounce()
3862 if (rest > hroom) in qeth_hdr_chk_and_bounce()
3864 memmove(skb->data - rest, skb->data, skb->len - skb->data_len); in qeth_hdr_chk_and_bounce()
3865 skb->data -= rest; in qeth_hdr_chk_and_bounce()
3866 skb->tail -= rest; in qeth_hdr_chk_and_bounce()
3868 QETH_DBF_MESSAGE(2, "skb bounce len: %d rest: %d\n", len, rest); in qeth_hdr_chk_and_bounce()
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-cd.1994-2004220 * 4.55 Sep 1, 1999 - Eliminated the rest of the audio ioctls, except
/linux-4.4.14/Documentation/frv/
Dfeatures.txt124 (2) All other tiles are arranged to permit userspace access to the rest
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt438 # a mount options string (the rest of the parameters).
450 # a mount option string (the rest of the parameters).
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dentry.S210 ;; just get the PC value to restart it with, and skip the rest of
/linux-4.4.14/arch/arc/
DKconfig454 kernel. Enable this to potentially allow access to rest of 2G and PAE
/linux-4.4.14/Documentation/nvdimm/
Dnvdimm.txt240 named "pm1.0", the rest is reclaimed in 4 BLK-aperture namespaces (for
564 minimal impact to the rest of LIBNVDIMM.
/linux-4.4.14/Documentation/isdn/
DREADME.sc220 "encap" to syncppp. With this done, the rest of the steps, iv) to x)
/linux-4.4.14/Documentation/target/
Dtcmu-design.txt42 local storage needed for the exported SCSI LUN. Like the rest of LIO,
/linux-4.4.14/Documentation/trace/
Dftrace-design.txt166 the fault recovery table (the asm(...) code). The rest should be the same
Dftrace.txt61 within the debugfs. The rest of the document will assume that you are in
154 than requested, the rest of the page will be used,
707 The rest is the same as the 'trace' file.
2139 the rest of the instruction not covered by the breakpoint. Sync
/linux-4.4.14/arch/m68k/fpsp040/
Dbindec.S394 bgts no_inf |if false, skip rest
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/
Dhub.fuc113 // fifo level triggered, rest edge
/linux-4.4.14/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt847 on the local net, and the rest of the net.
1002 either, you can skip the rest of this section.
1069 To reach the rest of the world, you should set a default route to the
1638 isn't acceptable for some reason. The rest of the arguments describe
1673 the rest of the network.
3679 that happened. The rest of the structure looks fine, so this probably
3942 Replace eth0 with the interface that you use to talk to the rest of
/linux-4.4.14/Documentation/rapidio/
Drapidio.txt260 initializes pointers to the rest of switch specific operations, and performs
/linux-4.4.14/Documentation/development-process/
D1.Intro15 The rest of this section covers the scope of the kernel development process
D5.Posting129 quickly and clearly communicates its purpose to the rest of the world. To
/linux-4.4.14/arch/sh/
DKconfig791 first part of the romImage which in turn loads the rest the kernel
/linux-4.4.14/firmware/keyspan_pda/
Dkeyspan_pda.S966 movx @dptr, a ; in[0] signals that rest of IN is rx data
/linux-4.4.14/Documentation/crypto/
Ddescore-readme.txt93 the rest of the mit des library.
/linux-4.4.14/Documentation/kbuild/
Dmodules.txt237 off to separate the kbuild part from the rest.
/linux-4.4.14/drivers/staging/rtl8192u/
Dcopying227 be a consequence of the rest of this License.
/linux-4.4.14/tools/usb/usbip/
DCOPYING227 be a consequence of the rest of this License.

12