Home
last modified time | relevance | path

Searched refs:lens (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/kernel/net/rds/
H A Dconnection.c536 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 Dinfo.c162 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 Daf_rds.c731 struct rds_info_lengths *lens) in rds_sock_inc_info() argument
763 lens->nr = total; in rds_sock_inc_info()
764 lens->each = sizeof(struct rds_info_message); in rds_sock_inc_info()
770 struct rds_info_lengths *lens) in rds6_sock_inc_info() argument
795 lens->nr = total; in rds6_sock_inc_info()
796 lens->each = sizeof(struct rds6_info_message); in rds6_sock_inc_info()
802 struct rds_info_lengths *lens) in rds_sock_info() argument
834 lens->nr = cnt; in rds_sock_info()
835 lens->each = sizeof(struct rds_info_socket); in rds_sock_info()
843 struct rds_info_lengths *lens) in rds6_sock_info() argument
[all …]
H A Dstats.c113 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()
H A Dtcp.c233 struct rds_info_lengths *lens) in rds_tcp_tc_info() argument
266 lens->nr = rds_tcp_tc_count; in rds_tcp_tc_info()
267 lens->each = sizeof(tsinfo); in rds_tcp_tc_info()
279 struct rds_info_lengths *lens) in rds6_tcp_tc_info() argument
309 lens->nr = rds6_tcp_tc_count; in rds6_tcp_tc_info()
310 lens->each = sizeof(tsinfo6); in rds6_tcp_tc_info()
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dchacha20poly1305.c64 __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 …]
/OK3568_Linux_fs/kernel/lib/zlib_inflate/
H A Dinftrees.c23 int zlib_inflate_table(codetype type, unsigned short *lens, unsigned codes, in zlib_inflate_table() argument
96 count[lens[sym]]++; in zlib_inflate_table()
133 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in zlib_inflate_table()
242 len = lens[work[sym]]; in zlib_inflate_table()
H A Dinflate.c487 state->lens[order[state->have++]] = (unsigned short)BITS(3); in zlib_inflate()
491 state->lens[order[state->have++]] = 0; in zlib_inflate()
495 ret = zlib_inflate_table(CODES, state->lens, 19, &(state->next), in zlib_inflate()
515 state->lens[state->have++] = this.val; in zlib_inflate()
526 len = state->lens[state->have - 1]; in zlib_inflate()
550 state->lens[state->have++] = (unsigned short)len; in zlib_inflate()
561 ret = zlib_inflate_table(LENS, state->lens, state->nlen, &(state->next), in zlib_inflate()
570 ret = zlib_inflate_table(DISTS, state->lens + state->nlen, state->ndist, in zlib_inflate()
/OK3568_Linux_fs/u-boot/lib/zlib/
H A Dinftrees.c32 int inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, in inflate_table() argument
106 count[lens[sym]]++; in inflate_table()
143 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
252 len = lens[work[sym]]; in inflate_table()
/OK3568_Linux_fs/kernel/drivers/net/ppp/
H A Dbsd_comp.c159 unsigned short *lens; /* array of lengths of codes */ member
340 vfree(db->lens); in bsd_free()
341 db->lens = NULL; in bsd_free()
421 db->lens = NULL; in bsd_alloc()
428 db->lens = vmalloc(array_size(sizeof(db->lens[0]), (maxmaxcode + 1))); in bsd_alloc()
429 if (!db->lens) in bsd_alloc()
472 || (decomp && db->lens == NULL)) in bsd_init()
482 db->lens[indx] = 1; in bsd_init()
524 #define lens_ptrx(p,idx) &(p->lens[idx])
729 if (db->lens) in bsd_compress()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Drv1106-evb-cam.dtsi82 rockchip,camera-module-lens-name = "30IRC-F16";
104 rockchip,camera-module-lens-name = "30IRC-F16";
126 rockchip,camera-module-lens-name = "40IRC_F16";
148 rockchip,camera-module-lens-name = "50IRC-F16";
170 rockchip,camera-module-lens-name = "22IRC-5M-F18";
H A Drv1106-evb-cvr-dual-cam.dtsi107 rockchip,camera-module-lens-name = "50IRC-F16";
129 rockchip,camera-module-lens-name = "40IRC_F16";
151 rockchip,camera-module-lens-name = "50IRC-F16";
172 rockchip,camera-module-lens-name = "tp2855";
H A Drv1106-evb-dual-cam.dtsi111 rockchip,camera-module-lens-name = "50IRC-F16";
133 rockchip,camera-module-lens-name = "28IRC-F20";
155 rockchip,camera-module-lens-name = "40IRC_F16";
177 rockchip,camera-module-lens-name = "28IRC-F20";
H A Drv1103-evb-cam.dtsi72 rockchip,camera-module-lens-name = "30IRC-F16";
94 rockchip,camera-module-lens-name = "40IRC_F16";
116 rockchip,camera-module-lens-name = "40IRC-F10";
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3399pro-evb-v14-linux.dts47 rockchip,camera-module-lens-name = "jaguar1";
86 rockchip,camera-module-lens-name = "Largan-50013A1";
87 lens-focus = <&vm149c>;
111 rockchip,camera-module-lens-name = "CHT842-MD";
217 rockchip,camera-module-lens-name = "usbacm_video_control";
H A Drk3588s-evb1-lp4x-v10-camera.dtsi107 rockchip,camera-module-lens-name = "NC";
131 rockchip,camera-module-lens-name = "ZE0082C1";
133 lens-focus = <&aw8601>;
180 rockchip,camera-module-lens-name = "ZE0082C1";
182 lens-focus = <&aw8601b>;
H A Drk3588-evb7-cam-8x.dtsi808 rockchip,camera-module-lens-name = "SHG102";
832 rockchip,camera-module-lens-name = "SHG102";
856 rockchip,camera-module-lens-name = "SHG102";
885 rockchip,camera-module-lens-name = "SHG102";
909 rockchip,camera-module-lens-name = "SHG102";
938 rockchip,camera-module-lens-name = "SHG102";
962 rockchip,camera-module-lens-name = "SHG102";
991 rockchip,camera-module-lens-name = "SHG102";
1015 rockchip,camera-module-lens-name = "SHG102";
1035 rockchip,camera-module-lens-name = "SHG102";
[all …]
H A Drk3562-evb2-cam.dtsi118 rockchip,camera-module-lens-name = "CK8401";
119 lens-focus = <&dw9714>;
156 rockchip,camera-module-lens-name = "CK8401";
157 lens-focus = <&dw9714_1>;
H A Drk3588-toybrick-imx258.dtsi70 rockchip,camera-module-lens-name = "LG500627G";
72 lens-focus = <&dw9714>;
214 rockchip,camera-module-lens-name = "LG500627G";
216 lens-focus = <&dw9714_1>;
H A Drk3399-tve1030g-avb.dts41 rockchip,camera-module-lens-name = "Largan-50013A1";
42 lens-focus = <&vm149c>;
68 rockchip,camera-module-lens-name = "M206A-201";
H A Drk3562-evb1-cam.dtsi84 rockchip,camera-module-lens-name = "CK8401";
85 lens-focus = <&dw9714>;
108 rockchip,camera-module-lens-name = "CHT842-MD";
H A Drk3588-evb1-cam-6x.dtsi213 rockchip,camera-module-lens-name = "SHG102";
234 rockchip,camera-module-lens-name = "SHG102";
263 rockchip,camera-module-lens-name = "SHG102";
284 rockchip,camera-module-lens-name = "SHG102";
312 rockchip,camera-module-lens-name = "SHG102";
335 rockchip,camera-module-lens-name = "SHG102";
H A Drk3399-evb-ind-lpddr4-android-avb.dts161 rockchip,camera-module-lens-name = "Largan";
186 rockchip,camera-module-lens-name = "Largan-50013A1";
187 lens-focus = <&vm149c>;
215 rockchip,camera-module-lens-name = "JSD3425-C1";
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/i2c/
H A Dak7375.txt1 Asahi Kasei Microdevices AK7375 voice coil lens driver
3 AK7375 is a camera voice coil lens.
/OK3568_Linux_fs/buildroot/package/exiv2/
H A DConfig.in36 bool "Nikon lens name database"
38 Integrate Nikon lens name database.

12345678910>>...12