refactor: correct variable namings

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-11-23 17:09:04 +00:00
committed by Compute-Runtime-Automation
parent 9e3a8bdf1b
commit 36194c4e7d
126 changed files with 872 additions and 894 deletions

View File

@@ -29,12 +29,12 @@ namespace NEO {
using ClDeviceInfoTable::Map;
template <cl_device_info Param>
template <cl_device_info param>
inline void ClDevice::getStr(const void *&src,
size_t &size,
size_t &retSize) {
src = Map<Param>::getValue(*this);
retSize = size = strlen(Map<Param>::getValue(*this)) + 1;
src = Map<param>::getValue(*this);
retSize = size = strlen(Map<param>::getValue(*this)) + 1;
}
template <>