/linux-4.4.14/arch/ia64/kernel/ |
D | head.S | 643 ldf.fill.nta f32=[in0],loc0 644 ldf.fill.nta f40=[ r3],loc0 645 ldf.fill.nta f48=[r14],loc0 646 ldf.fill.nta f56=[r15],loc0 648 ldf.fill.nta f64=[in0],loc0 649 ldf.fill.nta f72=[ r3],loc0 650 ldf.fill.nta f80=[r14],loc0 651 ldf.fill.nta f88=[r15],loc0 653 ldf.fill.nta f96=[in0],loc1 654 ldf.fill.nta f104=[ r3],loc1 [all …]
|
D | entry.S | 92 ldf.fill f12=[sp]; mov f13=f0; mov b5=r0 93 ldf.fill f14=[sp]; ldf.fill f15=[sp]; mov f16=f0 94 ldf.fill f17=[sp]; ldf.fill f18=[sp]; mov f19=f0 95 ldf.fill f20=[sp]; ldf.fill f21=[sp]; mov f22=f0 96 ldf.fill f23=[sp]; ldf.fill f24=[sp]; mov f25=f0 97 ldf.fill f26=[sp]; ldf.fill f27=[sp]; mov f28=f0 98 ldf.fill f29=[sp]; ldf.fill f30=[sp]; mov f31=f0 396 ldf.fill f2=[r14],32 397 ldf.fill f3=[r15],32 399 ldf.fill f4=[r14],32 [all …]
|
D | mca_asm.S | 728 ldf.fill f2=[temp1],32 729 ldf.fill f3=[temp2],32 731 ldf.fill f4=[temp1],32 732 ldf.fill f5=[temp2],32 734 ldf.fill f12=[temp1],32 735 ldf.fill f13=[temp2],32 737 ldf.fill f14=[temp1],32 738 ldf.fill f15=[temp2],32 740 ldf.fill f16=[temp1],32 741 ldf.fill f17=[temp2],32 [all …]
|
D | gate.S | 176 ldf.fill f6=[base0],32 177 ldf.fill f7=[base1],32 179 ldf.fill f8=[base0],32 180 ldf.fill f9=[base1],32 182 ldf.fill f10=[base0],32 183 ldf.fill f11=[base1],32 185 ldf.fill f12=[base0],32 186 ldf.fill f13=[base1],32 188 ldf.fill f14=[base0],32 189 ldf.fill f15=[base1],32
|
D | pal.S | 289 ldf.fill f10 = [in0],32 290 ldf.fill f11 = [r2],32 292 ldf.fill f12 = [in0],32 293 ldf.fill f13 = [r2],32 295 ldf.fill f14 = [in0],32 296 ldf.fill f15 = [r2],32
|
D | relocate_kernel.S | 177 .fill 8192, 1, 0 180 .fill 8192, 1, 0
|
/linux-4.4.14/lib/ |
D | decompress_unlz4.c | 35 long (*fill)(void *, unsigned long), in unlz4() 66 if (input && fill) { in unlz4() 71 } else if (!fill) { in unlz4() 86 if (fill) { in unlz4() 87 size = fill(inp, 4); in unlz4() 96 if (!fill) { in unlz4() 110 if (fill) { in unlz4() 111 size = fill(inp, 4); in unlz4() 122 if (!fill) { in unlz4() 135 if (!fill) { in unlz4() [all …]
|
D | decompress_unlzo.c | 113 long (*fill)(void *, unsigned long), in unlzo() 138 if (input && fill) { in unlzo() 143 } else if (!fill) { in unlzo() 158 if (fill) { in unlzo() 166 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo() 176 if (fill) { in unlzo() 187 if (fill && in_len < 4) { in unlzo() 188 skip = fill(in_buf + in_len, 4 - in_len); in unlzo() 213 if (fill && in_len < 8) { in unlzo() 214 skip = fill(in_buf + in_len, 8 - in_len); in unlzo() [all …]
|
D | decompress_inflate.c | 38 long (*fill)(void*, unsigned long), in __gunzip() 84 if (!fill) in __gunzip() 85 fill = nofill; in __gunzip() 88 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip() 133 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip() 187 long (*fill)(void*, unsigned long), in gunzip() 193 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip() 197 long (*fill)(void*, unsigned long), in __decompress() 203 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()
|
D | btree.c | 417 int fill; in btree_grow() local 423 fill = getfill(geo, head->node, 0); in btree_grow() 424 setkey(geo, node, 0, bkey(geo, head->node, fill - 1)); in btree_grow() 435 int fill; in btree_shrink() local 441 fill = getfill(geo, node, 0); in btree_shrink() 442 BUG_ON(fill > 1); in btree_shrink() 453 int i, pos, fill, err; in btree_insert_level() local 465 fill = getfill(geo, node, pos); in btree_insert_level() 467 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0); in btree_insert_level() 469 if (fill == geo->no_pairs) { in btree_insert_level() [all …]
|
D | decompress_unxz.c | 252 long (*fill)(void *dest, unsigned long size), in unxz() 269 if (fill == NULL && flush == NULL) in unxz() 299 if (fill == NULL && flush == NULL) { in unxz() 303 if (b.in_pos == b.in_size && fill != NULL) { in unxz() 309 in_size = fill(in, XZ_IOBUF_SIZE); in unxz() 399 long (*fill)(void*, unsigned long), in __decompress() 405 return unxz(buf, len, fill, flush, out_buf, pos, error); in __decompress()
|
D | decompress_bunzip2.c | 95 long (*fill)(void*, unsigned long); member 128 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits() 629 long (*fill)(void*, unsigned long)) in start_bunzip() 648 if (fill != NULL) in start_bunzip() 649 bd->fill = fill; in start_bunzip() 651 bd->fill = nofill; in start_bunzip() 679 long (*fill)(void*, unsigned long), in bunzip2() 705 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2() 747 long (*fill)(void*, unsigned long), in __decompress() 753 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()
|
D | decompress_unlzma.c | 68 long (*fill)(void*, unsigned long); member 93 rc->buffer_size = rc->fill((char *)rc->buffer, LZMA_IOBUF_SIZE); in rc_read() 102 long (*fill)(void*, unsigned long), in rc_init() 105 if (fill) in rc_init() 106 rc->fill = fill; in rc_init() 108 rc->fill = nofill; in rc_init() 538 long (*fill)(void*, unsigned long), in unlzma() 578 rc_init(&rc, fill, inbuf, in_len); in unlzma() 671 long (*fill)(void*, unsigned long), in __decompress() 677 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
|
/linux-4.4.14/drivers/scsi/libfc/ |
D | fc_frame.c | 77 size_t fill; in fc_frame_alloc_fill() local 79 fill = payload_len % 4; in fc_frame_alloc_fill() 80 if (fill != 0) in fc_frame_alloc_fill() 81 fill = 4 - fill; in fc_frame_alloc_fill() 82 fp = _fc_frame_alloc(payload_len + fill); in fc_frame_alloc_fill() 84 memset((char *) fr_hdr(fp) + payload_len, 0, fill); in fc_frame_alloc_fill()
|
D | fc_libfc.c | 172 u32 fill; in fc_fill_hdr() local 178 fill = -fr_len(fp) & 3; in fc_fill_hdr() 179 if (fill) { in fc_fill_hdr() 181 memset(skb_put(fp_skb(fp), fill), 0, fill); in fc_fill_hdr() 182 f_ctl |= fill; in fc_fill_hdr()
|
D | fc_exch.c | 276 u16 fill; in fc_exch_setup_hdr() local 295 fill = fr_len(fp) & 3; in fc_exch_setup_hdr() 296 if (fill) { in fc_exch_setup_hdr() 297 fill = 4 - fill; in fc_exch_setup_hdr() 299 skb_put(fp_skb(fp), fill); in fc_exch_setup_hdr() 300 hton24(fh->fh_f_ctl, f_ctl | fill); in fc_exch_setup_hdr()
|
/linux-4.4.14/tools/testing/selftests/powerpc/copyloops/ |
D | validate.c | 18 void *fill) in do_one() argument 29 memcpy(srcp, fill, len); in do_one() 64 char *src, *dst, *redzone, *fill; in test_copy_loop() local 71 fill = malloc(BUFLEN); in test_copy_loop() 73 if (!src || !dst || !redzone || !fill) { in test_copy_loop() 82 fill[i] = i & 0xff; in test_copy_loop() 88 redzone, fill); in test_copy_loop()
|
/linux-4.4.14/drivers/net/ethernet/pasemi/ |
D | pasemi_mac.c | 629 int fill, count; in pasemi_mac_replenish_rx_ring() local 634 fill = rx_ring(mac)->next_to_fill; in pasemi_mac_replenish_rx_ring() 636 struct pasemi_mac_buffer *info = &RX_DESC_INFO(rx, fill); in pasemi_mac_replenish_rx_ring() 637 u64 *buff = &RX_BUFF(rx, fill); in pasemi_mac_replenish_rx_ring() 662 fill++; in pasemi_mac_replenish_rx_ring() 1399 int cs_size, i, fill, hdr, cpyhdr, evt; in pasemi_mac_queue_csdesc() local 1423 fill = csring->next_to_fill; in pasemi_mac_queue_csdesc() 1424 hdr = fill; in pasemi_mac_queue_csdesc() 1426 CS_DESC(csring, fill++) = fund; in pasemi_mac_queue_csdesc() 1428 csdma = csring->chan.ring_dma + (fill & (CS_RING_SIZE-1)) * 8 + 2; in pasemi_mac_queue_csdesc() [all …]
|
/linux-4.4.14/lib/zlib_inflate/ |
D | inftrees.c | 36 unsigned fill; /* index for replicating entries */ in zlib_inflate_table() local 220 fill = 1U << curr; in zlib_inflate_table() 221 min = fill; /* save offset to next table */ in zlib_inflate_table() 223 fill -= incr; in zlib_inflate_table() 224 next[(huff >> drop) + fill] = this; in zlib_inflate_table() 225 } while (fill != 0); in zlib_inflate_table()
|
/linux-4.4.14/drivers/crypto/ |
D | mxs-dcp.c | 79 uint32_t fill; member 235 desc->size = actx->fill; in mxs_dcp_run_aes() 275 actx->fill = 0; in mxs_dcp_aes_block_crypt() 294 if (actx->fill + len > out_off) in mxs_dcp_aes_block_crypt() 295 clen = out_off - actx->fill; in mxs_dcp_aes_block_crypt() 299 memcpy(in_buf + actx->fill, src_buf, clen); in mxs_dcp_aes_block_crypt() 302 actx->fill += clen; in mxs_dcp_aes_block_crypt() 308 if (actx->fill == out_off || sg_is_last(src)) { in mxs_dcp_aes_block_crypt() 315 while (dst && actx->fill) { in mxs_dcp_aes_block_crypt() 321 actx->fill); in mxs_dcp_aes_block_crypt() [all …]
|
/linux-4.4.14/drivers/vfio/pci/ |
D | vfio_pci.c | 334 struct vfio_pci_fill_info *fill = data; in vfio_pci_fill_devs() local 337 if (fill->cur == fill->max) in vfio_pci_fill_devs() 344 fill->devices[fill->cur].group_id = iommu_group_id(iommu_group); in vfio_pci_fill_devs() 345 fill->devices[fill->cur].segment = pci_domain_nr(pdev->bus); in vfio_pci_fill_devs() 346 fill->devices[fill->cur].bus = pdev->bus->number; in vfio_pci_fill_devs() 347 fill->devices[fill->cur].devfn = pdev->devfn; in vfio_pci_fill_devs() 348 fill->cur++; in vfio_pci_fill_devs() 615 struct vfio_pci_fill_info fill = { 0 }; in vfio_pci_ioctl() local 639 &fill.max, slot); in vfio_pci_ioctl() 643 WARN_ON(!fill.max); /* Should always be at least one */ in vfio_pci_ioctl() [all …]
|
/linux-4.4.14/arch/x86/kernel/ |
D | head_64.S | 345 .fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc 454 .fill 511,8,0 458 .fill 512*EARLY_DYNAMIC_PAGE_TABLES,8,0 464 .fill 512,8,0 476 .fill 511, 8, 0 485 .fill L3_START_KERNEL,8,0 505 .fill 506,8,0 508 .fill 5,8,0 511 .fill 512,8,0
|
D | head_32.S | 547 .fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc 670 .fill 1024*KPMDS,4,0 673 .fill 1024,4,0 676 .fill 1024,4,0 678 .fill 4096,1,0 680 .fill 1024,4,0 768 .fill GDT_ENTRY_BOOT_CS,8,0
|
/linux-4.4.14/Documentation/EDID/ |
D | edid.S | 176 .fill 7,2,0x0101 /* Unused */ 248 .fill 12-(end1-start1), 1, 0x20 /* Padded spaces */ 263 .fill 12-(end2-start2), 1, 0x20 /* Padded spaces */ 270 .fill 12-(end3-start3), 1, 0x20 /* Padded spaces */
|
/linux-4.4.14/sound/firewire/ |
D | lib.c | 123 port->consume_bytes = port->fill(substream, port->buf); in midi_port_work() 179 snd_fw_async_midi_port_fill fill) in snd_fw_async_midi_port_init() argument 188 port->fill = fill; in snd_fw_async_midi_port_init()
|
D | lib.h | 44 snd_fw_async_midi_port_fill fill; member 50 snd_fw_async_midi_port_fill fill);
|
/linux-4.4.14/drivers/staging/rdma/ehca/ |
D | ipz_pt_fn.c | 154 page->fill++; in alloc_small_queue_page() 156 if (page->fill == IPZ_SPAGE_PER_KPAGE >> order) in alloc_small_queue_page() 185 page->fill--; in free_small_queue_page() 187 if (page->fill == 0) { in free_small_queue_page() 192 if (page->fill == (IPZ_SPAGE_PER_KPAGE >> order) - 1) in free_small_queue_page()
|
D | ipz_pt_fn.h | 69 int fill; member
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
D | pc_maint.h | 134 byte fill[6]; member 146 byte fill[4]; /* data at offset 16 */ member 158 byte fill[4]; /* data at offset 16 */ member
|
D | io.h | 249 byte fill[224]; member
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | hisax_fcpcipnp.h | 15 u_char fill; member 23 u_char fill;
|
D | hfc_pci.h | 202 u_char fill[0x2100 - 0x2082]; /* alignment */ member 227 u_char fill[32768]; member
|
D | hisax.h | 408 u_char fill; member 416 u_char fill;
|
D | netjet.c | 67 static void fill_mem(struct BCState *bcs, u_int *pos, u_int cnt, int chan, u_char fill) in fill_mem() argument 72 val |= fill; in fill_mem()
|
/linux-4.4.14/arch/x86/boot/compressed/ |
D | head_64.S | 451 .fill 11,8,0 458 .fill 11,8,0 469 .fill BOOT_HEAP_SIZE, 1, 0 471 .fill BOOT_STACK_SIZE, 1, 0 480 .fill 6*4096, 1, 0
|
D | head_32.S | 233 .fill 11,8,0 245 .fill BOOT_HEAP_SIZE, 1, 0 247 .fill BOOT_STACK_SIZE, 1, 0
|
/linux-4.4.14/drivers/misc/sgi-gru/ |
D | grulib.h | 121 char fill[10]; member 150 int fill[16]; member
|
D | grukservices.c | 143 char fill; member
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
D | qxl_draw.c | 471 drawable->u.fill.brush.type = SPICE_BRUSH_TYPE_SOLID; in qxl_draw_fill() 472 drawable->u.fill.brush.u.color = color; in qxl_draw_fill() 473 drawable->u.fill.rop_descriptor = rop; in qxl_draw_fill() 474 drawable->u.fill.mask.flags = 0; in qxl_draw_fill() 475 drawable->u.fill.mask.pos.x = 0; in qxl_draw_fill() 476 drawable->u.fill.mask.pos.y = 0; in qxl_draw_fill() 477 drawable->u.fill.mask.bitmap = 0; in qxl_draw_fill()
|
D | qxl_dev.h | 690 struct qxl_fill fill; member 719 struct qxl_fill fill; member
|
/linux-4.4.14/fs/logfs/ |
D | journal.c | 690 int err = 0, fill = super->s_je_fill; in write_alias_journal() local 693 fill, ino, bix, level, child_no, be64_to_cpu(val)); in write_alias_journal() 694 oa[fill].ino = cpu_to_be64(ino); in write_alias_journal() 695 oa[fill].bix = cpu_to_be64(bix); in write_alias_journal() 696 oa[fill].val = val; in write_alias_journal() 697 oa[fill].level = (__force u8)level; in write_alias_journal() 698 oa[fill].child_no = cpu_to_be16(child_no); in write_alias_journal() 699 fill++; in write_alias_journal() 700 if (fill >= sb->s_blocksize / sizeof(*oa)) { in write_alias_journal() 702 fill = 0; in write_alias_journal() [all …]
|
/linux-4.4.14/drivers/isdn/hardware/mISDN/ |
D | hfc_pci.h | 203 u_char fill[0x2100 - 0x2082]; /* alignment */ member 224 u_char fill[32768]; member
|
D | netjet.c | 188 fill_mem(struct tiger_ch *bc, u32 idx, u32 cnt, u32 fill) in fill_mem() argument 194 bc->bch.nr, fill, cnt, idx, card->send.idx); in fill_mem() 196 fill <<= 8; in fill_mem() 203 val |= fill; in fill_mem() 551 p = bc->bch.fill; in fill_dma()
|
D | avmfritz.c | 111 u8 fill; member 119 u8 fill; 465 p = bch->fill; in hdlc_fill_fifo()
|
D | hfcpci.c | 807 memset(dst, bch->fill[0], maxlen); /* first copy */ in hfcpci_fill_fifo() 811 memset(dst, bch->fill[0], count); in hfcpci_fill_fifo()
|
/linux-4.4.14/include/linux/decompress/ |
D | unlzma.h | 5 long (*fill)(void*, unsigned long),
|
D | unlz4.h | 5 long (*fill)(void*, unsigned long),
|
D | unlzo.h | 5 long (*fill)(void*, unsigned long),
|
D | inflate.h | 5 long (*fill)(void*, unsigned long),
|
D | bunzip2.h | 5 long (*fill)(void*, unsigned long),
|
D | unxz.h | 14 long (*fill)(void *dest, unsigned long size),
|
D | generic.h | 5 long (*fill)(void*, unsigned long),
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | trampoline_common.S | 3 tr_idt: .fill 1, 6, 0
|
/linux-4.4.14/arch/ia64/include/asm/sn/ |
D | ioc3.h | 49 char fill[0x170]; member 77 char fill[0x4c]; member
|
/linux-4.4.14/tools/virtio/asm/ |
D | barrier.h | 14 #error Please fill in barrier macros
|
/linux-4.4.14/arch/hexagon/kernel/ |
D | head.S | 232 .fill _PAGE_SIZE,1,0 237 .fill _PAGE_SIZE,1,0
|
/linux-4.4.14/Documentation/DocBook/ |
D | usb.xml.db | 27 API-usb-fill-control-urb 28 API-usb-fill-bulk-urb 29 API-usb-fill-int-urb
|
D | mtdnand.xml.db | 75 API-nand-fill-oob
|
D | networking.xml.db | 36 API---skb-fill-page-desc 37 API-skb-fill-page-desc 286 API-dev-fill-metadata-dst
|
D | libata.xml.db | 141 API-ata-scsi-rbuf-fill
|
D | gpu.xml.db | 298 API-drm-helper-mode-fill-fb-struct 335 API-drm-fb-helper-fill-fix 336 API-drm-fb-helper-fill-var
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | overview.txt | 8 The aim is to fill the gap between the somewhat similar hwmon and 46 used in IIO to fill software buffers acting in a very similar
|
D | trigger.txt | 10 allocates a trigger structure. The key elements to then fill in within
|
D | device.txt | 17 Then fill in the following:
|
/linux-4.4.14/init/ |
D | do_mounts.c | 612 void *fill = ramfs_fill_super; in rootfs_mount() local 618 fill = shmem_fill_super; in rootfs_mount() 620 return mount_nodev(fs_type, flags, data, fill); in rootfs_mount()
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-osd-api.txt | 258 BLT fill color 276 color fill value 305 color fill value
|
D | fw-decoder-regs.txt | 313 Contains the colour (in yuv) used to fill the screen when the video is 319 Contains the colour (in yuv) used to fill the video window when the
|
D | fw-encoder-api.txt | 696 it is up to the application to fill them in. These packets are apparently
|
/linux-4.4.14/arch/sparc/kernel/ |
D | itlb_miss.S | 17 nop ! Delay slot, fill me
|
D | spiterrs.S | 166 cmp %g3, 0x80 ! first win spill/fill trap 168 cmp %g3, 0xff ! last win spill/fill trap
|
D | tsb.S | 309 nop ! Delay slot (fill me)
|
/linux-4.4.14/arch/s390/kernel/ |
D | head.S | 40 .fill 80-24,1,0x40 # bytes 24-79 are discarded !! 155 .fill 16,4,0x0 264 .Lcpuid:.fill 8,1,0 295 .fill 16,4,0x0
|
/linux-4.4.14/arch/alpha/lib/ |
D | strncat.S | 63 0: cmplt $27, $24, $2 # did we fill the buffer completely?
|
D | ev67-strncat.S | 62 cmplt $27, $24, $5 # E : did we fill the buffer completely?
|
/linux-4.4.14/arch/sh/lib/ |
D | memset.S | 51 ! fill bytes
|
D | memset-sh4.S | 98 ! fill bytes (length may be zero)
|
/linux-4.4.14/arch/arm64/boot/dts/altera/ |
D | socfpga_stratix10_socdk.dts | 32 /* We expect the bootloader to fill in the reg */
|
/linux-4.4.14/arch/xtensa/kernel/ |
D | head.S | 375 .fill PAGE_SIZE, 1, 0 379 .fill PAGE_SIZE, 1, 0
|
D | coprocessor.S | 351 .fill XCHAL_CP_MAX, 4, 0
|
/linux-4.4.14/mm/ |
D | Kconfig.debug | 23 fill the pages with poison patterns after free_pages() and verify
|
/linux-4.4.14/Documentation/ |
D | debugging-modules.txt | 10 In the past a debugging message which would fill people's logs was
|
D | hw_random.txt | 17 Those tools use /dev/hwrng to fill the kernel entropy pool,
|
D | IPMI.txt | 206 of data for "data", fill it, and set data_len to the length of the 278 From userland, you fill out an ipmi_req_t structure and use the 284 you must fill in the msg.data_len field with the size of the data.
|
/linux-4.4.14/arch/mips/kernel/ |
D | head.S | 68 .fill 0x400
|
D | genex.S | 304 .fill LONGSIZE
|
/linux-4.4.14/fs/hpfs/ |
D | hpfs.h | 404 u8 fill[3]; member 502 __le32 fill[3]; /* unused */ member
|
/linux-4.4.14/drivers/media/common/saa7146/ |
D | saa7146_core.c | 250 __le32 *ptr, fill; in saa7146_pgtable_build_single() local 276 fill = *(ptr-1); in saa7146_pgtable_build_single() 278 *ptr++ = fill; in saa7146_pgtable_build_single()
|
D | saa7146_video.c | 222 __le32 fill; in saa7146_pgtable_build() local 283 fill = *(ptr2-1); in saa7146_pgtable_build() 285 *ptr2 = fill; in saa7146_pgtable_build() 292 fill = *(ptr3-1); in saa7146_pgtable_build() 294 *ptr3 = fill; in saa7146_pgtable_build() 298 fill = pt1->cpu[m1]; in saa7146_pgtable_build() 300 *ptr1 = fill; in saa7146_pgtable_build()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qed/ |
D | qed_init_ops.c | 147 u32 fill, in qed_init_fill_dmae() argument 170 u32 fill, in qed_init_fill() argument 176 qed_wr(p_hwfn, p_ptt, addr, fill); in qed_init_fill()
|
/linux-4.4.14/drivers/media/radio/ |
D | Kconfig | 254 fill in the port address below. 264 Choose Y here if you have one of these FM radio cards, and then fill 295 Choose Y here if you have this FM radio card, and then fill in the 318 Choose Y here if you have one of these FM radio cards, and then fill 338 Choose Y here if you have this FM radio card, and then fill in the 448 Choose Y here if you have one of these FM radio cards, and then fill 482 Choose Y here if you have one of these FM radio cards, and then fill
|
/linux-4.4.14/drivers/media/usb/stkwebcam/ |
D | stk-webcam.c | 304 unsigned char *fill = NULL; in stk_isoc_handler() local 338 fill = fb->buffer + fb->v4lbuf.bytesused; in stk_isoc_handler() 373 fill = fb->buffer; in stk_isoc_handler() 378 fill = fb->buffer; in stk_isoc_handler() 386 fill = fb->buffer; in stk_isoc_handler() 402 memcpy(fill, iso_buf, framelen); in stk_isoc_handler() 404 fill += framelen; in stk_isoc_handler()
|
/linux-4.4.14/net/rfkill/ |
D | Kconfig | 44 driver. The platform should fill in the appropriate fields in the
|
/linux-4.4.14/include/net/ |
D | fib_rules.h | 67 int (*fill)(struct fib_rule *, struct sk_buff *, member
|
/linux-4.4.14/Documentation/pcmcia/ |
D | driver-changes.txt | 21 Instead of win_req_t, drivers are now requested to fill out 28 Instead of io_req_t, drivers are now requested to fill out 40 There is no more need to fill out a "dev_node_t" structure.
|
/linux-4.4.14/Documentation/hid/ |
D | hiddev.txt | 122 Gets a string descriptor from the device. The caller must fill in the 143 be filled in by the user through HIDIOCSUSAGE calls (below) to fill in 161 hiddev_field_info structure. The user must fill in report_id and 174 choose to fill in the report_type field and specify the report_id as
|
D | uhid.txt | 110 If "err" is 0 then you should fill the buffer of the answer with the results
|
/linux-4.4.14/arch/x86/platform/efi/ |
D | efi_stub_64.S | 96 .fill 3,8,0
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
D | av7110_av.c | 745 int fill; in write_ts_header2() local 748 fill = (TS_SIZE - 4) - length; in write_ts_header2() 751 if (fill) in write_ts_header2() 759 if (fill) { in write_ts_header2() 760 buf[4] = fill - 1; in write_ts_header2() 762 if (fill > 1) { in write_ts_header2() 766 for (i = 6; i < fill + 4; i++) { in write_ts_header2()
|
/linux-4.4.14/include/linux/ |
D | mISDNhw.h | 159 u8 fill[MISDN_BCH_FILL_SIZE]; member
|
/linux-4.4.14/arch/mips/boot/dts/brcm/ |
D | bcm3384_viper.dtsi | 9 /* Typical ranges. The bootloader should fill these in. */
|
D | bcm3384_zephyr.dtsi | 9 /* Typical range. The bootloader should fill this in. */
|
/linux-4.4.14/drivers/target/tcm_fc/ |
D | tfc_sess.c | 358 goto fill; in ft_prli_locked() 393 fill: in ft_prli_locked()
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | omap_dmm_tiler.c | 305 static int fill(struct tcm_area *area, struct page **pages, in fill() function 343 ret = fill(&block->area, pages, npages, roll, wait); in tiler_pin() 353 return fill(&block->area, NULL, 0, 0, false); in tiler_unpin() 781 if (fill(&area, NULL, 0, 0, true)) in omap_dmm_probe() 987 if (fill(&area, NULL, 0, 0, true)) in omap_dmm_resume()
|
/linux-4.4.14/drivers/net/usb/ |
D | rndis_host.c | 553 goto fill; in rndis_tx_fixup() 561 goto fill; in rndis_tx_fixup() 575 fill: in rndis_tx_fixup()
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | pio.c | 1195 sc->fill = 0; in sc_enable() 1350 avail = (unsigned long)sc->credits - (sc->fill - sc->alloc_free); in sc_buffer_alloc() 1361 (sc->fill - sc->alloc_free); in sc_buffer_alloc() 1381 start_fill = sc->fill; in sc_buffer_alloc() 1382 sc->fill += blocks; in sc_buffer_alloc() 1392 pbuf->sent_at = sc->fill; in sc_buffer_alloc()
|
D | pio.h | 121 unsigned long fill; /* official alloc count */ member
|
/linux-4.4.14/drivers/net/ethernet/apple/ |
D | mace.c | 537 int fill, next, len; in mace_xmit_start() local 541 fill = mp->tx_fill; in mace_xmit_start() 542 next = fill + 1; in mace_xmit_start() 559 mp->tx_bufs[fill] = skb; in mace_xmit_start() 560 cp = mp->tx_cmds + NCMDS_TX * fill; in mace_xmit_start()
|
/linux-4.4.14/arch/tile/kernel/ |
D | head_32.S | 138 .fill PAGE_SIZE,1,0
|
D | head_64.S | 217 .fill PAGE_SIZE,1,0
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | tqm8541.dts | 226 clock-frequency = <0>; // should we fill in in uboot? 236 clock-frequency = <0>; // should we fill in in uboot?
|
D | tqm8555.dts | 226 clock-frequency = <0>; // should we fill in in uboot? 236 clock-frequency = <0>; // should we fill in in uboot?
|
D | tqm8540.dts | 252 clock-frequency = <0>; // should we fill in in uboot? 262 clock-frequency = <0>; // should we fill in in uboot?
|
D | sbc8548-post.dtsi | 186 clock-frequency = <0>; // should we fill in in uboot? 196 clock-frequency = <0>; // should we fill in in uboot?
|
D | stxssa8555.dts | 213 clock-frequency = <0>; // should we fill in in uboot? 223 clock-frequency = <0>; // should we fill in in uboot?
|
D | tqm8548-bigflash.dts | 305 clock-frequency = <0>; // should we fill in in uboot? 316 clock-frequency = <0>; // should we fill in in uboot?
|
D | tqm8548.dts | 305 clock-frequency = <0>; // should we fill in in uboot? 316 clock-frequency = <0>; // should we fill in in uboot?
|
/linux-4.4.14/Documentation/scsi/ |
D | 53c700.txt | 13 fill in to get the driver working. 67 default values for everything are 0). Then you must fill in the
|
D | scsi-changer.txt | 36 fill in and remove media from the changer.
|
/linux-4.4.14/fs/fat/ |
D | namei_vfat.c | 505 int i, k, fill; in xlate_to_uni() local 566 fill = 13 - (*outlen % 13); in xlate_to_uni() 567 for (i = 0; i < fill; i++) { in xlate_to_uni() 571 *outlen += fill; in xlate_to_uni()
|
/linux-4.4.14/arch/mn10300/lib/ |
D | memset.S | 32 beq memset_done # return if zero-length fill
|
/linux-4.4.14/tools/vm/ |
D | slabinfo-gnuplot.sh | 97 set style fill solid 0.15
|
/linux-4.4.14/Documentation/networking/ |
D | spider_net.txt | 115 the hardware can fill them, there is no problem. If, for some reason, 135 is a potential deadlock, with the OS waiting for one descr to fill, 187 For packet sizes greater than about 1KBytes, the kernel can fill 200 can fill it.
|
D | netdev-features.txt | 108 It means that device can fill TCP/UDP-like checksum anywhere in the packets
|
D | regulatory.txt | 145 structure and you should then fill it with your data. Finally you simply
|
D | rds.txt | 212 its send buffers start to fill up. All retransmissions are also
|
D | filter.txt | 630 R0 - R5 are scratch registers and eBPF program needs spill/fill them if 821 out of registers and would have to resort to spill/fill to stack. 1076 Pointer register spill/fill is tracked as well, since four (R6-R9)
|
D | packet_mmap.txt | 169 /* fill sockaddr_ll struct to prepare binding */ 1036 Getting timestamps for the TX_RING works as follows: i) fill the ring frames,
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-pktcdvd | 35 kb_read_gather (0444) kBytes read to fill write packets.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | zero.txt | 15 enough data has been written to fill up the actual storage space, the sparse
|
/linux-4.4.14/net/decnet/ |
D | dn_rules.c | 231 .fill = dn_fib_rule_fill,
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | acobject.h | 110 ACPI_OBJECT_COMMON_HEADER u8 fill[3]; /* Prevent warning on some compilers */ member
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-sis96x | 36 (kernel versions later than 2.4.18 may fill in the "Unknown"s)
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | mpc8541cds.dts | 214 clock-frequency = <0>; // should we fill in in uboot? 224 clock-frequency = <0>; // should we fill in in uboot?
|
D | mpc8540ads.dts | 247 clock-frequency = <0>; // should we fill in in uboot? 257 clock-frequency = <0>; // should we fill in in uboot?
|
D | mpc8555cds.dts | 214 clock-frequency = <0>; // should we fill in in uboot? 224 clock-frequency = <0>; // should we fill in in uboot?
|
/linux-4.4.14/drivers/video/fbdev/ |
D | leo.c | 120 u32 fill; member 232 sbus_writel(0x80000000, &par->lc_ss0_usr->fill); in leo_switch_from_graph()
|
/linux-4.4.14/fs/jffs2/ |
D | gc.c | 1017 goto fill; in jffs2_garbage_collect_hole() 1039 goto fill; in jffs2_garbage_collect_hole() 1046 goto fill; in jffs2_garbage_collect_hole() 1049 fill: in jffs2_garbage_collect_hole()
|
/linux-4.4.14/drivers/usb/dwc2/ |
D | Kconfig | 72 WARNING: Enabling this will quickly fill your message log.
|
/linux-4.4.14/Documentation/isdn/ |
D | syncPPP.FAQ | 115 !![ ... fill in the line ... ]!! 122 !![ ... fill in mail ]!!
|
D | README.act2000 | 63 ISDN linklevel fill the IdString (usually "line0" for the first card).
|
D | README.concap | 135 Protocols that don't process these primitives might fill in
|
D | INTERFACE.CAPI | 41 Before the device can be actually used, the driver must fill in the device
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-emc.txt | 53 This is the preferred method, especially when firmware can fill in
|
/linux-4.4.14/drivers/crypto/qat/qat_common/ |
D | qat_uclo.c | 1043 unsigned int raddr, uint64_t fill) in qat_uclo_fill_uwords() argument 1049 *uword = fill; in qat_uclo_fill_uwords() 1066 *uword = fill; in qat_uclo_fill_uwords()
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace-design.txt | 239 See scripts/recordmcount.pl for more info. Just fill in the arch-specific 266 First you will need to fill out some arch details in your asm/ftrace.h. 288 With the header out of the way, we can fill out the assembly code. While we
|
D | ring-buffer-design.txt | 55 Producer/consumer mode is where if the producer were to fill up the 59 Overwrite mode is where if the producer were to fill up the buffer
|
/linux-4.4.14/net/ipv4/ |
D | fib_rules.c | 320 .fill = fib4_rule_fill,
|
/linux-4.4.14/drivers/net/slip/ |
D | Kconfig | 65 RELCOM line fill and keepalive monitoring. Ideal on poor quality
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | firewire-cdev | 89 for multichannel reception which works in buffer-fill mode.
|
/linux-4.4.14/sound/oss/ |
D | vidc_fill.S | 154 mov pc, r4 @ Call fill routine (uses r4, ip)
|
/linux-4.4.14/drivers/media/usb/cpia2/ |
D | cpia2.h | 243 u8 fill; member
|
/linux-4.4.14/net/ipv6/ |
D | fib6_rules.c | 287 .fill = fib6_rule_fill,
|
/linux-4.4.14/Documentation/powerpc/ |
D | ptrace.txt | 25 The query will fill the following structure provided by the requesting process:
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 28 - making requests to user-space to fill in cache entries 84 A message from user space has arrived to fill out a
|
/linux-4.4.14/net/core/ |
D | fib_rules.c | 110 ops->compare == NULL || ops->fill == NULL || in __fib_rules_register() 618 if (ops->fill(rule, skb, frh) < 0) in fib_nl_fill_rule()
|
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_init_ops.h | 84 static void bnx2x_init_fill(struct bnx2x *bp, u32 addr, int fill, in bnx2x_init_fill() argument 91 memset(GUNZIP_BUF(bp), (u8)fill, buf_len); in bnx2x_init_fill()
|
/linux-4.4.14/arch/mips/include/asm/sn/ |
D | ioc3.h | 41 volatile u8 fill[0x141]; /* starts at 0x141 */ member
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | omap3-overo-base.dtsi | 272 /* HACK: MTDPART_SIZ_FULL=0 so fill to end */
|
/linux-4.4.14/Documentation/filesystems/ |
D | sysfs.txt | 184 - On read(2), the show() method should fill the entire buffer. 191 be called again, rearmed, to fill the buffer.
|
D | exofs.txt | 125 Information included in the file system control block is used to fill the
|
D | logfs.txt | 195 10,000 runs the lowest directory fill before a bucket overflow was
|
/linux-4.4.14/Documentation/usb/ |
D | URB.txt | 32 You can fill that queue, so that the USB hardware can still transfer 221 For ISO transfers you have to fill a usb_iso_packet_descriptor structure,
|
D | error-codes.txt | 134 -EREMOTEIO The data read from the endpoint did not fill the
|
/linux-4.4.14/Documentation/fb/ |
D | api.txt | 248 drivers. Drivers must fill the red, blue and green offsets to 0 and lengths 253 ignored by drivers. Drivers must fill the red, blue and green offsets to 0
|
/linux-4.4.14/Documentation/infiniband/ |
D | user_mad.txt | 89 /* fill in mad->data */
|
/linux-4.4.14/arch/arm/mm/ |
D | proc-mohawk.S | 371 mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer
|
D | proc-xsc3.S | 434 mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer
|
/linux-4.4.14/arch/unicore32/kernel/ |
D | entry.S | 175 @ We are now ready to fill in the remaining blanks on the stack: 204 @ We are now ready to fill in the remaining blanks on the stack:
|
/linux-4.4.14/Documentation/input/ |
D | gameport-programming.txt | 155 read function. It should fill axes[0..3] with four values of the joystick axes
|
D | joystick-api.txt | 169 If time between reads is enough to fill the queue and lose an event,
|
D | input-programming.txt | 198 input_register_device, you have to fill additional fields in the input_dev
|
/linux-4.4.14/kernel/time/ |
D | Kconfig | 108 You need to fill up the nohz_full boot parameter with the
|
/linux-4.4.14/drivers/isdn/mISDN/ |
D | hwchannel.c | 176 memset(bch->fill, cq->p2 & 0xff, MISDN_BCH_FILL_SIZE); in mISDN_ctrl_bchannel()
|
/linux-4.4.14/arch/mips/ |
D | Kconfig.debug | 45 should choose 'Y' here, and fill in the extra boot arguments
|
/linux-4.4.14/arch/arm64/boot/dts/qcom/ |
D | msm8916.dtsi | 36 /* We expect the bootloader to fill in the reg */
|
/linux-4.4.14/Documentation/driver-model/ |
D | driver.txt | 102 let the bus wrapper fill in the fields. For the callbacks, the bus can
|
/linux-4.4.14/drivers/ata/ |
D | sata_fsl.c | 255 u8 fill[4 * 4]; member 266 u8 fill[2 * 4]; member
|
/linux-4.4.14/Documentation/dmaengine/ |
D | provider.txt | 215 on a single ring buffer that you will fill with your audio data. 242 The functions that we have to fill in there, and hence have to
|
/linux-4.4.14/ |
D | REPORTING-BUGS | 104 Use that information to fill in all fields of the bug report form, and
|
/linux-4.4.14/Documentation/video4linux/ |
D | uvcvideo.txt | 112 To create a mapping, applications fill the uvc_xu_control_mapping
|
D | v4l2-controls.txt | 189 The v4l2_ctrl_new_std function will fill in most fields based on the control 436 control and will fill in the name, type and flags fields accordingly.
|
D | v4l2-framework.txt | 521 This function will fill in all the fields of v4l2_subdev and ensure that the 1080 Queue events to video device. The driver's only responsibility is to fill 1093 then the framework will fill in a default value (this depends on the event
|
D | videobuf | 322 buffer; the driver should not remove it from the list or fill it until a
|
/linux-4.4.14/Documentation/crypto/ |
D | async-tx-api.txt | 61 memset - fill a destination buffer with a byte value
|
/linux-4.4.14/Documentation/x86/ |
D | boot.txt | 233 nonstandard address should fill in the fields marked (reloc); other 1050 also fill the additional fields of the struct boot_params as that 1085 also fill the additional fields of the struct boot_params as described 1123 The boot loader *must* fill out the following fields in bp,
|
/linux-4.4.14/arch/blackfin/ |
D | Kconfig.debug | 189 quickly fill up the hardware trace buffer. When debugging crashes,
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | cpu-drivers.txt | 98 Then, the driver must fill in the following values:
|
/linux-4.4.14/arch/arm/kernel/ |
D | entry-armv.S | 178 @ We are now ready to fill in the remaining blanks on the stack:
|
/linux-4.4.14/arch/arm64/boot/dts/freescale/ |
D | fsl-ls2080a.dtsi | 59 * is dependent on the SoC FW, which will fill this in.
|
/linux-4.4.14/drivers/usb/chipidea/ |
D | udc.c | 68 int fill = 16 - ci->hw_ep_max / 2; in ep_to_bit() local 71 n += fill; in ep_to_bit()
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-cd.1994-2004 | 214 * - bunch of other stuff, will fill in logs later.
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | OSS-Emulation.txt | 144 no-silence do not fill silence ahead to avoid clicks
|
/linux-4.4.14/Documentation/PCI/ |
D | MSI-HOWTO.txt | 241 two-element array. The driver is expected to fill in the 'entry' value 243 should assign interrupts; it is invalid to fill in two entries with the
|
/linux-4.4.14/arch/tile/ |
D | Kconfig | 364 set this option to 'Y', then fill in the
|
/linux-4.4.14/Documentation/vm/ |
D | slub.txt | 229 Unused data to fill up the space in order to get the next object
|
/linux-4.4.14/Documentation/target/ |
D | tcmu-design.txt | 337 /* Also fill in rsp->sense_buffer here */
|
/linux-4.4.14/Documentation/fmc/ |
D | carrier.txt | 92 registering the device, as well as fill all other fields listed above.
|
/linux-4.4.14/drivers/mmc/card/ |
D | mmc_test.c | 1494 static int mmc_test_area_init(struct mmc_test_card *test, int erase, int fill) in mmc_test_area_init() argument 1550 if (fill) { in mmc_test_area_init()
|
/linux-4.4.14/drivers/md/ |
D | Kconfig | 67 partitions into one logical device in such a fashion as to fill them
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 238 /* Whether to try to fill the input buffer when we reach the 1390 { /* Don't try to fill the buffer, so this is an EOF. */
|