ret_buf           146 drivers/acpi/acpica/dbdisply.c 	struct acpi_buffer ret_buf;
ret_buf           167 drivers/acpi/acpica/dbdisply.c 	ret_buf.length = sizeof(buffer);
ret_buf           168 drivers/acpi/acpica/dbdisply.c 	ret_buf.pointer = buffer;
ret_buf           271 drivers/acpi/acpica/dbdisply.c 	status = acpi_get_name(node, ACPI_FULL_PATHNAME_NO_TRAILING, &ret_buf);
ret_buf           278 drivers/acpi/acpica/dbdisply.c 			       node, (char *)ret_buf.pointer);
ret_buf           310 drivers/acpi/acpica/dbdisply.c 					  &ret_buf);
ret_buf           316 drivers/acpi/acpica/dbdisply.c 					       (char *)ret_buf.pointer);
ret_buf           737 drivers/acpi/acpica/dbdisply.c 	struct acpi_buffer ret_buf;
ret_buf           740 drivers/acpi/acpica/dbdisply.c 	ret_buf.length = sizeof(buffer);
ret_buf           741 drivers/acpi/acpica/dbdisply.c 	ret_buf.pointer = buffer;
ret_buf           753 drivers/acpi/acpica/dbdisply.c 					       &ret_buf);
ret_buf           969 drivers/acpi/acpica/exdump.c 	struct acpi_buffer ret_buf;
ret_buf           972 drivers/acpi/acpica/exdump.c 	ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER;
ret_buf           978 drivers/acpi/acpica/exdump.c 						    &ret_buf, TRUE);
ret_buf           988 drivers/acpi/acpica/exdump.c 				       (char *)ret_buf.pointer);
ret_buf           989 drivers/acpi/acpica/exdump.c 			ACPI_FREE(ret_buf.pointer);
ret_buf           327 drivers/misc/ibmvmc.c 	struct ibmvmc_buffer *ret_buf = NULL;
ret_buf           339 drivers/misc/ibmvmc.c 			ret_buf = &buffer[i];
ret_buf           344 drivers/misc/ibmvmc.c 	return ret_buf;
ret_buf           360 drivers/misc/ibmvmc.c 	struct ibmvmc_buffer *ret_buf = NULL;
ret_buf           375 drivers/misc/ibmvmc.c 			ret_buf = &buffer[i];
ret_buf           380 drivers/misc/ibmvmc.c 	return ret_buf;
ret_buf          4422 drivers/net/ethernet/broadcom/bnx2.c bnx2_nvram_read(struct bnx2 *bp, u32 offset, u8 *ret_buf,
ret_buf          4465 drivers/net/ethernet/broadcom/bnx2.c 		memcpy(ret_buf, buf + (offset & 3), pre_len);
ret_buf          4468 drivers/net/ethernet/broadcom/bnx2.c 		ret_buf += pre_len;
ret_buf          4487 drivers/net/ethernet/broadcom/bnx2.c 		memcpy(ret_buf, buf, 4 - extra);
ret_buf          4498 drivers/net/ethernet/broadcom/bnx2.c 		rc = bnx2_nvram_read_dword(bp, offset32, ret_buf, cmd_flags);
ret_buf          4502 drivers/net/ethernet/broadcom/bnx2.c 		ret_buf += 4;
ret_buf          4506 drivers/net/ethernet/broadcom/bnx2.c 			rc = bnx2_nvram_read_dword(bp, offset32, ret_buf, 0);
ret_buf          4510 drivers/net/ethernet/broadcom/bnx2.c 			ret_buf += 4;
ret_buf          4520 drivers/net/ethernet/broadcom/bnx2.c 		memcpy(ret_buf, buf, 4 - extra);
ret_buf          1402 drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h int bnx2x_nvram_read(struct bnx2x *bp, u32 offset, u8 *ret_buf,
ret_buf          1399 drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c int bnx2x_nvram_read(struct bnx2x *bp, u32 offset, u8 *ret_buf,
ret_buf          1432 drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c 		memcpy(ret_buf, &val, 4);
ret_buf          1436 drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c 		ret_buf += sizeof(u32);
ret_buf          1444 drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c 		memcpy(ret_buf, &val, 4);
ret_buf          4555 drivers/net/ethernet/qlogic/qed/qed_debug.c 				      u32 nvram_size_bytes, u32 *ret_buf)
ret_buf          4580 drivers/net/ethernet/qlogic/qed/qed_debug.c 				       (u32 *)((u8 *)ret_buf + read_offset)))
ret_buf          3884 fs/cifs/cifssmb.c 		   void **ret_buf)
ret_buf          3894 fs/cifs/cifssmb.c 	*ret_buf = (void *)pSMB;
ret_buf            75 fs/cifs/misc.c 	struct cifs_ses *ret_buf;
ret_buf            77 fs/cifs/misc.c 	ret_buf = kzalloc(sizeof(struct cifs_ses), GFP_KERNEL);
ret_buf            78 fs/cifs/misc.c 	if (ret_buf) {
ret_buf            80 fs/cifs/misc.c 		ret_buf->status = CifsNew;
ret_buf            81 fs/cifs/misc.c 		++ret_buf->ses_count;
ret_buf            82 fs/cifs/misc.c 		INIT_LIST_HEAD(&ret_buf->smb_ses_list);
ret_buf            83 fs/cifs/misc.c 		INIT_LIST_HEAD(&ret_buf->tcon_list);
ret_buf            84 fs/cifs/misc.c 		mutex_init(&ret_buf->session_mutex);
ret_buf            85 fs/cifs/misc.c 		spin_lock_init(&ret_buf->iface_lock);
ret_buf            87 fs/cifs/misc.c 	return ret_buf;
ret_buf           113 fs/cifs/misc.c 	struct cifs_tcon *ret_buf;
ret_buf           115 fs/cifs/misc.c 	ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL);
ret_buf           116 fs/cifs/misc.c 	if (!ret_buf)
ret_buf           118 fs/cifs/misc.c 	ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL);
ret_buf           119 fs/cifs/misc.c 	if (!ret_buf->crfid.fid) {
ret_buf           120 fs/cifs/misc.c 		kfree(ret_buf);
ret_buf           125 fs/cifs/misc.c 	ret_buf->tidStatus = CifsNew;
ret_buf           126 fs/cifs/misc.c 	++ret_buf->tc_count;
ret_buf           127 fs/cifs/misc.c 	INIT_LIST_HEAD(&ret_buf->openFileList);
ret_buf           128 fs/cifs/misc.c 	INIT_LIST_HEAD(&ret_buf->tcon_list);
ret_buf           129 fs/cifs/misc.c 	spin_lock_init(&ret_buf->open_file_lock);
ret_buf           130 fs/cifs/misc.c 	mutex_init(&ret_buf->crfid.fid_mutex);
ret_buf           131 fs/cifs/misc.c 	spin_lock_init(&ret_buf->stat_lock);
ret_buf           132 fs/cifs/misc.c 	atomic_set(&ret_buf->num_local_opens, 0);
ret_buf           133 fs/cifs/misc.c 	atomic_set(&ret_buf->num_remote_opens, 0);
ret_buf           135 fs/cifs/misc.c 	return ret_buf;
ret_buf           158 fs/cifs/misc.c 	struct smb_hdr *ret_buf = NULL;
ret_buf           171 fs/cifs/misc.c 	ret_buf = mempool_alloc(cifs_req_poolp, GFP_NOFS);
ret_buf           175 fs/cifs/misc.c 	memset(ret_buf, 0, buf_size + 3);
ret_buf           181 fs/cifs/misc.c 	return ret_buf;
ret_buf           200 fs/cifs/misc.c 	struct smb_hdr *ret_buf = NULL;
ret_buf           206 fs/cifs/misc.c 	ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS);
ret_buf           214 fs/cifs/misc.c 	return ret_buf;