Searched refs:retSize (Results 1 – 5 of 5) sorted by relevance
/external/OpenCL-CTS/test_conformance/buffers/ |
D | array_info.cpp | 33 size_t retSize; in test_array_info_size() local 40 err = clGetMemObjectInfo(memobj, CL_MEM_SIZE, sizeof( size_t ), (void *)&retSize, NULL); in test_array_info_size() 46 if ( (elementSize * w * h * d) != retSize ) { in test_array_info_size()
|
/external/python/cpython2/PC/ |
D | _winreg.c | 1411 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/python/cpython3/PC/ |
D | winreg.c | 1499 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/ |
D | imageHelpers.cpp | 4007 cl_ulong retSize = 0; in compute_mipmapped_image_size() local 4019 retSize += (cl_ulong)curr_width * curr_height * curr_depth in compute_mipmapped_image_size() 4023 retSize += (cl_ulong)curr_width * curr_height in compute_mipmapped_image_size() 4027 retSize += in compute_mipmapped_image_size() 4031 retSize += (cl_ulong)curr_width * curr_array_size in compute_mipmapped_image_size() 4035 retSize += (cl_ulong)curr_width * curr_height * curr_array_size in compute_mipmapped_image_size() 4053 return retSize; in compute_mipmapped_image_size()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | CStringChecker.cpp | 1721 SVal retSize = svalBuilder.evalBinOp( in evalStrcpyCommon() local 1723 StateZeroSize = StateZeroSize->BindExpr(CE, LCtx, retSize); in evalStrcpyCommon()
|