/linux-5.19.10/lib/ |
D | decompress_inflate.c | 45 unsigned char *out_buf, long out_len, in __gunzip() argument 55 out_buf = malloc(out_len); in __gunzip() 58 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ 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() [all …]
|
D | decompress_unlzo.c | 107 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 …]
|
D | decompress_unzstd.c | 123 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-5.19.10/fs/squashfs/ |
D | zstd_wrapper.c | 70 zstd_out_buffer out_buf = { NULL, 0, 0 }; in zstd_uncompress() local 81 out_buf.size = PAGE_SIZE; in zstd_uncompress() 82 out_buf.dst = squashfs_first_page(output); in zstd_uncompress() 105 if (out_buf.pos == out_buf.size) { in zstd_uncompress() 106 out_buf.dst = squashfs_next_page(output); in zstd_uncompress() 107 if (out_buf.dst == NULL) { in zstd_uncompress() 114 out_buf.pos = 0; in zstd_uncompress() 115 out_buf.size = PAGE_SIZE; in zstd_uncompress() 118 total_out -= out_buf.pos; in zstd_uncompress() 119 zstd_err = zstd_decompress_stream(stream, &out_buf, &in_buf); in zstd_uncompress() [all …]
|
/linux-5.19.10/fs/btrfs/ |
D | zstd.c | 52 zstd_out_buffer out_buf; member 418 workspace->out_buf.dst = kmap(out_page); in zstd_compress_pages() 419 workspace->out_buf.pos = 0; in zstd_compress_pages() 420 workspace->out_buf.size = min_t(size_t, max_out, PAGE_SIZE); in zstd_compress_pages() 425 ret2 = zstd_compress_stream(stream, &workspace->out_buf, in zstd_compress_pages() 437 tot_out + workspace->out_buf.pos) { in zstd_compress_pages() 443 if (workspace->out_buf.pos >= max_out) { 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() 465 workspace->out_buf.dst = kmap(out_page); in zstd_compress_pages() [all …]
|
/linux-5.19.10/fs/quota/ |
D | quota_tree.c | 87 goto out_buf; in get_free_dqblk() 95 goto out_buf; in get_free_dqblk() 100 out_buf: in get_free_dqblk() 137 goto out_buf; in remove_free_dqentry() 142 goto out_buf; in remove_free_dqentry() 147 goto out_buf; in remove_free_dqentry() 152 goto out_buf; in remove_free_dqentry() 164 out_buf: in remove_free_dqentry() 183 goto out_buf; in insert_free_dqentry() 187 goto out_buf; in insert_free_dqentry() [all …]
|
/linux-5.19.10/crypto/ |
D | rsa-pkcs1pad.c | 103 uint8_t *in_buf, *out_buf; member 181 u8 *out_buf; in pkcs1pad_encrypt_sign_complete() local 193 out_buf = kzalloc(ctx->key_size, GFP_KERNEL); in pkcs1pad_encrypt_sign_complete() 195 if (!out_buf) in pkcs1pad_encrypt_sign_complete() 199 out_buf + pad_len, len); in pkcs1pad_encrypt_sign_complete() 202 out_buf, ctx->key_size); in pkcs1pad_encrypt_sign_complete() 203 kfree_sensitive(out_buf); in pkcs1pad_encrypt_sign_complete() 284 u8 *out_buf; in pkcs1pad_decrypt_complete() local 294 out_buf = req_ctx->out_buf; in pkcs1pad_decrypt_complete() 296 if (out_buf[0] != 0x00) in pkcs1pad_decrypt_complete() [all …]
|
/linux-5.19.10/drivers/platform/chrome/ |
D | cros_ec_i2c.c | 59 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() 93 ec_request_i2c = (struct ec_host_request_i2c *) out_buf; in cros_ec_pkt_xfer_i2c() 196 u8 *out_buf = NULL; in cros_ec_cmd_xfer_i2c() local 222 out_buf = kzalloc(packet_len, GFP_KERNEL); in cros_ec_cmd_xfer_i2c() 223 if (!out_buf) in cros_ec_cmd_xfer_i2c() 226 i2c_msg[0].buf = (char *)out_buf; in cros_ec_cmd_xfer_i2c() 228 out_buf[0] = EC_CMD_VERSION0 + msg->version; in cros_ec_cmd_xfer_i2c() 229 out_buf[1] = msg->command; in cros_ec_cmd_xfer_i2c() [all …]
|
/linux-5.19.10/drivers/w1/slaves/ |
D | w1_ds2423.c | 31 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-5.19.10/drivers/gpu/drm/i915/display/ |
D | dvo_sil164.c | 73 u8 out_buf[2]; in sil164_readb() local 81 .buf = out_buf, in sil164_readb() 91 out_buf[0] = addr; in sil164_readb() 92 out_buf[1] = 0; in sil164_readb() 110 u8 out_buf[2]; in sil164_writeb() local 115 .buf = out_buf, in sil164_writeb() 118 out_buf[0] = addr; in sil164_writeb() 119 out_buf[1] = ch; in sil164_writeb()
|
D | dvo_tfp410.c | 98 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()
|
D | dvo_ch7xxx.c | 140 u8 out_buf[2]; in ch7xxx_readb() local 148 .buf = out_buf, in ch7xxx_readb() 158 out_buf[0] = addr; in ch7xxx_readb() 159 out_buf[1] = 0; in ch7xxx_readb() 178 u8 out_buf[2]; in ch7xxx_writeb() local 183 .buf = out_buf, in ch7xxx_writeb() 186 out_buf[0] = addr; in ch7xxx_writeb() 187 out_buf[1] = ch; in ch7xxx_writeb()
|
D | dvo_ivch.c | 196 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()
|
D | dvo_ns2501.c | 397 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-5.19.10/fs/ubifs/ |
D | compress.c | 102 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-5.19.10/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_i2c.c | 288 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-5.19.10/drivers/net/ethernet/netronome/nfp/nfpcore/ |
D | nfp_nsp.c | 173 void *out_buf; member 462 if (arg->out_buf && arg->out_size && arg->out_size > arg->in_size) { in nfp_nsp_command_buf_def() 464 arg->out_buf, arg->out_size - arg->in_size); in nfp_nsp_command_buf_def() 482 if (arg->out_buf && arg->out_size) { in nfp_nsp_command_buf_def() 484 arg->out_buf, arg->out_size); in nfp_nsp_command_buf_def() 595 memcpy(arg->out_buf + off, chunks[i].chunk, len); in nfp_nsp_command_buf_dma_sg() 678 if (arg->out_buf && arg->out_size && arg->out_size > arg->in_size) in nfp_nsp_command_buf() 679 memset(arg->out_buf, 0, arg->out_size - arg->in_size); in nfp_nsp_command_buf() 833 .out_buf = buf, in nfp_nsp_read_eth_table() 862 .out_buf = buf, in nfp_nsp_read_identify() [all …]
|
/linux-5.19.10/arch/s390/kernel/ |
D | debug.c | 80 struct debug_view *view, char *out_buf); 85 struct debug_view *view, char *out_buf); 93 char *out_buf, const char *in_buf); 95 char *out_buf, debug_sprintf_entry_t *curr_event); 1307 char *out_buf) in debug_prolog_pages_fn() argument 1309 return sprintf(out_buf, "%i\n", id->pages_per_area); in debug_prolog_pages_fn() 1356 char *out_buf) in debug_prolog_level_fn() argument 1361 rc = sprintf(out_buf, "-\n"); in debug_prolog_level_fn() 1363 rc = sprintf(out_buf, "%i\n", id->level); in debug_prolog_level_fn() 1480 char *out_buf, const char *in_buf) in debug_hex_ascii_format_fn() argument [all …]
|
/linux-5.19.10/drivers/gpu/drm/gma500/ |
D | psb_intel_modes.c | 18 u8 out_buf[] = { 0x0, 0x0 }; in psb_intel_ddc_probe() local 26 .buf = out_buf, in psb_intel_ddc_probe()
|
/linux-5.19.10/fs/xfs/scrub/ |
D | dir.c | 376 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-5.19.10/arch/s390/include/asm/ |
D | debug.h | 69 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-5.19.10/arch/powerpc/platforms/pseries/ |
D | papr_platform_attributes.c | 114 goto out_buf; in papr_get_attr() 125 goto out_buf; in papr_get_attr() 130 out_buf: in papr_get_attr()
|
/linux-5.19.10/drivers/gpu/drm/radeon/ |
D | radeon_i2c.c | 1046 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-5.19.10/include/uapi/linux/ |
D | ndctl.h | 33 __u8 out_buf[0]; member 51 __u8 out_buf[0]; member
|
/linux-5.19.10/drivers/hid/ |
D | hid-logitech-dj.c | 1350 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()
|