/linux-4.4.14/drivers/scsi/ |
D | script_asm.pl | 416 $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 …]
|
D | scsi_debug.c | 2365 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 …]
|
D | ncr53c8xx.c | 6246 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/ |
D | show_delta | 49 (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:
|
D | checkpatch.pl | 2740 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/ |
D | radio-terratec.c | 86 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/ |
D | memcpy.S | 173 #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/ |
D | parse-options.c | 250 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 …]
|
D | session.c | 1217 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/ |
D | dasd_eer.c | 133 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/ |
D | csum-wrappers_64.c | 140 __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()
|
D | checksum_32.S | 381 # 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/ |
D | xattr.c | 49 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/ |
D | dvb_filter.c | 574 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/ |
D | prng.c | 98 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/ |
D | av7110_ipack.c | 135 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()
|
D | av7110_hw.c | 153 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()
|
D | av7110_av.c | 649 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/ |
D | devices.txt | 77 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
|
D | memory.txt | 22 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/ |
D | me4000.c | 590 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/ |
D | bt87x.c | 243 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()
|
D | via82xx_modem.c | 282 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()
|
D | via82xx.c | 429 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/ |
D | nfs3acl.c | 242 #define PROC(name, argt, rest, relt, cache, respsize) \ argument 245 (kxdrproc_t) nfs3svc_encode_##rest##res, \ 248 sizeof(struct nfsd3_##rest##res), \
|
D | nfs2acl.c | 348 #define PROC(name, argt, rest, relt, cache, respsize) \ argument 351 (kxdrproc_t) nfsaclsvc_encode_##rest##res, \ 354 sizeof(struct nfsd3_##rest##res), \
|
D | nfs3proc.c | 651 #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/ |
D | xattr.c | 449 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/ |
D | Kconfig | 7 the drivers for the rest of XTFPGA audio subsystem.
|
/linux-4.4.14/drivers/net/hamradio/ |
D | 6pack.c | 948 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/ |
D | xattr.c | 250 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/ |
D | jit-interface.txt | 13 symbolname is the rest of the line, so it could contain special characters.
|
D | perf-script-perl.txt | 24 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
|
D | perf-script-python.txt | 26 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/ |
D | balloc.c | 746 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/ |
D | savage_bci.c | 365 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()
|
D | savage_drv.h | 513 unsigned int rest = SAVAGE_DMA_PAGE_SIZE - \ 515 if ((n) > rest) { \
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 907 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/ |
D | vmur.h | 50 char rest[200]; member
|
/linux-4.4.14/drivers/input/mouse/ |
D | sentelic.c | 436 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/ |
D | csumcpfruser.S | 49 ;; Clear the rest of the destination area using memset. Preserve the
|
D | checksum.S | 95 ;; checksum the rest of the words
|
D | checksumcopy.S | 98 ;; copy and checksum the rest of the words
|
/linux-4.4.14/Documentation/devicetree/bindings/crypto/ |
D | qcom-qce.txt | 10 "core" clocks rest of the crypto block
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/rockchip/ |
D | smp-sram.txt | 14 The rest of the properties should follow the generic mmio-sram discription
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | bfin_dma.c | 560 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/ |
D | x25-iface.txt | 17 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
|
D | baycom.txt | 140 Compatibility with the rest of the Linux kernel
|
D | de4x5.txt | 99 line with the rest (the DC21040 chip doesn't have a hardware timer).
|
D | README.sb1000 | 193 driver (which slows down the rest of the PC too when it is actively
|
D | cdc_mbim.txt | 149 implemented entirely in userspace, like the rest of the MBIM control
|
D | spider_net.txt | 97 to all of the rest of the descrs, from the last status change. The "nnn"
|
D | LICENSE.qlcnic | 237 be a consequence of the rest of this License.
|
D | phy.txt | 279 assigned by the driver code. The rest are optional. Also, it is
|
D | LICENSE.qlge | 237 be a consequence of the rest of this License.
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
D | csumcpfruser.S | 51 ;; Clear the rest of the destination area using memset. Preserve the
|
D | checksum.S | 69 ;; checksum the rest of the words
|
D | checksumcopy.S | 70 ;; copy and checksum the rest of the words
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_fifo.c | 412 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/ |
D | TODO.openrisc | 6 -- Implement the rest of the DMA API... dma_map_sg, etc.
|
/linux-4.4.14/fs/hugetlbfs/ |
D | inode.c | 1028 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/ |
D | upgrading-clients | 57 /* 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/ |
D | smp-sysram.txt | 17 The rest of the properties should follow the generic mmio-sram discription
|
/linux-4.4.14/drivers/usb/image/ |
D | Kconfig | 26 The scanner will appear as a scsi generic device to the rest
|
/linux-4.4.14/mm/ |
D | shmem.c | 2750 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 …]
|
D | mempolicy.c | 2684 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/ |
D | Kconfig | 69 source "arch/um/Kconfig.rest"
|
/linux-4.4.14/fs/reiserfs/ |
D | bitmap.c | 1149 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/ |
D | echoaudio.c | 531 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/ |
D | TODO | 23 until the rest of the driver is cleaned up. Then I have a better idea of
|
/linux-4.4.14/arch/h8300/lib/ |
D | memcpy.S | 50 ;; rest
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
D | mi_pc.h | 92 dword volatile rest[((0x1020 >> 2) - 6) - 0x1b - 1 - 0x03 - (sizeof(MP_XCPTC) >> 2)]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | ste-u300-syscon-clock.txt | 11 2 = rest/remaining clock
|
/linux-4.4.14/drivers/mmc/host/ |
D | usdhi6rol0.c | 1216 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/ |
D | rcar-hpbdma.c | 542 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/ |
D | README.WINVIEW | 4 This card is basically the same as all the rest (Bt484A, Philips tuner),
|
/linux-4.4.14/Documentation/parisc/ |
D | debugging | 9 rest of the kernel. To translate an absolute address to a virtual
|
/linux-4.4.14/Documentation/networking/caif/ |
D | Linux-CAIF.txt | 163 '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/ |
D | xattr.c | 401 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()
|
D | resize.c | 1052 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/ |
D | dib0090.c | 188 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/ |
D | svc4proc.c | 465 #define PROC(name, xargt, xrest, argt, rest, respsize) \ argument 471 .pc_ressize = sizeof(struct nlm_##rest), \
|
D | svcproc.c | 507 #define PROC(name, xargt, xrest, argt, rest, respsize) \ argument 513 .pc_ressize = sizeof(struct nlm_##rest), \
|
/linux-4.4.14/Documentation/blockdev/ |
D | mflash.txt | 12 So the rest mflash repersents mflash and gflash altogether.
|
D | floppy.txt | 122 imposes more load on the rest of the system). If this is
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,smd.txt | 43 Definition: the identifier for the remote processor as known by the rest
|
/linux-4.4.14/drivers/net/team/ |
D | Kconfig | 56 Only one port is active at a time and the rest of ports are used
|
/linux-4.4.14/arch/arc/include/asm/ |
D | entry.h | 144 ; Retrieve orig r25 and save it with rest of callee_regs
|
/linux-4.4.14/Documentation/dvb/ |
D | ci.txt | 28 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
|
D | README.dvb-usb | 130 to compile the driver as module. Hotplug does the rest.
|
/linux-4.4.14/drivers/firewire/ |
D | ohci.c | 3313 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/ |
D | Kconfig | 45 functions for QFPROM data to rest of the drivers via nvmem interface.
|
/linux-4.4.14/kernel/ |
D | sys.c | 1120 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/ |
D | sym_hipd.c | 2402 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/ |
D | mca.txt | 88 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/ |
D | convert_drivers_to_kernel_api.txt | 84 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/ |
D | Kconfig | 35 string (byte 5 of the event) and part of the string (the rest of the
|
/linux-4.4.14/Documentation/video4linux/ |
D | soc-camera.txt | 71 /* The rest of host operations are optional */ 82 details about format conversion. The rest of the methods are called from
|
D | videobuf | 135 At this point, much of the work is done; much of the rest is slipping
|
/linux-4.4.14/arch/arm/vfp/ |
D | vfphw.S | 111 @ rest of it
|
/linux-4.4.14/Documentation/filesystems/ |
D | omfs.txt | 105 e_next. These have a header but lack the rest of the inode structure.
|
D | dlmfs.txt | 35 rest of this document will be geared towards those who want to use
|
D | directory-locking | 110 source), such loop would have to contain these objects and the rest of it
|
D | gfs2-glocks.txt | 187 node is able to use a glock vs. time that the rest of the
|
D | ramfs-rootfs-initramfs.txt | 93 rest of the way up, including locating and mounting the real root device (if
|
/linux-4.4.14/Documentation/scsi/ |
D | qlogicfas.txt | 24 rest of the modules won't interfere with the operation. The next
|
D | LICENSE.qla4xxx | 238 be a consequence of the rest of this License.
|
D | LICENSE.qla2xxx | 239 be a consequence of the rest of this License.
|
/linux-4.4.14/Documentation/accounting/ |
D | delay-accounting.txt | 71 to the kernel boot options. The rest of the instructions
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | exynos-dw-mshc.txt | 62 rest of the gpios (depending on the bus-width property) are the data lines in
|
/linux-4.4.14/Documentation/driver-model/ |
D | bus.txt | 32 initializes the rest of the fields in the bus object and inserts it
|
/linux-4.4.14/Documentation/ |
D | efi-stub.txt | 75 which understands relative paths, whereas the rest of the command line
|
D | robust-futexes.txt | 114 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
|
D | futex-requeue-pi.txt | 20 rest to the natural wakeup inherent in unlocking the mutex
|
D | hwspinlock.txt | 294 set the priv members of the locks. The rest of the members are set and
|
D | unshare.txt | 282 a couple _exit and the rest unshare with different combination
|
D | svga.txt | 172 do -- in this case turn this switch off to see the rest.
|
D | IPMI.txt | 655 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
|
D | memory-barriers.txt | 109 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;
|
D | assoc_array.txt | 352 It is also recommended that the index key begin with a hash of the rest of the
|
D | kobject.txt | 379 kobject will belong. kobject_add() will handle the rest.
|
/linux-4.4.14/fs/fat/ |
D | fatent.c | 671 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/ |
D | design.txt | 39 * 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/ |
D | sysfs-firmware-dmi-entries | 71 how the rest of the entry should be interpreted.
|
D | sysfs-block-bcache | 143 memory pressure from the rest of the system.
|
D | sysfs-bus-pci | 39 and Device ID fields are required, the rest are optional. 54 required, the rest are optional. After successfully
|
D | sysfs-bus-usb | 75 rest is optional. The Ref* tuple can be used to tell the
|
/linux-4.4.14/Documentation/leds/ |
D | leds-class.txt | 84 rest of the LED subsystem can be modular.
|
/linux-4.4.14/Documentation/hwmon/ |
D | adt7475 | 38 the rest of this document.
|
/linux-4.4.14/arch/xtensa/lib/ |
D | checksum.S | 388 # clear the complete destination - computing the rest
|
/linux-4.4.14/fs/nilfs2/ |
D | segment.c | 1053 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/ |
D | ps3vram.c | 634 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/ |
D | dib0700_devices.c | 1628 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/ |
D | udc.c | 417 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/ |
D | fw-memory.txt | 72 0x8c-0xdc - rest of write linked list reg, 8 sets of 3 total, DMA goes here
|
/linux-4.4.14/Documentation/usb/ |
D | rio.txt | 60 re-written and Pete Ikusz along with the rest will re-design it. I would
|
D | WUSB-Design-overview.txt | 335 the rest of the stuff).
|
/linux-4.4.14/arch/sh/lib64/ |
D | copy_user_memcpy.S | 28 ! bytes memory chunk to b copied, the rest of the word can be read
|
D | memcpy.S | 30 ! bytes memory chunk to b copied, the rest of the word can be read
|
/linux-4.4.14/Documentation/fb/ |
D | fbcon.txt | 118 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
|
D | sisfb.txt | 135 mem:X - size of memory for the console, rest will be used for DRI/DRM. X
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfsroot.txt | 16 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/ |
D | cxl.txt | 144 the rest of the API. 281 the rest of the event is structured. These types are
|
D | pmu-ebb.txt | 66 attributes - this is so that they interoperate correctly with the rest of the
|
D | firmware-assisted-dump.txt | 71 the early boot OS will reserve rest of the memory above
|
D | pci_iov_resource_on_powernv.txt | 70 power of two in size. The rest is different:
|
/linux-4.4.14/arch/sh/lib/ |
D | checksum.S | 389 ! zero the complete destination - computing the rest
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | arm,scpi.txt | 65 The rest of the properties should follow the generic mmio-sram description
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | Channel-Mapping-API.txt | 59 bytes (not the numbers) of channel values, and the rest are the
|
D | HD-Audio.txt | 12 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/ |
D | Kconfig | 7 connect graphics cards to the rest of the system.
|
/linux-4.4.14/Documentation/arm/OMAP/ |
D | DSS | 112 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/ |
D | gameport-programming.txt | 16 gameport generic code will take care of the rest.
|
D | ff.txt | 220 so that support for it can be added to the rest of the drivers.
|
D | joystick-parport.txt | 392 The rest is the same as for Multi2 joysticks using db9.c
|
/linux-4.4.14/arch/arc/kernel/ |
D | entry-compact.S | 281 ; (so rest of handler executes in pure K mode)
|
/linux-4.4.14/Documentation/device-mapper/ |
D | verity.txt | 21 the rest of the block is padded with zeros.
|
/linux-4.4.14/arch/cris/boot/rescue/ |
D | head_v10.S | 78 ;; The length is enough for downloading code that loads the rest
|
/linux-4.4.14/Documentation/vm/ |
D | highmem.txt | 53 temporary maps to access the rest of the physical memory - the actual direct
|
/linux-4.4.14/drivers/net/ethernet/ |
D | jme.c | 1390 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/ |
D | Interrupts | 49 GPIO0-10, and another for all the rest. It is just a container for
|
D | cluster-pm-race-avoidance.txt | 174 the kernel. The kernel handles the rest of the resume
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | pal.h | 961 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/ |
D | head.S | 162 bas %r14,.Lloader # load rest of ipl image
|
/linux-4.4.14/Documentation/metag/ |
D | kernel-ABI.txt | 103 pointer to be loaded for storing the rest of the context.
|
/linux-4.4.14/drivers/mtd/chips/ |
D | Kconfig | 155 unique set of values. The rest is user-programmable.
|
/linux-4.4.14/Documentation/thermal/ |
D | sysfs-api.txt | 133 zone. This is relative to the rest of the cooling 293 is relative to the rest of cooling devices in the thermal
|
D | intel_powerclamp.txt | 239 may take an additional period for the rest of the CPUs to catch up
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | timekeeping.txt | 354 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/ |
D | Overview.txt | 279 with the rest of the initialisation code
|
/linux-4.4.14/fs/affs/ |
D | Changes | 25 a multiple of the blocksize, the rest of the
|
/linux-4.4.14/arch/um/ |
D | Kconfig.net | 117 with the rest of the world using Virtual Distributed Ethernet,
|
/linux-4.4.14/Documentation/RCU/ |
D | checklist.txt | 192 expedited primitive, and will be much much easier on the rest 194 the rest of the system.
|
/linux-4.4.14/drivers/net/usb/ |
D | hso.c | 998 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/ |
D | suspend-and-cpuhotplug.txt | 185 b. When some of the CPUs are different than the rest:
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-design-CFS.txt | 45 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/ |
D | dcsr.txt | 8 the integration of the block with the rest of the chip.
|
/linux-4.4.14/drivers/s390/net/ |
D | qeth_core_main.c | 3855 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/ |
D | ChangeLog.ide-cd.1994-2004 | 220 * 4.55 Sep 1, 1999 - Eliminated the rest of the audio ioctls, except
|
/linux-4.4.14/Documentation/frv/ |
D | features.txt | 124 (2) All other tiles are arranged to permit userspace access to the rest
|
/linux-4.4.14/Documentation/laptops/ |
D | laptop-mode.txt | 438 # 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/ |
D | entry.S | 210 ;; just get the PC value to restart it with, and skip the rest of
|
/linux-4.4.14/arch/arc/ |
D | Kconfig | 454 kernel. Enable this to potentially allow access to rest of 2G and PAE
|
/linux-4.4.14/Documentation/nvdimm/ |
D | nvdimm.txt | 240 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/ |
D | README.sc | 220 "encap" to syncppp. With this done, the rest of the steps, iv) to x)
|
/linux-4.4.14/Documentation/target/ |
D | tcmu-design.txt | 42 local storage needed for the exported SCSI LUN. Like the rest of LIO,
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace-design.txt | 166 the fault recovery table (the asm(...) code). The rest should be the same
|
D | ftrace.txt | 61 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/ |
D | bindec.S | 394 bgts no_inf |if false, skip rest
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
D | hub.fuc | 113 // fifo level triggered, rest edge
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 847 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/ |
D | rapidio.txt | 260 initializes pointers to the rest of switch specific operations, and performs
|
/linux-4.4.14/Documentation/development-process/ |
D | 1.Intro | 15 The rest of this section covers the scope of the kernel development process
|
D | 5.Posting | 129 quickly and clearly communicates its purpose to the rest of the world. To
|
/linux-4.4.14/arch/sh/ |
D | Kconfig | 791 first part of the romImage which in turn loads the rest the kernel
|
/linux-4.4.14/firmware/keyspan_pda/ |
D | keyspan_pda.S | 966 movx @dptr, a ; in[0] signals that rest of IN is rx data
|
/linux-4.4.14/Documentation/crypto/ |
D | descore-readme.txt | 93 the rest of the mit des library.
|
/linux-4.4.14/Documentation/kbuild/ |
D | modules.txt | 237 off to separate the kbuild part from the rest.
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 227 be a consequence of the rest of this License.
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 227 be a consequence of the rest of this License.
|