Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 25 of 66) sorted by relevance

123

/linux-6.3-rc2/fs/squashfs/
A Dzstd_wrapper.c70 zstd_out_buffer out_buf = { NULL, 0, 0 }; in zstd_uncompress() local
81 out_buf.size = PAGE_SIZE; in zstd_uncompress()
83 if (IS_ERR(out_buf.dst)) { in zstd_uncompress()
84 error = PTR_ERR(out_buf.dst); in zstd_uncompress()
109 if (out_buf.pos == out_buf.size) { in zstd_uncompress()
111 if (IS_ERR(out_buf.dst)) { in zstd_uncompress()
112 error = PTR_ERR(out_buf.dst); in zstd_uncompress()
114 } else if (out_buf.dst == NULL) { in zstd_uncompress()
121 out_buf.pos = 0; in zstd_uncompress()
122 out_buf.size = PAGE_SIZE; in zstd_uncompress()
[all …]
/linux-6.3-rc2/lib/
A Ddecompress_inflate.c45 unsigned char *out_buf, long out_len, in __gunzip() argument
55 out_buf = malloc(out_len); in __gunzip()
60 if (!out_buf) { in __gunzip()
130 strm->next_out = out_buf; in __gunzip()
159 if (flush && strm->next_out > out_buf) { in __gunzip()
160 long l = strm->next_out - out_buf; in __gunzip()
161 if (l != flush(out_buf, l)) { in __gunzip()
166 strm->next_out = out_buf; in __gunzip()
194 free(out_buf); in __gunzip()
203 unsigned char *out_buf, in gunzip() argument
[all …]
A Ddecompress_unlzo.c107 u8 *in_buf, *in_buf_save, *out_buf; in unlzo() local
111 out_buf = output; in unlzo()
116 out_buf = malloc(LZO_BLOCK_SIZE); in unlzo()
117 if (!out_buf) { in unlzo()
232 memcpy(out_buf, in_buf, src_len); in unlzo()
235 out_buf, &tmp); in unlzo()
243 if (flush && flush(out_buf, dst_len) != dst_len) in unlzo()
246 out_buf += dst_len; in unlzo()
271 free(out_buf); in unlzo()
280 unsigned char *out_buf, long olen, in __decompress() argument
[all …]
A Ddecompress_unzstd.c123 static int INIT decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, in decompress_single() argument
148 ret = zstd_decompress_dctx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single()
166 unsigned char *out_buf, long out_len, in __unzstd() argument
187 out_len = UINTPTR_MAX - (uintptr_t)out_buf; in __unzstd()
194 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd()
232 out_buf = out_allocated; in __unzstd()
236 out.dst = out_buf; in __unzstd()
334 unsigned char *out_buf, in unzstd() argument
338 return __unzstd(buf, len, fill, flush, out_buf, 0, pos, error); in unzstd()
344 unsigned char *out_buf, long out_len, in __decompress() argument
[all …]
/linux-6.3-rc2/fs/quota/
A Dquota_tree.c121 goto out_buf; in get_free_dqblk()
137 out_buf: in get_free_dqblk()
201 out_buf: in remove_free_dqentry()
235 out_buf: in insert_free_dqentry()
323 out_buf: in find_free_dqentry()
384 out_buf: in do_insert_tree()
507 out_buf: in free_dqentry()
560 out_buf: in remove_tree()
609 out_buf: in find_block_dqentry()
643 out_buf: in find_tree_dqentry()
[all …]
/linux-6.3-rc2/fs/btrfs/
A Dzstd.c52 zstd_out_buffer out_buf; member
419 workspace->out_buf.pos = 0; in zstd_compress_pages()
444 tot_out += workspace->out_buf.pos; in zstd_compress_pages()
450 if (workspace->out_buf.pos == workspace->out_buf.size) { in zstd_compress_pages()
464 workspace->out_buf.pos = 0; in zstd_compress_pages()
499 tot_out += workspace->out_buf.pos; in zstd_compress_pages()
521 workspace->out_buf.pos = 0; in zstd_compress_pages()
567 workspace->out_buf.pos = 0; in zstd_decompress_bio()
583 workspace->out_buf.pos = 0; in zstd_decompress_bio()
645 workspace->out_buf.pos = 0; in zstd_decompress()
[all …]
/linux-6.3-rc2/crypto/
A Drsa-pkcs1pad.c181 u8 *out_buf; in pkcs1pad_encrypt_sign_complete() local
195 if (!out_buf) in pkcs1pad_encrypt_sign_complete()
281 u8 *out_buf; in pkcs1pad_decrypt_complete() local
291 out_buf = req_ctx->out_buf; in pkcs1pad_decrypt_complete()
298 out_buf++; in pkcs1pad_decrypt_complete()
301 if (out_buf[0] != 0x02) in pkcs1pad_decrypt_complete()
352 if (!req_ctx->out_buf) in pkcs1pad_decrypt()
443 u8 *out_buf; in pkcs1pad_verify_complete() local
453 out_buf = req_ctx->out_buf; in pkcs1pad_verify_complete()
460 out_buf++; in pkcs1pad_verify_complete()
[all …]
/linux-6.3-rc2/drivers/platform/chrome/
A Dcros_ec_i2c.c59 u8 *out_buf = NULL; in cros_ec_pkt_xfer_i2c() local
88 out_buf = ec_dev->dout; in cros_ec_pkt_xfer_i2c()
90 i2c_msg[0].buf = (char *) out_buf; in cros_ec_pkt_xfer_i2c()
196 u8 *out_buf = NULL; in cros_ec_cmd_xfer_i2c() local
223 if (!out_buf) in cros_ec_cmd_xfer_i2c()
229 out_buf[1] = msg->command; in cros_ec_cmd_xfer_i2c()
230 out_buf[2] = msg->outsize; in cros_ec_cmd_xfer_i2c()
233 sum = out_buf[0] + out_buf[1] + out_buf[2]; in cros_ec_cmd_xfer_i2c()
235 out_buf[3 + i] = msg->data[i]; in cros_ec_cmd_xfer_i2c()
236 sum += out_buf[3 + i]; in cros_ec_cmd_xfer_i2c()
[all …]
/linux-6.3-rc2/drivers/w1/slaves/
A Dw1_ds2423.c31 struct device_attribute *attr, char *out_buf) in w1_slave_show() argument
65 c -= snprintf(out_buf + PAGE_SIZE - c, in w1_slave_show()
74 c -= snprintf(out_buf + PAGE_SIZE - c, in w1_slave_show()
97 c -= snprintf(out_buf + PAGE_SIZE - c, in w1_slave_show()
100 c -= snprintf(out_buf + PAGE_SIZE - c, in w1_slave_show()
106 c -= snprintf(out_buf + PAGE_SIZE - c, c, "Connection error"); in w1_slave_show()
/linux-6.3-rc2/drivers/gpu/drm/i915/display/
A Ddvo_sil164.c77 u8 out_buf[2]; in sil164_readb() local
85 .buf = out_buf, in sil164_readb()
95 out_buf[0] = addr; in sil164_readb()
96 out_buf[1] = 0; in sil164_readb()
114 u8 out_buf[2]; in sil164_writeb() local
119 .buf = out_buf, in sil164_writeb()
122 out_buf[0] = addr; in sil164_writeb()
123 out_buf[1] = ch; in sil164_writeb()
A Ddvo_tfp410.c98 u8 out_buf[2]; in tfp410_readb() local
106 .buf = out_buf, in tfp410_readb()
116 out_buf[0] = addr; in tfp410_readb()
117 out_buf[1] = 0; in tfp410_readb()
135 u8 out_buf[2]; in tfp410_writeb() local
140 .buf = out_buf, in tfp410_writeb()
143 out_buf[0] = addr; in tfp410_writeb()
144 out_buf[1] = ch; in tfp410_writeb()
A Ddvo_ch7xxx.c151 u8 out_buf[2]; in ch7xxx_readb() local
159 .buf = out_buf, in ch7xxx_readb()
169 out_buf[0] = addr; in ch7xxx_readb()
170 out_buf[1] = 0; in ch7xxx_readb()
189 u8 out_buf[2]; in ch7xxx_writeb() local
194 .buf = out_buf, in ch7xxx_writeb()
197 out_buf[0] = addr; in ch7xxx_writeb()
198 out_buf[1] = ch; in ch7xxx_writeb()
A Ddvo_ivch.c196 u8 out_buf[1]; in ivch_read() local
209 .buf = out_buf, in ivch_read()
219 out_buf[0] = addr; in ivch_read()
239 u8 out_buf[3]; in ivch_write() local
244 .buf = out_buf, in ivch_write()
247 out_buf[0] = addr; in ivch_write()
248 out_buf[1] = data & 0xff; in ivch_write()
249 out_buf[2] = data >> 8; in ivch_write()
A Ddvo_ns2501.c397 u8 out_buf[2]; in ns2501_readb() local
405 .buf = out_buf, in ns2501_readb()
415 out_buf[0] = addr; in ns2501_readb()
416 out_buf[1] = 0; in ns2501_readb()
442 u8 out_buf[2]; in ns2501_writeb() local
448 .buf = out_buf, in ns2501_writeb()
451 out_buf[0] = addr; in ns2501_writeb()
452 out_buf[1] = ch; in ns2501_writeb()
/linux-6.3-rc2/fs/ubifs/
A Dcompress.c102 int in_len, void *out_buf, int *out_len, int *compr_type) in ubifs_compress() argument
116 err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf, in ubifs_compress()
136 memcpy(out_buf, in_buf, in_len); in ubifs_compress()
154 int in_len, void *out_buf, int *out_len, int compr_type) in ubifs_decompress() argument
172 memcpy(out_buf, in_buf, in_len); in ubifs_decompress()
179 err = crypto_comp_decompress(compr->cc, in_buf, in_len, out_buf, in ubifs_decompress()
/linux-6.3-rc2/drivers/gpu/drm/amd/amdgpu/
A Damdgpu_i2c.c288 u8 out_buf[2]; in amdgpu_i2c_get_byte() local
295 .buf = out_buf, in amdgpu_i2c_get_byte()
305 out_buf[0] = addr; in amdgpu_i2c_get_byte()
306 out_buf[1] = 0; in amdgpu_i2c_get_byte()
322 uint8_t out_buf[2]; in amdgpu_i2c_put_byte() local
327 .buf = out_buf, in amdgpu_i2c_put_byte()
330 out_buf[0] = addr; in amdgpu_i2c_put_byte()
331 out_buf[1] = val; in amdgpu_i2c_put_byte()
/linux-6.3-rc2/drivers/net/ethernet/netronome/nfp/nfpcore/
A Dnfp_nsp.c174 void *out_buf; member
483 if (arg->out_buf && arg->out_size) { in nfp_nsp_command_buf_def()
485 arg->out_buf, arg->out_size); in nfp_nsp_command_buf_def()
596 memcpy(arg->out_buf + off, chunks[i].chunk, len); in nfp_nsp_command_buf_dma_sg()
834 .out_buf = buf, in nfp_nsp_read_eth_table()
863 .out_buf = buf, in nfp_nsp_read_identify()
878 .out_buf = buf, in nfp_nsp_read_sensors()
913 .out_buf = buf, in __nfp_nsp_hwinfo_lookup()
1005 .out_buf = buf, in nfp_nsp_versions()
1057 .out_buf = buf, in __nfp_nsp_module_eeprom()
[all …]
/linux-6.3-rc2/arch/s390/kernel/
A Ddebug.c93 char *out_buf, const char *in_buf);
95 char *out_buf, const char *inbuf);
1307 char *out_buf) in debug_prolog_pages_fn() argument
1356 char *out_buf) in debug_prolog_level_fn() argument
1361 rc = sprintf(out_buf, "-\n"); in debug_prolog_level_fn()
1486 rc += sprintf(out_buf + rc, "| "); in debug_hex_ascii_format_fn()
1491 rc += sprintf(out_buf + rc, "%c", c); in debug_hex_ascii_format_fn()
1493 rc += sprintf(out_buf + rc, "."); in debug_hex_ascii_format_fn()
1495 rc += sprintf(out_buf + rc, "\n"); in debug_hex_ascii_format_fn()
1535 char *out_buf, const char *inbuf) in debug_sprintf_format_fn() argument
[all …]
/linux-6.3-rc2/drivers/gpu/drm/gma500/
A Dpsb_intel_modes.c20 u8 out_buf[] = { 0x0, 0x0 }; in psb_intel_ddc_probe() local
28 .buf = out_buf, in psb_intel_ddc_probe()
/linux-6.3-rc2/fs/xfs/scrub/
A Ddir.c376 goto out_buf; in xchk_directory_data_bestfree()
387 goto out_buf; in xchk_directory_data_bestfree()
397 goto out_buf; in xchk_directory_data_bestfree()
403 goto out_buf; in xchk_directory_data_bestfree()
426 goto out_buf; in xchk_directory_data_bestfree()
436 goto out_buf; in xchk_directory_data_bestfree()
445 goto out_buf; in xchk_directory_data_bestfree()
451 goto out_buf; in xchk_directory_data_bestfree()
465 out_buf: in xchk_directory_data_bestfree()
/linux-6.3-rc2/arch/s390/include/asm/
A Ddebug.h69 char *out_buf);
72 struct debug_view *view, char *out_buf,
76 char *out_buf);
84 int area, debug_entry_t *entry, char *out_buf);
/linux-6.3-rc2/arch/powerpc/platforms/pseries/
A Dpapr_platform_attributes.c115 goto out_buf; in papr_get_attr()
126 goto out_buf; in papr_get_attr()
131 out_buf: in papr_get_attr()
/linux-6.3-rc2/drivers/gpu/drm/radeon/
A Dradeon_i2c.c1046 u8 out_buf[2]; in radeon_i2c_get_byte() local
1053 .buf = out_buf, in radeon_i2c_get_byte()
1063 out_buf[0] = addr; in radeon_i2c_get_byte()
1064 out_buf[1] = 0; in radeon_i2c_get_byte()
1080 uint8_t out_buf[2]; in radeon_i2c_put_byte() local
1085 .buf = out_buf, in radeon_i2c_put_byte()
1088 out_buf[0] = addr; in radeon_i2c_put_byte()
1089 out_buf[1] = val; in radeon_i2c_put_byte()
/linux-6.3-rc2/include/uapi/linux/
A Dndctl.h33 __u8 out_buf[]; member
51 __u8 out_buf[]; member
/linux-6.3-rc2/drivers/hid/
A Dhid-logitech-dj.c1350 u8 *out_buf; in logi_dj_ll_raw_request() local
1383 out_buf = kzalloc(DJREPORT_SHORT_LENGTH, GFP_ATOMIC); in logi_dj_ll_raw_request()
1384 if (!out_buf) in logi_dj_ll_raw_request()
1390 out_buf[0] = REPORT_ID_DJ_SHORT; in logi_dj_ll_raw_request()
1391 out_buf[1] = djdev->device_index; in logi_dj_ll_raw_request()
1392 memcpy(out_buf + 2, buf, count); in logi_dj_ll_raw_request()
1394 ret = hid_hw_raw_request(djrcv_dev->hidpp, out_buf[0], out_buf, in logi_dj_ll_raw_request()
1397 kfree(out_buf); in logi_dj_ll_raw_request()

Completed in 47 milliseconds

123