/Linux-v5.4/lib/ |
D | decompress_inflate.c | 41 unsigned char *out_buf, long out_len, in __gunzip() argument 51 out_buf = malloc(out_len); in __gunzip() 54 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ in __gunzip() 56 if (!out_buf) { in __gunzip() 121 strm->next_out = out_buf; in __gunzip() 146 if (flush && strm->next_out > out_buf) { in __gunzip() 147 long l = strm->next_out - out_buf; in __gunzip() 148 if (l != flush(out_buf, l)) { in __gunzip() 153 strm->next_out = out_buf; in __gunzip() 181 free(out_buf); in __gunzip() [all …]
|
D | decompress_unlzo.c | 108 u8 *in_buf, *in_buf_save, *out_buf; in unlzo() local 112 out_buf = output; in unlzo() 117 out_buf = malloc(LZO_BLOCK_SIZE); in unlzo() 118 if (!out_buf) { in unlzo() 233 memcpy(out_buf, in_buf, src_len); in unlzo() 236 out_buf, &tmp); in unlzo() 244 if (flush && flush(out_buf, dst_len) != dst_len) in unlzo() 247 out_buf += dst_len; in unlzo() 272 free(out_buf); in unlzo() 281 unsigned char *out_buf, long olen, in __decompress() argument [all …]
|
/Linux-v5.4/fs/squashfs/ |
D | zstd_wrapper.c | 71 ZSTD_outBuffer out_buf = { NULL, 0, 0 }; in zstd_uncompress() local 80 out_buf.size = PAGE_SIZE; in zstd_uncompress() 81 out_buf.dst = squashfs_first_page(output); in zstd_uncompress() 94 if (out_buf.pos == out_buf.size) { in zstd_uncompress() 95 out_buf.dst = squashfs_next_page(output); in zstd_uncompress() 96 if (out_buf.dst == NULL) { in zstd_uncompress() 103 out_buf.pos = 0; in zstd_uncompress() 104 out_buf.size = PAGE_SIZE; in zstd_uncompress() 107 total_out -= out_buf.pos; in zstd_uncompress() 108 zstd_err = ZSTD_decompressStream(stream, &out_buf, &in_buf); in zstd_uncompress() [all …]
|
/Linux-v5.4/fs/btrfs/ |
D | zstd.c | 52 ZSTD_outBuffer out_buf; member 419 workspace->out_buf.dst = kmap(out_page); in zstd_compress_pages() 420 workspace->out_buf.pos = 0; in zstd_compress_pages() 421 workspace->out_buf.size = min_t(size_t, max_out, PAGE_SIZE); in zstd_compress_pages() 426 ret2 = ZSTD_compressStream(stream, &workspace->out_buf, in zstd_compress_pages() 438 tot_out + workspace->out_buf.pos) { in zstd_compress_pages() 444 if (workspace->out_buf.pos >= max_out) { in zstd_compress_pages() 445 tot_out += workspace->out_buf.pos; in zstd_compress_pages() 451 if (workspace->out_buf.pos == workspace->out_buf.size) { in zstd_compress_pages() 466 workspace->out_buf.dst = kmap(out_page); in zstd_compress_pages() [all …]
|
/Linux-v5.4/fs/quota/ |
D | quota_tree.c | 96 goto out_buf; in get_free_dqblk() 104 goto out_buf; in get_free_dqblk() 109 out_buf: in get_free_dqblk() 146 goto out_buf; in remove_free_dqentry() 151 goto out_buf; in remove_free_dqentry() 156 goto out_buf; in remove_free_dqentry() 161 goto out_buf; in remove_free_dqentry() 173 out_buf: in remove_free_dqentry() 192 goto out_buf; in insert_free_dqentry() 196 goto out_buf; in insert_free_dqentry() [all …]
|
/Linux-v5.4/crypto/ |
D | rsa-pkcs1pad.c | 102 uint8_t *in_buf, *out_buf; member 180 u8 *out_buf; in pkcs1pad_encrypt_sign_complete() local 192 out_buf = kzalloc(ctx->key_size, GFP_KERNEL); in pkcs1pad_encrypt_sign_complete() 194 if (!out_buf) in pkcs1pad_encrypt_sign_complete() 198 out_buf + pad_len, len); in pkcs1pad_encrypt_sign_complete() 201 out_buf, ctx->key_size); in pkcs1pad_encrypt_sign_complete() 202 kzfree(out_buf); in pkcs1pad_encrypt_sign_complete() 283 u8 *out_buf; in pkcs1pad_decrypt_complete() local 293 out_buf = req_ctx->out_buf; in pkcs1pad_decrypt_complete() 295 if (out_buf[0] != 0x00) in pkcs1pad_decrypt_complete() [all …]
|
/Linux-v5.4/drivers/platform/chrome/ |
D | cros_ec_i2c.c | 57 u8 *out_buf = NULL; in cros_ec_pkt_xfer_i2c() local 80 out_buf = ec_dev->dout; in cros_ec_pkt_xfer_i2c() 82 i2c_msg[0].buf = (char *) out_buf; in cros_ec_pkt_xfer_i2c() 85 ec_request_i2c = (struct ec_host_request_i2c *) out_buf; in cros_ec_pkt_xfer_i2c() 186 u8 *out_buf = NULL; in cros_ec_cmd_xfer_i2c() local 212 out_buf = kzalloc(packet_len, GFP_KERNEL); in cros_ec_cmd_xfer_i2c() 213 if (!out_buf) in cros_ec_cmd_xfer_i2c() 216 i2c_msg[0].buf = (char *)out_buf; in cros_ec_cmd_xfer_i2c() 218 out_buf[0] = EC_CMD_VERSION0 + msg->version; in cros_ec_cmd_xfer_i2c() 219 out_buf[1] = msg->command; in cros_ec_cmd_xfer_i2c() [all …]
|
/Linux-v5.4/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-v5.4/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-v5.4/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-v5.4/arch/s390/kernel/ |
D | debug.c | 79 struct debug_view *view, char *out_buf); 84 struct debug_view *view, char *out_buf); 92 char *out_buf, const char *in_buf); 94 struct debug_view *view, char *out_buf, 97 int area, debug_entry_t *entry, char *out_buf); 100 char *out_buf, debug_sprintf_entry_t *curr_event); 1218 char *out_buf) in debug_prolog_pages_fn() argument 1220 return sprintf(out_buf, "%i\n", id->pages_per_area); in debug_prolog_pages_fn() 1267 char *out_buf) in debug_prolog_level_fn() argument 1272 rc = sprintf(out_buf, "-\n"); in debug_prolog_level_fn() [all …]
|
/Linux-v5.4/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-v5.4/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-v5.4/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-v5.4/arch/s390/include/asm/ |
D | debug.h | 58 char *out_buf); 61 struct debug_view *view, char *out_buf, 65 char *out_buf); 73 int area, debug_entry_t *entry, char *out_buf);
|
/Linux-v5.4/fs/xfs/scrub/ |
D | dir.c | 351 goto out_buf; in xchk_directory_data_bestfree() 362 goto out_buf; in xchk_directory_data_bestfree() 372 goto out_buf; in xchk_directory_data_bestfree() 378 goto out_buf; in xchk_directory_data_bestfree() 401 goto out_buf; in xchk_directory_data_bestfree() 411 goto out_buf; in xchk_directory_data_bestfree() 420 goto out_buf; in xchk_directory_data_bestfree() 426 goto out_buf; in xchk_directory_data_bestfree() 440 out_buf: in xchk_directory_data_bestfree()
|
/Linux-v5.4/include/uapi/linux/ |
D | ndctl.h | 33 __u8 out_buf[0]; member 51 __u8 out_buf[0]; member
|
/Linux-v5.4/drivers/gpu/drm/radeon/ |
D | radeon_i2c.c | 1054 u8 out_buf[2]; in radeon_i2c_get_byte() local 1061 .buf = out_buf, in radeon_i2c_get_byte() 1071 out_buf[0] = addr; in radeon_i2c_get_byte() 1072 out_buf[1] = 0; in radeon_i2c_get_byte() 1088 uint8_t out_buf[2]; in radeon_i2c_put_byte() local 1093 .buf = out_buf, in radeon_i2c_put_byte() 1096 out_buf[0] = addr; in radeon_i2c_put_byte() 1097 out_buf[1] = val; in radeon_i2c_put_byte()
|
/Linux-v5.4/arch/powerpc/platforms/pseries/ |
D | papr_scm.c | 182 *(uint64_t *)(hdr->out_buf + data_offset) = be64_to_cpu(data[0]); in papr_scm_meta_get() 185 *(uint32_t *)(hdr->out_buf + data_offset) = be32_to_cpu(data[0] & 0xffffffff); in papr_scm_meta_get() 189 *(uint16_t *)(hdr->out_buf + data_offset) = be16_to_cpu(data[0] & 0xffff); in papr_scm_meta_get() 193 *(uint8_t *)(hdr->out_buf + data_offset) = (data[0] & 0xff); in papr_scm_meta_get()
|
/Linux-v5.4/fs/cifs/ |
D | transport.c | 1244 struct smb_hdr *in_buf, struct smb_hdr *out_buf, in SendReceive() argument 1337 if (!midQ->resp_buf || !out_buf || in SendReceive() 1345 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); in SendReceive() 1360 struct smb_hdr *out_buf) in send_lock_cancel() argument 1375 return SendReceive(xid, ses, in_buf, out_buf, in send_lock_cancel() 1381 struct smb_hdr *in_buf, struct smb_hdr *out_buf, in SendReceiveBlockingLock() argument 1482 rc = send_lock_cancel(xid, tcon, in_buf, out_buf); in SendReceiveBlockingLock() 1514 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) { in SendReceiveBlockingLock() 1521 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); in SendReceiveBlockingLock()
|
/Linux-v5.4/drivers/hid/ |
D | hid-logitech-dj.c | 1250 u8 *out_buf; in logi_dj_ll_raw_request() local 1283 out_buf = kzalloc(DJREPORT_SHORT_LENGTH, GFP_ATOMIC); in logi_dj_ll_raw_request() 1284 if (!out_buf) in logi_dj_ll_raw_request() 1290 out_buf[0] = REPORT_ID_DJ_SHORT; in logi_dj_ll_raw_request() 1291 out_buf[1] = djdev->device_index; in logi_dj_ll_raw_request() 1292 memcpy(out_buf + 2, buf, count); in logi_dj_ll_raw_request() 1294 ret = hid_hw_raw_request(djrcv_dev->hidpp, out_buf[0], out_buf, in logi_dj_ll_raw_request() 1297 kfree(out_buf); in logi_dj_ll_raw_request()
|