Home
last modified time | relevance | path

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

12

/linux-4.4.14/arch/ia64/kernel/
Dhead.S643 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 …]
Dentry.S92 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 …]
Dmca_asm.S728 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 …]
Dgate.S176 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
Dpal.S289 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
Drelocate_kernel.S177 .fill 8192, 1, 0
180 .fill 8192, 1, 0
/linux-4.4.14/lib/
Ddecompress_unlz4.c35 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 …]
Ddecompress_unlzo.c113 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 …]
Ddecompress_inflate.c38 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()
Dbtree.c417 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 …]
Ddecompress_unxz.c252 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()
Ddecompress_bunzip2.c95 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()
Ddecompress_unlzma.c68 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/
Dfc_frame.c77 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()
Dfc_libfc.c172 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()
Dfc_exch.c276 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/
Dvalidate.c18 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/
Dpasemi_mac.c629 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/
Dinftrees.c36 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/
Dmxs-dcp.c79 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/
Dvfio_pci.c334 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/
Dhead_64.S345 .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
Dhead_32.S547 .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/
Dedid.S176 .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/
Dlib.c123 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()
Dlib.h44 snd_fw_async_midi_port_fill fill; member
50 snd_fw_async_midi_port_fill fill);
/linux-4.4.14/drivers/staging/rdma/ehca/
Dipz_pt_fn.c154 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()
Dipz_pt_fn.h69 int fill; member
/linux-4.4.14/drivers/isdn/hardware/eicon/
Dpc_maint.h134 byte fill[6]; member
146 byte fill[4]; /* data at offset 16 */ member
158 byte fill[4]; /* data at offset 16 */ member
Dio.h249 byte fill[224]; member
/linux-4.4.14/drivers/isdn/hisax/
Dhisax_fcpcipnp.h15 u_char fill; member
23 u_char fill;
Dhfc_pci.h202 u_char fill[0x2100 - 0x2082]; /* alignment */ member
227 u_char fill[32768]; member
Dhisax.h408 u_char fill; member
416 u_char fill;
Dnetjet.c67 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/
Dhead_64.S451 .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
Dhead_32.S233 .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/
Dgrulib.h121 char fill[10]; member
150 int fill[16]; member
Dgrukservices.c143 char fill; member
/linux-4.4.14/drivers/gpu/drm/qxl/
Dqxl_draw.c471 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()
Dqxl_dev.h690 struct qxl_fill fill; member
719 struct qxl_fill fill; member
/linux-4.4.14/fs/logfs/
Djournal.c690 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/
Dhfc_pci.h203 u_char fill[0x2100 - 0x2082]; /* alignment */ member
224 u_char fill[32768]; member
Dnetjet.c188 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()
Davmfritz.c111 u8 fill; member
119 u8 fill;
465 p = bch->fill; in hdlc_fill_fifo()
Dhfcpci.c807 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/
Dunlzma.h5 long (*fill)(void*, unsigned long),
Dunlz4.h5 long (*fill)(void*, unsigned long),
Dunlzo.h5 long (*fill)(void*, unsigned long),
Dinflate.h5 long (*fill)(void*, unsigned long),
Dbunzip2.h5 long (*fill)(void*, unsigned long),
Dunxz.h14 long (*fill)(void *dest, unsigned long size),
Dgeneric.h5 long (*fill)(void*, unsigned long),
/linux-4.4.14/arch/x86/realmode/rm/
Dtrampoline_common.S3 tr_idt: .fill 1, 6, 0
/linux-4.4.14/arch/ia64/include/asm/sn/
Dioc3.h49 char fill[0x170]; member
77 char fill[0x4c]; member
/linux-4.4.14/tools/virtio/asm/
Dbarrier.h14 #error Please fill in barrier macros
/linux-4.4.14/arch/hexagon/kernel/
Dhead.S232 .fill _PAGE_SIZE,1,0
237 .fill _PAGE_SIZE,1,0
/linux-4.4.14/Documentation/DocBook/
Dusb.xml.db27 API-usb-fill-control-urb
28 API-usb-fill-bulk-urb
29 API-usb-fill-int-urb
Dmtdnand.xml.db75 API-nand-fill-oob
Dnetworking.xml.db36 API---skb-fill-page-desc
37 API-skb-fill-page-desc
286 API-dev-fill-metadata-dst
Dlibata.xml.db141 API-ata-scsi-rbuf-fill
Dgpu.xml.db298 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/
Doverview.txt8 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
Dtrigger.txt10 allocates a trigger structure. The key elements to then fill in within
Ddevice.txt17 Then fill in the following:
/linux-4.4.14/init/
Ddo_mounts.c612 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/
Dfw-osd-api.txt258 BLT fill color
276 color fill value
305 color fill value
Dfw-decoder-regs.txt313 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
Dfw-encoder-api.txt696 it is up to the application to fill them in. These packets are apparently
/linux-4.4.14/arch/sparc/kernel/
Ditlb_miss.S17 nop ! Delay slot, fill me
Dspiterrs.S166 cmp %g3, 0x80 ! first win spill/fill trap
168 cmp %g3, 0xff ! last win spill/fill trap
Dtsb.S309 nop ! Delay slot (fill me)
/linux-4.4.14/arch/s390/kernel/
Dhead.S40 .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/
Dstrncat.S63 0: cmplt $27, $24, $2 # did we fill the buffer completely?
Dev67-strncat.S62 cmplt $27, $24, $5 # E : did we fill the buffer completely?
/linux-4.4.14/arch/sh/lib/
Dmemset.S51 ! fill bytes
Dmemset-sh4.S98 ! fill bytes (length may be zero)
/linux-4.4.14/arch/arm64/boot/dts/altera/
Dsocfpga_stratix10_socdk.dts32 /* We expect the bootloader to fill in the reg */
/linux-4.4.14/arch/xtensa/kernel/
Dhead.S375 .fill PAGE_SIZE, 1, 0
379 .fill PAGE_SIZE, 1, 0
Dcoprocessor.S351 .fill XCHAL_CP_MAX, 4, 0
/linux-4.4.14/mm/
DKconfig.debug23 fill the pages with poison patterns after free_pages() and verify
/linux-4.4.14/Documentation/
Ddebugging-modules.txt10 In the past a debugging message which would fill people's logs was
Dhw_random.txt17 Those tools use /dev/hwrng to fill the kernel entropy pool,
DIPMI.txt206 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/
Dhead.S68 .fill 0x400
Dgenex.S304 .fill LONGSIZE
/linux-4.4.14/fs/hpfs/
Dhpfs.h404 u8 fill[3]; member
502 __le32 fill[3]; /* unused */ member
/linux-4.4.14/drivers/media/common/saa7146/
Dsaa7146_core.c250 __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()
Dsaa7146_video.c222 __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/
Dqed_init_ops.c147 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/
DKconfig254 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/
Dstk-webcam.c304 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/
DKconfig44 driver. The platform should fill in the appropriate fields in the
/linux-4.4.14/include/net/
Dfib_rules.h67 int (*fill)(struct fib_rule *, struct sk_buff *, member
/linux-4.4.14/Documentation/pcmcia/
Ddriver-changes.txt21 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/
Dhiddev.txt122 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
Duhid.txt110 If "err" is 0 then you should fill the buffer of the answer with the results
/linux-4.4.14/arch/x86/platform/efi/
Defi_stub_64.S96 .fill 3,8,0
/linux-4.4.14/drivers/media/pci/ttpci/
Dav7110_av.c745 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/
DmISDNhw.h159 u8 fill[MISDN_BCH_FILL_SIZE]; member
/linux-4.4.14/arch/mips/boot/dts/brcm/
Dbcm3384_viper.dtsi9 /* Typical ranges. The bootloader should fill these in. */
Dbcm3384_zephyr.dtsi9 /* Typical range. The bootloader should fill this in. */
/linux-4.4.14/drivers/target/tcm_fc/
Dtfc_sess.c358 goto fill; in ft_prli_locked()
393 fill: in ft_prli_locked()
/linux-4.4.14/drivers/gpu/drm/omapdrm/
Domap_dmm_tiler.c305 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/
Drndis_host.c553 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/
Dpio.c1195 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()
Dpio.h121 unsigned long fill; /* official alloc count */ member
/linux-4.4.14/drivers/net/ethernet/apple/
Dmace.c537 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/
Dhead_32.S138 .fill PAGE_SIZE,1,0
Dhead_64.S217 .fill PAGE_SIZE,1,0
/linux-4.4.14/arch/powerpc/boot/dts/
Dtqm8541.dts226 clock-frequency = <0>; // should we fill in in uboot?
236 clock-frequency = <0>; // should we fill in in uboot?
Dtqm8555.dts226 clock-frequency = <0>; // should we fill in in uboot?
236 clock-frequency = <0>; // should we fill in in uboot?
Dtqm8540.dts252 clock-frequency = <0>; // should we fill in in uboot?
262 clock-frequency = <0>; // should we fill in in uboot?
Dsbc8548-post.dtsi186 clock-frequency = <0>; // should we fill in in uboot?
196 clock-frequency = <0>; // should we fill in in uboot?
Dstxssa8555.dts213 clock-frequency = <0>; // should we fill in in uboot?
223 clock-frequency = <0>; // should we fill in in uboot?
Dtqm8548-bigflash.dts305 clock-frequency = <0>; // should we fill in in uboot?
316 clock-frequency = <0>; // should we fill in in uboot?
Dtqm8548.dts305 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/
D53c700.txt13 fill in to get the driver working.
67 default values for everything are 0). Then you must fill in the
Dscsi-changer.txt36 fill in and remove media from the changer.
/linux-4.4.14/fs/fat/
Dnamei_vfat.c505 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/
Dmemset.S32 beq memset_done # return if zero-length fill
/linux-4.4.14/tools/vm/
Dslabinfo-gnuplot.sh97 set style fill solid 0.15
/linux-4.4.14/Documentation/networking/
Dspider_net.txt115 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.
Dnetdev-features.txt108 It means that device can fill TCP/UDP-like checksum anywhere in the packets
Dregulatory.txt145 structure and you should then fill it with your data. Finally you simply
Drds.txt212 its send buffers start to fill up. All retransmissions are also
Dfilter.txt630 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)
Dpacket_mmap.txt169 /* 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/
Dsysfs-class-pktcdvd35 kb_read_gather (0444) kBytes read to fill write packets.
/linux-4.4.14/Documentation/device-mapper/
Dzero.txt15 enough data has been written to fill up the actual storage space, the sparse
/linux-4.4.14/net/decnet/
Ddn_rules.c231 .fill = dn_fib_rule_fill,
/linux-4.4.14/drivers/acpi/acpica/
Dacobject.h110 ACPI_OBJECT_COMMON_HEADER u8 fill[3]; /* Prevent warning on some compilers */ member
/linux-4.4.14/Documentation/i2c/busses/
Di2c-sis96x36 (kernel versions later than 2.4.18 may fill in the "Unknown"s)
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dmpc8541cds.dts214 clock-frequency = <0>; // should we fill in in uboot?
224 clock-frequency = <0>; // should we fill in in uboot?
Dmpc8540ads.dts247 clock-frequency = <0>; // should we fill in in uboot?
257 clock-frequency = <0>; // should we fill in in uboot?
Dmpc8555cds.dts214 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/
Dleo.c120 u32 fill; member
232 sbus_writel(0x80000000, &par->lc_ss0_usr->fill); in leo_switch_from_graph()
/linux-4.4.14/fs/jffs2/
Dgc.c1017 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/
DKconfig72 WARNING: Enabling this will quickly fill your message log.
/linux-4.4.14/Documentation/isdn/
DsyncPPP.FAQ115 !![ ... fill in the line ... ]!!
122 !![ ... fill in mail ]!!
DREADME.act200063 ISDN linklevel fill the IdString (usually "line0" for the first card).
DREADME.concap135 Protocols that don't process these primitives might fill in
DINTERFACE.CAPI41 Before the device can be actually used, the driver must fill in the device
/linux-4.4.14/Documentation/devicetree/bindings/arm/tegra/
Dnvidia,tegra20-emc.txt53 This is the preferred method, especially when firmware can fill in
/linux-4.4.14/drivers/crypto/qat/qat_common/
Dqat_uclo.c1043 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/
Dftrace-design.txt239 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
Dring-buffer-design.txt55 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/
Dfib_rules.c320 .fill = fib4_rule_fill,
/linux-4.4.14/drivers/net/slip/
DKconfig65 RELCOM line fill and keepalive monitoring. Ideal on poor quality
/linux-4.4.14/Documentation/ABI/stable/
Dfirewire-cdev89 for multichannel reception which works in buffer-fill mode.
/linux-4.4.14/sound/oss/
Dvidc_fill.S154 mov pc, r4 @ Call fill routine (uses r4, ip)
/linux-4.4.14/drivers/media/usb/cpia2/
Dcpia2.h243 u8 fill; member
/linux-4.4.14/net/ipv6/
Dfib6_rules.c287 .fill = fib6_rule_fill,
/linux-4.4.14/Documentation/powerpc/
Dptrace.txt25 The query will fill the following structure provided by the requesting process:
/linux-4.4.14/Documentation/filesystems/nfs/
Drpc-cache.txt28 - 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/
Dfib_rules.c110 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/
Dbnx2x_init_ops.h84 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/
Dioc3.h41 volatile u8 fill[0x141]; /* starts at 0x141 */ member
/linux-4.4.14/arch/arm/boot/dts/
Domap3-overo-base.dtsi272 /* HACK: MTDPART_SIZ_FULL=0 so fill to end */
/linux-4.4.14/Documentation/filesystems/
Dsysfs.txt184 - On read(2), the show() method should fill the entire buffer.
191 be called again, rearmed, to fill the buffer.
Dexofs.txt125 Information included in the file system control block is used to fill the
Dlogfs.txt195 10,000 runs the lowest directory fill before a bucket overflow was
/linux-4.4.14/Documentation/usb/
DURB.txt32 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,
Derror-codes.txt134 -EREMOTEIO The data read from the endpoint did not fill the
/linux-4.4.14/Documentation/fb/
Dapi.txt248 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/
Duser_mad.txt89 /* fill in mad->data */
/linux-4.4.14/arch/arm/mm/
Dproc-mohawk.S371 mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer
Dproc-xsc3.S434 mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer
/linux-4.4.14/arch/unicore32/kernel/
Dentry.S175 @ 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/
Dgameport-programming.txt155 read function. It should fill axes[0..3] with four values of the joystick axes
Djoystick-api.txt169 If time between reads is enough to fill the queue and lose an event,
Dinput-programming.txt198 input_register_device, you have to fill additional fields in the input_dev
/linux-4.4.14/kernel/time/
DKconfig108 You need to fill up the nohz_full boot parameter with the
/linux-4.4.14/drivers/isdn/mISDN/
Dhwchannel.c176 memset(bch->fill, cq->p2 & 0xff, MISDN_BCH_FILL_SIZE); in mISDN_ctrl_bchannel()
/linux-4.4.14/arch/mips/
DKconfig.debug45 should choose 'Y' here, and fill in the extra boot arguments
/linux-4.4.14/arch/arm64/boot/dts/qcom/
Dmsm8916.dtsi36 /* We expect the bootloader to fill in the reg */
/linux-4.4.14/Documentation/driver-model/
Ddriver.txt102 let the bus wrapper fill in the fields. For the callbacks, the bus can
/linux-4.4.14/drivers/ata/
Dsata_fsl.c255 u8 fill[4 * 4]; member
266 u8 fill[2 * 4]; member
/linux-4.4.14/Documentation/dmaengine/
Dprovider.txt215 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/
DREPORTING-BUGS104 Use that information to fill in all fields of the bug report form, and
/linux-4.4.14/Documentation/video4linux/
Duvcvideo.txt112 To create a mapping, applications fill the uvc_xu_control_mapping
Dv4l2-controls.txt189 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.
Dv4l2-framework.txt521 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
Dvideobuf322 buffer; the driver should not remove it from the list or fill it until a
/linux-4.4.14/Documentation/crypto/
Dasync-tx-api.txt61 memset - fill a destination buffer with a byte value
/linux-4.4.14/Documentation/x86/
Dboot.txt233 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/
DKconfig.debug189 quickly fill up the hardware trace buffer. When debugging crashes,
/linux-4.4.14/Documentation/cpu-freq/
Dcpu-drivers.txt98 Then, the driver must fill in the following values:
/linux-4.4.14/arch/arm/kernel/
Dentry-armv.S178 @ We are now ready to fill in the remaining blanks on the stack:
/linux-4.4.14/arch/arm64/boot/dts/freescale/
Dfsl-ls2080a.dtsi59 * is dependent on the SoC FW, which will fill this in.
/linux-4.4.14/drivers/usb/chipidea/
Dudc.c68 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/
DChangeLog.ide-cd.1994-2004214 * - bunch of other stuff, will fill in logs later.
/linux-4.4.14/Documentation/sound/alsa/
DOSS-Emulation.txt144 no-silence do not fill silence ahead to avoid clicks
/linux-4.4.14/Documentation/PCI/
DMSI-HOWTO.txt241 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/
DKconfig364 set this option to 'Y', then fill in the
/linux-4.4.14/Documentation/vm/
Dslub.txt229 Unused data to fill up the space in order to get the next object
/linux-4.4.14/Documentation/target/
Dtcmu-design.txt337 /* Also fill in rsp->sense_buffer here */
/linux-4.4.14/Documentation/fmc/
Dcarrier.txt92 registering the device, as well as fill all other fields listed above.
/linux-4.4.14/drivers/mmc/card/
Dmmc_test.c1494 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/
DKconfig67 partitions into one logical device in such a fashion as to fill them
/linux-4.4.14/scripts/dtc/
Ddtc-lexer.lex.c_shipped238 /* 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. */

12