Home
last modified time | relevance | path

Searched refs:retSize (Results 1 – 5 of 5) sorted by relevance

/external/OpenCL-CTS/test_conformance/buffers/
Darray_info.cpp33 size_t retSize; in test_array_info_size() local
39 err = clGetMemObjectInfo(memobj, CL_MEM_SIZE, sizeof( size_t ), (void *)&retSize, NULL); in test_array_info_size()
45 if ( (elementSize * w * h * d) != retSize ) { in test_array_info_size()
/external/python/cpython2/PC/
D_winreg.c1411 DWORD retSize = 0; in PyQueryValue() local
1420 rc = RegQueryValue(hKey, subKey, NULL, &retSize); in PyQueryValue()
1422 retSize = 256; in PyQueryValue()
1427 bufSize = retSize; in PyQueryValue()
1433 retSize = bufSize; in PyQueryValue()
1434 rc = RegQueryValue(hKey, subKey, retBuf, &retSize); in PyQueryValue()
1453 if (retBuf[retSize-1] == '\x00') in PyQueryValue()
1454 retSize--; in PyQueryValue()
1455 retStr = PyString_FromStringAndSize(retBuf, retSize); in PyQueryValue()
1472 DWORD bufSize = 0, retSize; in PyQueryValueEx() local
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
DPVRShellOS.cpp109 DWORD retSize; in OsInit() local
116 retSize = GetModuleFileName(NULL, exeNameTCHAR, DIR_BUFFER_LEN); in OsInit()
118 if (DIR_BUFFER_LEN > (int)retSize) in OsInit()
121 retSize = (DWORD)_tcslen(exeNameTCHAR); in OsInit()
124 for (DWORD i = 0; i <= retSize; i++) in OsInit()
/external/python/cpython3/PC/
Dwinreg.c1499 DWORD retSize = 0; in winreg_QueryValue_impl() local
1506 rc = RegQueryValueW(key, sub_key, NULL, &retSize); in winreg_QueryValue_impl()
1508 retSize = 256; in winreg_QueryValue_impl()
1513 bufSize = retSize; in winreg_QueryValue_impl()
1519 retSize = bufSize; in winreg_QueryValue_impl()
1520 rc = RegQueryValueW(key, sub_key, retBuf, &retSize); in winreg_QueryValue_impl()
1568 DWORD bufSize = 0, retSize; in winreg_QueryValueEx_impl() local
1588 retSize = bufSize; in winreg_QueryValueEx_impl()
1590 (BYTE *)retBuf, &retSize); in winreg_QueryValueEx_impl()
/external/OpenCL-CTS/test_common/harness/
DimageHelpers.cpp3859 cl_ulong retSize = 0; in compute_mipmapped_image_size() local
3871 retSize += (cl_ulong)curr_width * curr_height * curr_depth * get_pixel_size(imageInfo.format); in compute_mipmapped_image_size()
3874 retSize += (cl_ulong)curr_width * curr_height * get_pixel_size(imageInfo.format); in compute_mipmapped_image_size()
3877 retSize += (cl_ulong)curr_width * get_pixel_size(imageInfo.format); in compute_mipmapped_image_size()
3880 retSize += (cl_ulong)curr_width * curr_array_size * get_pixel_size(imageInfo.format); in compute_mipmapped_image_size()
3883retSize += (cl_ulong)curr_width * curr_height * curr_array_size * get_pixel_size(imageInfo.format); in compute_mipmapped_image_size()
3900 return retSize; in compute_mipmapped_image_size()