Searched refs:lengths (Results 1 - 200 of 301) sorted by relevance

12

/linux-4.1.27/lib/zlib_inflate/
H A Dinflate.h31 TABLE, /* i: waiting for dynamic block table lengths */
32 LENLENS, /* i: waiting for code length code lengths */
33 CODELENS, /* i: waiting for length/lit and distance code lengths */
102 unsigned ncode; /* number of code length code lengths */
103 unsigned nlen; /* number of length code lengths */
104 unsigned ndist; /* number of distance code lengths */
105 unsigned have; /* number of code lengths in lens[] */
107 unsigned short lens[320]; /* temporary storage for code lengths */
H A Dinftrees.c13 The code lengths are lens[0..codes-1]. The result starts at *table,
28 unsigned min, max; /* minimum and maximum code lengths */ zlib_inflate_table()
62 Process a set of code lengths to create a canonical Huffman code. The zlib_inflate_table()
63 code lengths are lens[0..codes-1]. Each length corresponds to the zlib_inflate_table()
66 for codes with equal lengths. Then the code starts with all zero bits zlib_inflate_table()
87 codes at all, checking for a valid set of lengths, and looking ahead zlib_inflate_table()
92 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ zlib_inflate_table()
98 /* bound code lengths, force root to be within code lengths */ zlib_inflate_table()
116 /* check for an over-subscribed or incomplete set of lengths */ zlib_inflate_table()
150 code lengths to determine what size sub-table is needed. The length zlib_inflate_table()
H A Dinflate.c332 static const unsigned short order[19] = /* permutation of code lengths */ zlib_inflate()
424 strm->msg = (char *)"invalid stored block lengths"; zlib_inflate()
478 strm->msg = (char *)"invalid code lengths set"; zlib_inflate()
543 strm->msg = (char *)"invalid literal/lengths set"; zlib_inflate()
/linux-4.1.27/drivers/infiniband/ulp/isert/
H A Disert_proto.h12 /*Constant PDU lengths calculations */
/linux-4.1.27/include/asm-generic/
H A Dscatterlist.h21 * to get bus addresses of each of the SG entries and their lengths.
H A Dchecksum.h11 * this function must be called with even lengths, except
/linux-4.1.27/include/uapi/linux/cifs/
H A Dcifs_mount.h19 /* Max string lengths for cifs mounting options. */
/linux-4.1.27/net/rds/
H A Dinfo.h15 * or not by comparing the lengths.
/linux-4.1.27/include/linux/
H A Dcrc32.h16 * sequences of bytes, seq1 and seq2 with lengths len1
43 * sequences of bytes, seq1 and seq2 with lengths len1
H A Duio.h44 * segment lengths have been validated. Because the individual lengths can
H A Dzutil.h33 /* The minimum and maximum match lengths */
H A Dgenl_magic_struct.h35 * validating the attribute types and lengths via nla_parse_nested().
H A Dieee802154.h210 * available lengths:
H A Darcdevice.h118 * These are the max/min lengths of packet payload, not including the
/linux-4.1.27/lib/zlib_deflate/
H A Ddeftree.c14 * a Huffman encoding of the lengths of all the code strings (in
16 * reconstructed from the lengths in the inflate process, as described
74 /* The lengths of the bit length codes are sent in order of decreasing
75 * probability, to avoid transmitting the lengths for unused bit length codes.
88 /* The static literal tree. Since the bit lengths are imposed, there is no
398 * Compute the optimal bit lengths for a tree and update the total bit length
427 /* In a first pass, compute the optimal bit lengths (which may gen_bitlen()
466 /* Now recompute all bit lengths, scanning in increasing frequency. gen_bitlen()
468 * lengths instead of fixing only the wrong ones. This idea is taken gen_bitlen()
531 * Construct one Huffman tree and assigns the code bit strings and lengths.
580 * establish sub-heaps of increasing lengths: build_tree()
614 * generate the bit lengths. build_tree()
721 * Construct the Huffman tree for the bit lengths and return the index in
737 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts. build_bl_tree()
757 * lengths of the bit length codes, the literal tree and the distance tree.
880 /* At this point, opt_len and static_len are the total bit lengths of
927 /* 4: two words for the lengths */
H A Ddefutil.h25 /* number of codes used to transfer the bit lengths */
170 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
190 uch *l_buf; /* buffer for literals or lengths */
193 /* Size of match buffer for literals/lengths. There are 4 reasons for
216 * the same number of elements. To use different lengths, an extra flag
/linux-4.1.27/include/uapi/scsi/
H A Dscsi_netlink_fc.h43 /* macro to round up message lengths to 8byte boundary */
H A Dscsi_netlink.h76 /* macro to round up message lengths to 8byte boundary */
/linux-4.1.27/arch/blackfin/include/asm/
H A Dsections.h17 * The weak markings on the lengths might seem weird, but this is required
/linux-4.1.27/arch/ia64/scripts/
H A Dunwcheck.py6 # and verifies that the sum of the region-lengths matches the total
/linux-4.1.27/tools/testing/selftests/powerpc/stringloops/
H A Dmemcmp.c11 /* test all offsets and lengths */ test_one()
/linux-4.1.27/lib/
H A Dinflate.c24 single bytes (called "literals") and match lengths. A second Huffman
100 13. The literal/length and distance code bit lengths are read as a
101 single stream of lengths. It is possible (and advantageous) for
103 the two sets of lengths.
173 static const unsigned border[] = { /* Order of the bit length code lengths */
175 static const ush cplens[] = { /* Copy lengths for literal codes 257..285 */
322 unsigned *b, /* code lengths in bits (all assumed <= BMAX) */ huft_build()
330 /* Given a list of code lengths and a maximum table size, make a set of huft_build()
334 oversubscribed set of lengths), and three if not enough memory. */ huft_build()
432 /* Make a table of values in order of bit lengths */ huft_build()
452 /* go through the bit lengths (k already is bits in shortest code) */ huft_build()
834 unsigned m; /* mask for bit lengths table */ inflate_dynamic()
835 unsigned n; /* number of lengths to get */ inflate_dynamic()
843 unsigned *ll; /* literal/length and distance code lengths */ inflate_dynamic()
851 ll = malloc(sizeof(*ll) * (288+32)); /* literal/length and distance code lengths */ inflate_dynamic()
853 ll = malloc(sizeof(*ll) * (286+30)); /* literal/length and distance code lengths */ inflate_dynamic()
864 /* read in table lengths */ inflate_dynamic()
880 ret = 1; /* bad lengths */ inflate_dynamic()
886 /* read in bit-length-code lengths */ inflate_dynamic()
910 /* read in literal and distance code lengths */ inflate_dynamic()
H A Dchecksum.c124 * this function must be called with even lengths, except
H A Ddecompress_bunzip2.c236 /* Read Huffman code lengths for each symbol. They're get_next_block()
270 /* Find largest and smallest lengths in this group */ get_next_block()
/linux-4.1.27/arch/powerpc/include/asm/
H A Dchecksum.h38 * this function must be called with even lengths, except
52 * Like csum_partial, this must be called with even lengths,
/linux-4.1.27/drivers/net/ethernet/cisco/enic/
H A Dvnic_vic.h24 /* Note: String field lengths include null char */
/linux-4.1.27/include/net/
H A Dgue.h4 /* Definitions for the GUE header, standard and private flags, lengths
/linux-4.1.27/arch/cris/include/asm/
H A Dchecksum.h15 * this function must be called with even lengths, except
/linux-4.1.27/arch/ia64/include/asm/
H A Dchecksum.h36 * this function must be called with even lengths, except
/linux-4.1.27/arch/ia64/lib/
H A Dchecksum.c74 * this function must be called with even lengths, except
/linux-4.1.27/arch/metag/include/asm/
H A Dchecksum.h11 * this function must be called with even lengths, except
/linux-4.1.27/arch/alpha/include/asm/
H A Dchecksum.h32 * this function must be called with even lengths, except
H A Dcore_apecs.h62 wants to access memory-mapped registers in byte and short lengths.
/linux-4.1.27/drivers/net/ethernet/qualcomm/
H A Dqca_framing.h50 /* Min/Max frame lengths */
/linux-4.1.27/arch/x86/lib/
H A Dcsum-partial_64.c128 * this function must be called with even lengths, except
/linux-4.1.27/arch/s390/include/asm/
H A Dchecksum.h23 * this function must be called with even lengths, except
/linux-4.1.27/arch/avr32/include/asm/
H A Dchecksum.h18 * this function must be called with even lengths, except
/linux-4.1.27/arch/m68k/include/asm/
H A Dchecksum.h17 * this function must be called with even lengths, except
/linux-4.1.27/arch/arm/include/asm/
H A Dchecksum.h21 * this function must be called with even lengths, except
/linux-4.1.27/fs/cachefiles/
H A Dkey.c35 * - need to cut the cooked key into 252 char lengths (189 raw bytes)
/linux-4.1.27/net/ipv4/netfilter/
H A Dnf_log_arp.c62 /* If it's for Ethernet and the lengths are OK, then log the ARP dump_arp_packet()
/linux-4.1.27/drivers/net/wireless/iwlwifi/
H A Diwl-fw.h160 * @dbg_conf_tlv_len: lengths of the @dbg_conf_tlv entries
162 * @dbg_trigger_tlv_len: lengths of the @dbg_trigger_tlv entries
H A Diwl-7000.c94 /* DCCM offsets and lengths */
H A Diwl-8000.c84 /* Memory offsets and lengths */
H A Diwl-trans.h267 * @len: array of the lengths of the chunks in data
/linux-4.1.27/drivers/parport/
H A Dprobe.c160 * bytes short. Construct a sorted array of lengths to try. */ parport_read_device_id()
167 /* Don't try lengths of 0x100 and 0x200 as 1 and 2 */ parport_read_device_id()
/linux-4.1.27/drivers/net/ieee802154/
H A Dmrf24j40.c222 u8 lengths[2]; write_tx_buf() local
230 .tx_buf = &lengths, /* TODO: Is DMA really required for SPI? */ write_tx_buf()
252 lengths[0] = 0x0; /* Header Length. Set to 0 for now. TODO */ write_tx_buf()
253 lengths[1] = length; /* Total length */ write_tx_buf()
/linux-4.1.27/arch/x86/um/asm/
H A Dchecksum.h14 * this function must be called with even lengths, except
/linux-4.1.27/arch/xtensa/include/asm/
H A Dchecksum.h25 * this function must be called with even lengths, except
/linux-4.1.27/arch/sparc/include/asm/
H A Dchecksum_64.h27 * this function must be called with even lengths, except
H A Dchecksum_32.h27 * this function must be called with even lengths, except
/linux-4.1.27/arch/x86/include/asm/
H A Dchecksum_32.h15 * this function must be called with even lengths, except
/linux-4.1.27/arch/metag/lib/
H A Dchecksum.c111 * this function must be called with even lengths, except
/linux-4.1.27/drivers/acpi/acpica/
H A Dtbfadt.c316 * The FADT has multiple versions with different lengths, acpi_tb_parse_fadt()
464 * Gpe block lengths must be multiple of 2
669 * force FADT register definitions to their default lengths.
681 * Optionally check all register lengths against the default values and acpi_tb_setup_fadt_registers()
H A Dexmisc.c196 /* Combine both lengths, minimum size will be 2 for end_tag */ acpi_ex_concat_template()
690 /* Bytes match (to shortest length), compare lengths */ acpi_ex_do_logical_op()
707 /* Bytes match (to shortest length), compare lengths */ acpi_ex_do_logical_op()
H A Dutids.c340 /* String lengths include null terminator */ acpi_ut_execute_CID()
H A Devgpeinit.c100 * Why the GPE register block lengths are divided by 2: From the ACPI acpi_ev_gpe_initialize()
H A Dexconfig.c165 /* Validate lengths for the Signature, oem_id, and oem_table_id strings */ acpi_ex_load_table_op()
H A Drscalc.c3 * Module Name: rscalc - Calculate stream and list lengths
H A Dutresrc.c349 * lengths must meet the minimum required length, etc.
H A Dacpredef.h579 * lengths, but all elements of all settings are Integers.
/linux-4.1.27/fs/proc/
H A Dproc_tty.c183 * password lengths and inter-keystroke timings during password proc_tty_init()
/linux-4.1.27/include/net/irda/
H A Dirlap_frame.h75 /* Some IrLAP field lengths */
/linux-4.1.27/arch/score/include/asm/
H A Dchecksum.h14 * this function must be called with even lengths, except
/linux-4.1.27/arch/sh/include/asm/
H A Dchecksum_32.h21 * this function must be called with even lengths, except
/linux-4.1.27/arch/frv/include/asm/
H A Dchecksum.h24 * this function must be called with even lengths, except
/linux-4.1.27/arch/frv/lib/
H A Dchecksum.c102 * this function must be called with even lengths, except
/linux-4.1.27/arch/m32r/include/asm/
H A Dchecksum.h29 * this function must be called with even lengths, except
/linux-4.1.27/arch/arm/include/asm/hardware/
H A Diop_adma.h88 * for example transfer lengths larger than the supported hw max
/linux-4.1.27/arch/alpha/lib/
H A Dchecksum.c159 * this function must be called with even lengths, except
/linux-4.1.27/fs/befs/
H A Dbefs_fs_types.h24 * Max name lengths of BFS
/linux-4.1.27/drivers/media/rc/
H A Dredrat3.c89 /* Max number of lengths in the signal. */
95 /* Delta value when measuring lengths */
305 /* don't allow zero lengths to go back, breaks lirc */ redrat3_len_to_us()
310 * convert us back into redrat3 lengths
329 /* don't allow zero lengths to go back, breaks lirc */ redrat3_us_to_len()
H A Dstreamzap.c96 /* sum of signal lengths received since signal start */
/linux-4.1.27/drivers/pci/hotplug/
H A Dcpqphp_pci.c594 * IO and memory base lengths cpqhp_save_base_addr_length()
631 /* Figure out IO and memory base lengths */ cpqhp_save_base_addr_length()
792 /* Figure out IO and memory base lengths */ cpqhp_save_used_resources()
864 /* Figure out IO and memory base lengths */ cpqhp_save_used_resources()
1108 /* Figure out IO and memory base lengths */ cpqhp_valid_replace()
/linux-4.1.27/crypto/
H A Dgcm.c264 u128 lengths; gcm_hash_len() local
266 lengths.a = cpu_to_be64(req->assoclen * 8); gcm_hash_len()
267 lengths.b = cpu_to_be64(gctx->cryptlen * 8); gcm_hash_len()
268 memcpy(pctx->iauth_tag, &lengths, 16); gcm_hash_len()
273 NULL, sizeof(lengths)); gcm_hash_len()
H A Dcamellia_generic.c1027 max = 32; /* for key lengths of 24 and 32 */ camellia_encrypt()
1055 max = 32; /* for key lengths of 24 and 32 */ camellia_decrypt()
/linux-4.1.27/drivers/net/wireless/
H A Drayctl.h31 /* 802.11 element ID's and lengths */
180 /* Hop pattern lengths */
/linux-4.1.27/arch/um/drivers/
H A Dcow_user.c53 * Explicitly specify field bit lengths for systems with different
54 * lengths for the usual C types. Not sure whether char or
/linux-4.1.27/drivers/media/usb/gspca/
H A Dbenq.c189 PERR("ISOC bad lengths %d / %d", sd_isoc_irq()
/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/
H A Dsxgbe_desc.h169 /* Assign buffer lengths for descriptor */
H A Dsxgbe_desc.c41 /* Assign buffer lengths for descriptor */ sxgbe_prepare_tx_desc()
/linux-4.1.27/drivers/scsi/
H A Dscsi_ioctl.c79 * This size *does not* include the initial lengths that were passed.
H A Dscsi_scan.c647 * what larger transfer lengths might work. */ scsi_probe_lun()
902 * max/optimal lengths and relied on the old block layer safe default scsi_add_lun()
H A Datari_scsi.c690 * explicitly known as byte mode have such big allocation lengths... atari_dma_xfer_len()
/linux-4.1.27/drivers/net/wireless/rt2x00/
H A Drt2x00crypto.c86 * note that these lengths should only be added when rt2x00crypto_tx_overhead()
/linux-4.1.27/drivers/staging/media/lirc/
H A Dlirc_serial.c4 * lirc_serial - Device driver that records pulse- and pause-lengths
5 * (space-lengths) between DDCD event on a serial port.
36 * - For other system, non-integer-microsecond pulse/space lengths,
42 * tuning the pulse lengths down - the send_pulse routine ignored
H A Dlirc_imon.c599 * Translate received data to pulse and space lengths. imon_incoming_packet()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmutil/
H A Dutils.c215 /* Return sum of lengths of a specific set of precedences */ brcmu_pktq_mlen()
/linux-4.1.27/drivers/infiniband/hw/qib/
H A Dqib_qsfp.h72 /* Bytes 142..145 are lengths for various fiber types. Not QLogic req'd */
H A Dqib_sdma.c529 * 2) The IB SGE addresses and lengths are 32-bit aligned
/linux-4.1.27/drivers/dma/ppc4xx/
H A Dadma.h130 * for example transfer lengths larger than the supported hw max
/linux-4.1.27/arch/sh/lib64/
H A Dcopy_user_memcpy.S45 misses, this is probably offset by the stall lengths on the preloads.
/linux-4.1.27/drivers/block/
H A Dcciss_cmd.h135 /* Define the CDB lengths supported by cciss based controllers */
/linux-4.1.27/arch/mips/cavium-octeon/executive/
H A Dcvmx-cmd-queue.c274 /* FIXME: Implement other lengths */ cvmx_cmd_queue_length()
/linux-4.1.27/arch/mips/include/asm/
H A Dchecksum.h30 * this function must be called with even lengths, except
/linux-4.1.27/include/scsi/fc/
H A Dfc_fcp.h119 * sense/response lengths and the sense data/response info section.
H A Dfc_fip.h69 #define FIP_BPW 4 /* bytes per word for lengths */
/linux-4.1.27/include/uapi/drm/
H A Di810_drm.h277 int *length; /* List of lengths for GFXBlocks (FUTURE) */
H A Ddrm_mode.h288 __u64 values_ptr; /* values and blob lengths */
/linux-4.1.27/arch/parisc/include/asm/
H A Dchecksum.h13 * this function must be called with even lengths, except
/linux-4.1.27/net/bridge/netfilter/
H A Debt_log.c154 /* If it's for Ethernet and the lengths are OK, ebt_log_packet()
/linux-4.1.27/lib/xz/
H A Dxz_dec_lzma2.c122 /* Probabilities for match lengths 2-9 */
125 /* Probabilities for match lengths 10-17 */
128 /* Probabilities for match lengths 18-273 */
188 * lengths of 2 (i.e. MATCH_LEN_MIN), 3, 4, and [5, 273].
/linux-4.1.27/tools/testing/selftests/net/
H A Dpsock_fanout.c151 fprintf(stderr, "ERROR: incorrect queue lengths\n"); sock_fanout_read()
/linux-4.1.27/sound/soc/omap/
H A Domap-hdmi-audio.c183 * two different lengths. Hence, we need to specify the maximum hdmi_dai_hw_params()
H A Domap-mcbsp.c306 /* Set word lengths */ omap_mcbsp_dai_hw_params()
313 /* Set word lengths */ omap_mcbsp_dai_hw_params()
/linux-4.1.27/drivers/crypto/nx/
H A Dnx.c303 /* these lengths should be negative, which will indicate to phyp that nx_build_sg_lists()
382 * structure. The best we can do is check lengths as we parse and bail nx_of_update_msc()
/linux-4.1.27/arch/sparc/kernel/
H A Dioport.c271 /* XXX why are some lengths signed, others unsigned? */ sbus_alloc_coherent()
362 /* XXX why are some lengths signed, others unsigned? */ sbus_map_page()
/linux-4.1.27/drivers/usb/storage/
H A Dscsiglue.c174 /* Many disks only accept MODE SENSE transfer lengths of slave_configure()
266 * or to force 192-byte transfer lengths for MODE SENSE. slave_configure()
/linux-4.1.27/fs/cifs/
H A Dmisc.c367 /* check if lengths match mod 64K */ checkSMB()
381 * data than the lengths in the SMB packet would checkSMB()
/linux-4.1.27/net/sunrpc/auth_gss/
H A Dgss_krb5_wrap.c94 /* XXX: NOTE: we do not adjust the page lengths--they represent gss_krb5_remove_padding()
103 * tail lengths, though--at worst badly formed xdr might lead the gss_krb5_remove_padding()
/linux-4.1.27/drivers/net/ethernet/8390/
H A D8390.h88 short tx1, tx2; /* Packet lengths for ping-pong tx. */
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dt4vf_common.h136 u32 sge_control; /* padding, boundaries, lengths, etc. */
/linux-4.1.27/drivers/net/usb/
H A Dlg-vl600.c120 /* Frame lengths are generally 4B multiplies but every couple of vl600_rx_fixup()
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
H A Dcommon.c138 * padsize would take into account odd header lengths: ath9k_cmn_rx_skb_postprocess()
/linux-4.1.27/arch/tile/mm/
H A Dhomecache.c97 * - Canonicalizes that lengths of zero make cpumasks NULL.
/linux-4.1.27/drivers/tty/serial/
H A Dsunhv.c401 * "\r\n" along the way. We have to return two lengths
/linux-4.1.27/drivers/usb/serial/
H A Dsafe_serial.c216 dev_err(&port->dev, "%s - inconsistent lengths %d:%d\n", safe_process_read_urb()
/linux-4.1.27/fs/xfs/
H A Dxfs_rtalloc.c227 * The lengths are all in rtextents.
340 * The lengths are all in rtextents.
419 * the length, if given. The lengths are all in rtextents.
614 * the length, if given. The lengths are all in rtextents.
H A Dxfs_attr_list.c599 * also value lengths. Positive return value follows the XFS
H A Dxfs_symlink.c206 * Check component lengths of the target path name. xfs_symlink()
/linux-4.1.27/include/xen/interface/io/
H A Dvscsiif.h135 * elements referencing the target data buffers is calculated from the lengths
/linux-4.1.27/arch/cris/boot/rescue/
H A Dhead_v10.S6 * script and contains offsets, lengths, types and checksums
/linux-4.1.27/net/x25/
H A Dx25_subr.c208 *dptr++ = 0x00; /* Address lengths */ x25_write_internal()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dni_labpc_common.c992 /* 8 bit write lengths to eeprom */ labpc_eeprom_read()
1023 const int write_length = 8; /* 8 bit write lengths to eeprom */ labpc_eeprom_read_status()
1052 const int write_length = 8; /* 8 bit write lengths to eeprom */ labpc_eeprom_write()
H A Djr3_pci.h38 * is used to regulate the voltage over various cable lengths.
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
H A Dclient.c580 int count, __u32 *lengths, char **bufs, __ptlrpc_request_bufs_pack()
597 lengths, bufs); __ptlrpc_request_bufs_pack()
812 * Sizes of buffers are described in array \a lengths and buffers themselves
819 int count, __u32 *lengths, char **bufs, ptlrpc_prep_req_pool()
830 lengths, bufs, NULL); ptlrpc_prep_req_pool()
844 __u32 *lengths, char **bufs) ptlrpc_prep_req()
846 return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs, ptlrpc_prep_req()
578 __ptlrpc_request_bufs_pack(struct ptlrpc_request *request, __u32 version, int opcode, int count, __u32 *lengths, char **bufs, struct ptlrpc_cli_ctx *ctx) __ptlrpc_request_bufs_pack() argument
817 ptlrpc_prep_req_pool(struct obd_import *imp, __u32 version, int opcode, int count, __u32 *lengths, char **bufs, struct ptlrpc_request_pool *pool) ptlrpc_prep_req_pool() argument
843 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count, __u32 *lengths, char **bufs) ptlrpc_prep_req() argument
H A Dpack_generic.c136 int lustre_msg_size_v2(int count, __u32 *lengths) lustre_msg_size_v2() argument
143 size += cfs_size_round(lengths[i]); lustre_msg_size_v2()
150 * with the given sub-buffer lengths.
543 /* didn't receive all the buffer lengths */ lustre_unpack_msg_v2()
/linux-4.1.27/fs/ubifs/
H A Dio.c63 * bytes in those small gaps. Common headers of nodes store real node lengths,
64 * not aligned lengths. Indexing nodes also store real lengths in branches.
H A Dubifs-media.h476 * @xattr_names: sum of lengths of all extended attribute names belonging to
H A Ddebug.c1755 * @xattr_nms: sum of lengths of all extended attribute names belonging to this
1757 * @calc_xnms: calculated sum of lengths of all extended attribute names
H A Dubifs.h356 * @xattr_names: sum of lengths of all extended attribute names belonging to
878 * Note, UBIFS aligns node lengths to 8-bytes boundary, so the requester has to
/linux-4.1.27/drivers/net/ethernet/natsemi/
H A Dsonic.h304 unsigned int tx_len[SONIC_NUM_TDS]; /* lengths of tx DMA mappings */
/linux-4.1.27/drivers/net/wan/
H A Dfarsync.h128 unsigned char range; /* cable lengths */
H A Dhdlc_fr.c89 #define LMI_CCITT_CISCO_LENGTH 13 /* LMI frame lengths */
/linux-4.1.27/drivers/media/platform/ti-vpe/
H A Dvpdma_priv.h123 * lengths should be ensured to be aligned by the VPDMA user.
/linux-4.1.27/drivers/net/phy/
H A Dbroadcom.c383 * instead of using trace lengths to achieve timing". bcm5481_config_aneg()
/linux-4.1.27/drivers/scsi/csiostor/
H A Dcsio_wr.h428 * lengths, etc.
/linux-4.1.27/drivers/staging/wlan-ng/
H A Dp80211mgmt.h154 /* Note: Not all fields are listed because of variable lengths, */
H A Dprism2fw.c630 pr_err("no end record found or invalid lengths in PDR data, exiting. %x %d\n", mkpdrlist()
873 /* Point into data for different word lengths */ read_fwfile()
H A Dp80211conv.c134 /* codes <= 1500 reserved for 802.3 lengths */ skb_ether_to_p80211()
H A Dhfa384x.h198 Configuration RID lengths: Network Params, Static Config Entities
/linux-4.1.27/drivers/hv/
H A Dhv_fcopy.c136 * the max lengths specified. We will however, reserve room fcopy_send_data()
H A Dhv_kvp.c371 * the max lengths specified. We will however, reserve room kvp_send_key()
/linux-4.1.27/drivers/usb/host/
H A Dehci-timer.c65 * Delay lengths for the hrtimer event types.
/linux-4.1.27/net/core/
H A Dflow_dissector.c105 * info but lengths and protocols. htons()
/linux-4.1.27/sound/atmel/
H A Dabdac.c128 * non-halfword-aligned buffers or lengths. atmel_abdac_prepare_dma()
H A Dac97c.c118 * non-halfword-aligned buffers or lengths. atmel_ac97c_prepare_dma()
/linux-4.1.27/sound/pci/
H A Dazt3328.h55 /* both lengths of DMA transfer areas, PU:0x00000000
H A Dbt87x.c65 #define REG_PACKET_LEN 0x110 /* audio packet lengths */
/linux-4.1.27/drivers/xen/
H A Devtchn.c202 /* Byte lengths of two chunks. Chunk split (if any) is at ring wrap. */ evtchn_read()
/linux-4.1.27/drivers/media/i2c/soc_camera/
H A Dmt9m111.c398 /* Bayer format - even size lengths */ mt9m111_s_crop()
549 * With Bayer format enforce even side lengths, but let the user play mt9m111_try_fmt()
H A Dmt9v022.c287 /* Bayer format - even size lengths */ mt9v022_s_crop()
/linux-4.1.27/drivers/infiniband/core/
H A Ddevice.c299 printk(KERN_WARNING "Couldn't create table lengths cache for device %s\n", ib_register_device()
/linux-4.1.27/drivers/mtd/tests/
H A Doobtest.c446 * Third test: write OOB at varying offsets and lengths, read it back mtd_oobtest_init()
/linux-4.1.27/drivers/media/pci/ttpci/
H A Dbudget-patch.c559 ** whose lengths appear to be like 188 292 188 104 etc. budget_patch_attach()
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
H A Dhif.c371 * with host bus interconnects that restrict bus transfer lengths to ath6kl_hif_proc_cpu_intr()
/linux-4.1.27/drivers/net/wireless/orinoco/
H A Dhermes.c477 * the configuration records appear to have incorrect lengths in
/linux-4.1.27/drivers/scsi/bfa/
H A Dbfi_ms.h739 * lengths.
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/
H A Dtypes.h252 * region (i.e. sum of all fragment lengths) must not be less than
/linux-4.1.27/drivers/staging/lustre/lustre/include/
H A Dlustre_net.h2402 int opcode, int count, __u32 *lengths,
2406 int count, __u32 *lengths, char **bufs,
2590 int lustre_msg_size(__u32 magic, int count, __u32 *lengths);
2591 int lustre_msg_size_v2(int count, __u32 *lengths);
/linux-4.1.27/drivers/infiniband/hw/ipath/
H A Dipath_sdma.c660 * 2) The IB SGE addresses and lengths are 32-bit aligned
H A Dipath_user_sdma.c471 * iovec lengths. ipath_user_sdma_queue_pkts()
/linux-4.1.27/drivers/infiniband/ulp/iser/
H A Discsi_iser.h187 /* Constant PDU lengths calculations */
/linux-4.1.27/block/
H A Dscsi_ioctl.c428 * get in an out lengths, verify they don't exceed a page worth of data sg_scsi_ioctl()
/linux-4.1.27/arch/sparc/lib/
H A Dchecksum_32.S344 bne cc_dword_align ! yes, we check for short lengths there
/linux-4.1.27/fs/ocfs2/
H A Dextent_map.c456 * extent, so we return their lengths in a separate ocfs2_get_clusters_nocache()
/linux-4.1.27/include/acpi/
H A Dacpixf.h158 * TRUE to use the defaults, if an FADT contains incorrect widths/lengths.
/linux-4.1.27/include/net/iucv/
H A Diucv.h72 * Inside the array may be 31- bit addresses and 31-bit lengths.
/linux-4.1.27/include/net/sctp/
H A Dsctp.h438 * individual parameter lengths and instead depend on
/linux-4.1.27/include/scsi/
H A Dscsi.h202 * SCSI command lengths
H A Dscsi_transport_fc.h707 /* allocation lengths for host-specific data */
/linux-4.1.27/net/dccp/
H A Doutput.c169 /* Account for header lengths and IPv4/v6 option overhead */ dccp_sync_mss()
/linux-4.1.27/net/sunrpc/
H A Dxdr.c591 * head, tail, and page lengths are adjusted to correspond.
1072 * Trim an xdr_buf by the given number of bytes by fixing up the lengths. Note
/linux-4.1.27/drivers/net/ethernet/intel/e1000e/
H A Dphy.c2194 /* Fixed FFE for short cable lengths */ e1000e_phy_init_script_igp3()
2196 /* Fixed FFE for medium cable lengths */ e1000e_phy_init_script_igp3()
2198 /* Fixed FFE for long cable lengths */ e1000e_phy_init_script_igp3()
/linux-4.1.27/drivers/net/ethernet/intel/igb/
H A De1000_phy.c2155 /* Fixed FFE for short cable lengths */ igb_phy_init_script_igp3()
2157 /* Fixed FFE for medium cable lengths */ igb_phy_init_script_igp3()
2159 /* Fixed FFE for long cable lengths */ igb_phy_init_script_igp3()
/linux-4.1.27/drivers/scsi/mvsas/
H A Dmv_sas.c538 /* request, response lengths */ mvs_task_prep_ata()
655 /* request, response lengths */ mvs_task_prep_ssp()
/linux-4.1.27/drivers/isdn/i4l/
H A Disdn_bsdcomp.c138 unsigned short *lens; /* array of lengths of codes */
/linux-4.1.27/drivers/net/ppp/
H A Dbsd_comp.c159 unsigned short *lens; /* array of lengths of codes */
/linux-4.1.27/drivers/net/slip/
H A Dslip.c37 * Alan Cox : Oops - fix AX.25 buffer lengths
/linux-4.1.27/drivers/media/usb/go7007/
H A Dgo7007-fw.c1552 int framelen[8] = { }; /* holds the lengths of empty frame templates */ go7007_construct_fw_image()
/linux-4.1.27/drivers/net/ethernet/sfc/
H A Dtx.c100 * lengths up to 8K or 8K-1. However, since PCI Express efx_max_tx_len()
/linux-4.1.27/drivers/net/wireless/cw1200/
H A Dtxrx.c1107 * IV/ICV lengths. Even defineas are not exposed. cw1200_rx_cb()
/linux-4.1.27/drivers/dma/
H A Ddmaengine.c25 * operation, the code goes to great lengths to avoid additional overhead,
H A Ddmatest.c386 * This function repeatedly tests DMA transfers of various lengths and
/linux-4.1.27/drivers/ata/
H A Dsata_promise.c569 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */ pdc_atapi_pkt()
/linux-4.1.27/drivers/hid/
H A Dhid-logitech-hidpp.c56 * bluetooth. The message lengths are defined by the hid vendor specific report
/linux-4.1.27/fs/reiserfs/
H A Dbitmap.c141 * lengths in one bitmap block
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_dir2_data.c409 * Didn't find it. This only happens if there are duplicate lengths. xfs_dir2_data_freefind()
/linux-4.1.27/fs/nfsd/
H A Dnfs3xdr.c946 /* determine entry word length and lengths to go in pages */ encode_entry()
/linux-4.1.27/arch/alpha/kernel/
H A Dpci_iommu.c498 Write dma_length of each leader with the combined lengths of
/linux-4.1.27/fs/ext4/
H A Dextents_status.c388 "The sum of lengths of es1 (%d) and es2 (%d) " ext4_es_can_be_merged()
/linux-4.1.27/net/ipv4/
H A Dicmp.c44 * Andi Kleen : Check all packet lengths properly
H A Dfib_trie.c903 * out parent suffix lengths as a part of trie_rebalance leaf_push_suffix()
1449 * out parent suffix lengths as a part of trie_rebalance fib_remove_alias()
/linux-4.1.27/kernel/power/
H A Dswap.c493 size_t *unc_len[LZO_THREADS]; /* uncompressed lengths */
/linux-4.1.27/kernel/rcu/
H A Dtree.h609 /* Read out queue lengths for tracing. */ rcu_nocb_q_lengths()
/linux-4.1.27/net/sctp/
H A Dauth.c172 /* lengths are the same, compare numbers */ sctp_auth_compare_vectors()
/linux-4.1.27/sound/usb/
H A Dendpoint.c1074 * Iterate through the inbound packet and prepare the lengths snd_usb_handle_sync_urb()
/linux-4.1.27/drivers/mmc/host/
H A Datmel-mci.c1014 * non-word-aligned buffers or lengths. Also, we don't bother atmci_prepare_data_dma()
1277 /* We don't support multiple blocks of weird lengths. */ atmci_request()
/linux-4.1.27/drivers/net/ethernet/freescale/
H A Dgianfar.c1200 /* Initialize the max receive frame/buffer lengths */ gfar_mac_reset()
2337 /* Place the fragment addresses and lengths into the TxBDs */ gfar_start_xmit()
H A Ducc_geth.c2088 /* Rx BD lengths */ ucc_struct_init()
2099 /* Tx BD lengths */ ucc_struct_init()

Completed in 5040 milliseconds

12