Searched refs:ctypes (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/toolchain/build/toolchain/ |
H A D | get_concurrent_links.py | 21 import ctypes namespace 23 class MEMORYSTATUSEX(ctypes.Structure): 25 ("dwLength", ctypes.c_ulong), 26 ("dwMemoryLoad", ctypes.c_ulong), 27 ("ullTotalPhys", ctypes.c_ulonglong), 28 ("ullAvailPhys", ctypes.c_ulonglong), 29 ("ullTotalPageFile", ctypes.c_ulonglong), 30 ("ullAvailPageFile", ctypes.c_ulonglong), 31 ("ullTotalVirtual", ctypes.c_ulonglong), 32 ("ullAvailVirtual", ctypes [all...] |
/arkcompiler/ets_runtime/tools/ap_file_viewer/server/ |
H A D | apdump_server.py | 18 import ctypes namespace 54 ctypes.CDLL(dep_path) 66 load_lib = ctypes.CDLL(str(load_lib_path)) 73 load_lib = ctypes.CDLL(str(load_lib_path)) 85 ConvertApToJson.argtypes = [ctypes.c_char_p, ctypes.c_size_t] 86 ConvertApToJson.restype = ctypes.c_size_t 88 GetConvertResult.argtypes = [ctypes.c_char_p, ctypes.c_size_t] 89 GetConvertResult.restype = ctypes [all...] |
/arkcompiler/ets_frontend/ets2panda/ir/ets/ |
H A D | etsTuple.cpp | 115 auto ctypes = typeList; in CalculateLUBForTuple() local 118 ctypes.push_back(spreadType); in CalculateLUBForTuple() 120 return checker->CreateETSUnionType(std::move(ctypes)); in CalculateLUBForTuple()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSAnalyzer.cpp | 961 const auto &ctypes = type->AsETSUnionType()->ConstituentTypes(); in UnwrapPromiseType() local 962 auto it = std::find_if(ctypes.begin(), ctypes.end(), [promiseType](checker::Type *t) { in UnwrapPromiseType() 965 if (it == ctypes.end()) { in UnwrapPromiseType() 968 ArenaVector<Type *> newCTypes(ctypes); in UnwrapPromiseType() 970 size_t index = it - ctypes.begin(); in UnwrapPromiseType() 971 newCTypes[index] = UnwrapPromiseType(ctypes[index]); in UnwrapPromiseType() 973 it = std::find_if(it, ctypes.end(), [promiseType](checker::Type *t) { in UnwrapPromiseType() 976 } while (it != ctypes.end()); in UnwrapPromiseType()
|
Completed in 7 milliseconds