/openbmc/linux/lib/crypto/ |
H A D | chacha20poly1305.c | 64 __le64 lens[2]; in __chacha20poly1305_encrypt() member 80 b.lens[0] = cpu_to_le64(ad_len); in __chacha20poly1305_encrypt() 81 b.lens[1] = cpu_to_le64(src_len); in __chacha20poly1305_encrypt() 82 poly1305_update(&poly1305_state, (u8 *)b.lens, sizeof(b.lens)); in __chacha20poly1305_encrypt() 135 __le64 lens[2]; in __chacha20poly1305_decrypt() member 153 b.lens[0] = cpu_to_le64(ad_len); in __chacha20poly1305_decrypt() 154 b.lens[1] = cpu_to_le64(dst_len); in __chacha20poly1305_decrypt() 155 poly1305_update(&poly1305_state, (u8 *)b.lens, sizeof(b.lens)); in __chacha20poly1305_decrypt() 233 __le64 lens[2]; in chacha20poly1305_crypt_sg_inplace() member 300 b.lens[0] = cpu_to_le64(ad_len); in chacha20poly1305_crypt_sg_inplace() [all …]
|
/openbmc/linux/net/rds/ |
H A D | connection.c | 536 struct rds_info_lengths *lens, in rds_conn_message_info_cmn() argument 593 lens->nr = total; in rds_conn_message_info_cmn() 595 lens->each = sizeof(struct rds6_info_message); in rds_conn_message_info_cmn() 597 lens->each = sizeof(struct rds_info_message); in rds_conn_message_info_cmn() 602 struct rds_info_lengths *lens, in rds_conn_message_info() argument 605 rds_conn_message_info_cmn(sock, len, iter, lens, want_send, false); in rds_conn_message_info() 611 struct rds_info_lengths *lens, in rds6_conn_message_info() argument 614 rds_conn_message_info_cmn(sock, len, iter, lens, want_send, true); in rds6_conn_message_info() 620 struct rds_info_lengths *lens) in rds_conn_message_info_send() argument 622 rds_conn_message_info(sock, len, iter, lens, 1); in rds_conn_message_info_send() [all …]
|
H A D | info.c | 162 struct rds_info_lengths lens; in rds_info_getsockopt() local 218 func(sock, len, &iter, &lens); in rds_info_getsockopt() 219 BUG_ON(lens.each == 0); in rds_info_getsockopt() 221 total = lens.nr * lens.each; in rds_info_getsockopt() 230 ret = lens.each; in rds_info_getsockopt()
|
H A D | af_rds.c | 730 struct rds_info_lengths *lens) in rds_sock_inc_info() argument 762 lens->nr = total; in rds_sock_inc_info() 763 lens->each = sizeof(struct rds_info_message); in rds_sock_inc_info() 769 struct rds_info_lengths *lens) in rds6_sock_inc_info() argument 794 lens->nr = total; in rds6_sock_inc_info() 795 lens->each = sizeof(struct rds6_info_message); in rds6_sock_inc_info() 801 struct rds_info_lengths *lens) in rds_sock_info() argument 833 lens->nr = cnt; in rds_sock_info() 834 lens->each = sizeof(struct rds_info_socket); in rds_sock_info() 842 struct rds_info_lengths *lens) in rds6_sock_info() argument [all …]
|
H A D | info.h | 13 * These functions must fill in the fields of @lens to reflect the size 20 struct rds_info_lengths *lens);
|
H A D | stats.c | 113 struct rds_info_lengths *lens) in rds_stats_info() argument 141 lens->each = sizeof(struct rds_info_counter); in rds_stats_info() 142 lens->nr = rds_trans_stats_info_copy(iter, avail) + in rds_stats_info()
|
/openbmc/linux/Documentation/admin-guide/media/ |
H A D | vimc.rst | 56 vimc-lens: 57 Ancillary lens for a sensor. Supports auto focus control. Linked to 58 a vimc-sensor using an ancillary link. The lens supports FOCUS_ABSOLUTE 65 - entity 28: Lens A (0 pad, 0 link) 66 type V4L2 subdev subtype Lens flags 0 68 - entity 29: Lens B (0 pad, 0 link) 69 type V4L2 subdev subtype Lens flags 0
|
/openbmc/linux/lib/zlib_inflate/ |
H A D | inftrees.c | 13 The code lengths are lens[0..codes-1]. The result starts at *table, 15 lens shorts, which is used as a work area. type is the type of code 16 to be generated, CODES, LENS, or DISTS. On return, zero is success, 23 int zlib_inflate_table(codetype type, unsigned short *lens, unsigned codes, in zlib_inflate_table() argument 63 code lengths are lens[0..codes-1]. Each length corresponds to the in zlib_inflate_table() 75 lens[] are in the range 0..MAXBITS. The caller must assure this. in zlib_inflate_table() 92 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ in zlib_inflate_table() 96 count[lens[sym]]++; in zlib_inflate_table() 133 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in zlib_inflate_table() 155 provided *table space. It is checked when a LENS table is being made in zlib_inflate_table() [all …]
|
H A D | inftrees.h | 52 LENS, enumerator 56 extern int zlib_inflate_table (codetype type, unsigned short *lens,
|
/openbmc/u-boot/lib/zlib/ |
H A D | inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 32 int inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, in inflate_table() argument 73 code lengths are lens[0..codes-1]. Each length corresponds to the in inflate_table() 85 lens[] are in the range 0..MAXBITS. The caller must assure this. in inflate_table() 102 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ in inflate_table() 106 count[lens[sym]]++; in inflate_table() 143 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table() 165 provided *table space. It is checked when a LENS table is being made in inflate_table() [all …]
|
/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/ |
H A D | CVE-2024-50612.patch | 121 -static sf_count_t vorbis_read_sample (SF_PRIVATE *psf, void *ptr, sf_count_t lens, convert_func *t… 150 +static sf_count_t vorbis_read_sample (SF_PRIVATE *psf, void *ptr, sf_count_t lens, convert_func *t… 253 @@ -688,33 +685,40 @@ vorbis_read_d (SF_PRIVATE *psf, double *ptr, sf_count_t lens) 322 vorbis_write_s (SF_PRIVATE *psf, const short *ptr, sf_count_t lens) 328 int in_frames = lens / psf->sf.channels ; 329 @@ -740,14 +750,17 @@ vorbis_write_s (SF_PRIVATE *psf, const short *ptr, sf_count_t lens) 339 return lens ; 343 vorbis_write_i (SF_PRIVATE *psf, const int *ptr, sf_count_t lens) 348 int in_frames = lens / psf->sf.channels ; 349 @@ -756,14 +769,17 @@ vorbis_write_i (SF_PRIVATE *psf, const int *ptr, sf_count_t lens) [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/media/i2c/ |
H A D | asahi-kasei,ak7375.yaml | 7 title: Asahi Kasei Microdevices AK7375 voice coil lens actuator 13 AK7375 is a voice coil motor (VCM) camera lens actuator that 43 ak7375: camera-lens@c {
|
H A D | dongwoon,dw9807-vcm.yaml | 8 title: Dongwoon Anatech DW9807 voice coil lens driver 36 lens@e {
|
H A D | dongwoon,dw9714.yaml | 7 title: Dongwoon Anatech DW9714 camera voice coil lens driver 42 camera-lens@c {
|
/openbmc/linux/fs/ntfs3/lib/ |
H A D | decompress_common.c | 69 * the 'lens' array and use the decoded symbol as an index into it. 84 * 'lens' array. Must be less than or equal to 2048. 90 * @lens: 98 * All entries in 'lens' must be less than or equal to this value. 109 const u32 table_bits, const u8 lens[], in make_huffman_decode_table() argument 133 len_counts[lens[sym]]++; in make_huffman_decode_table() 190 if (lens[sym]) in make_huffman_decode_table() 191 sorted_syms[offsets[lens[sym]]++] = sym; in make_huffman_decode_table()
|
H A D | xpress_decompress.c | 27 u8 lens[XPRESS_NUM_SYMBOLS]; member 73 d->lens[i*2 + 0] = in_begin[i] & 0xF; in xpress_decompress() 74 d->lens[i*2 + 1] = in_begin[i] >> 4; in xpress_decompress() 79 XPRESS_TABLEBITS, d->lens, in xpress_decompress()
|
/openbmc/linux/Documentation/userspace-api/media/mediactl/ |
H A D | media-controller-model.rst | 39 fact that a particular camera sensor and lens controller form a single 40 physical module, meaning this lens controller drives the lens for this
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-camera.rst | 201 Determines auto focus distance range for which lens may be adjusted. 218 - The lens is set to focus on an object at infinite distance. 223 Specify the objective lens focal length as an absolute value. The 228 Specify the objective lens focal length relatively to the current 229 value. Positive values move the zoom lens group towards the 235 Move the objective lens group at the specified speed until it 237 the movement. A positive value moves the zoom lens group towards the 238 telephoto direction. A value of zero stops the zoom lens group 239 movement. A negative value moves the zoom lens group towards the 460 some lens-distortion correction. [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/media/ |
H A D | video-interface-devices.yaml | 20 lens-focus: 23 A phandle to the node of the focus lens controller. 90 camera module's lens optical inversion effect. 92 Assuming the above represented scene of the swimming shark, the lens 230 The camera is typically mounted upside-down to compensate the lens optical 264 If the camera sensor is not mounted upside-down to compensate for the lens 323 the lens optical inversion effect:
|
/openbmc/linux/drivers/media/i2c/ |
H A D | Kconfig | 621 menu "Lens drivers" 625 tristate "AD5820 lens voice coil support" 630 This is a driver for the AD5820 camera lens voice coil. 634 tristate "AK7375 lens voice coil support" 640 This is a driver for the AK7375 camera lens voice coil. 646 tristate "DW9714 lens voice coil support" 652 This is a driver for the DW9714 camera lens voice coil. 658 tristate "DW9719 lens voice coil support" 665 This is a driver for the DW9719 camera lens voice coil. 670 tristate "DW9768 lens voice coil support" [all …]
|
H A D | dw9807-vcm.c | 20 * This acts as the minimum granularity of lens movement. 22 * uniformly adjusted for gradual lens movement, with desired 231 * The lens position is gradually moved in units of DW9807_CTRL_STEPS, 263 * The lens position is gradually moved in units of DW9807_CTRL_STEPS,
|
H A D | ak7375.c | 20 * This acts as the minimum granularity of lens movement. 22 * uniformly adjusted for gradual lens movement, with desired 209 * The lens position is gradually moved in units of AK7375_CTRL_STEPS, 249 * The lens position is gradually moved in units of AK7375_CTRL_STEPS,
|
H A D | dw9714.c | 21 * This acts as the minimum granularity of lens movement. 23 * uniformly adjusted for gradual lens movement, with desired 213 * The lens position is gradually moved in units of DW9714_CTRL_STEPS, 245 * The lens position is gradually moved in units of DW9714_CTRL_STEPS,
|
/openbmc/linux/drivers/staging/media/atomisp/pci/isp/kernels/sc/sc_1.0/ |
H A D | ia_css_sc_types.h | 20 * CSS-API header file for Lens Shading Correction (SC) parameters. 36 /* Lens Shading Correction table. 39 * introduced by lens imperfections. To correct artefacts,
|
/openbmc/linux/drivers/net/ethernet/fungible/funeth/ |
H A D | funeth_tx.c | 81 const unsigned int *lens, in fun_write_gl() argument 91 fun_dataop_gl_init(gle, 0, 0, lens[i], addrs[i]); in fun_write_gl() 96 fun_dataop_gl_init(gle, 0, 0, lens[i], addrs[i]); in fun_write_gl() 155 unsigned int lens[MAX_SKB_FRAGS + 1]; in write_pkt_desc() local 166 skb_headlen(skb), addrs, lens))) { in write_pkt_desc() 277 gle = fun_write_gl(q, req, addrs, lens, ngle); in write_pkt_desc() 518 unsigned int lens[MAX_SKB_FRAGS + 1]; in fun_xdp_tx() local 540 lens))) { in fun_xdp_tx() 556 fun_write_gl(q, req, dma, lens, nfrags); in fun_xdp_tx()
|