Home
last modified time | relevance | path

Searched refs:localtype (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/wasm/
Dwasm-interpreter.h46 #define DECLARE_FIELD(field, localtype, ctype) ctype field; argument
53 #define DECLARE_CONSTRUCTOR(field, localtype, ctype) \ argument
54 explicit WasmVal(ctype v) : type(localtype) { val.field = v; }
69 #define DECLARE_CAST(field, localtype, ctype) \ argument
76 CHECK_EQ(localtype, type); \
/external/python/cpython2/Modules/
Dthreadmodule.c494 static PyTypeObject localtype = { variable
556 if (Py_TYPE(self) != &localtype) in local_getattro()
581 assert(PyObject_TypeCheck(obj, &localtype)); in _localdummy_destroyed()
910 if (PyType_Ready(&localtype) < 0) in initthread()
928 Py_INCREF(&localtype); in initthread()
929 if (PyModule_AddObject(m, "_local", (PyObject *)&localtype) < 0) in initthread()
/external/python/cpython3/Modules/
D_threadmodule.c872 static PyTypeObject localtype = { variable
934 if (Py_TYPE(self) != &localtype) in local_getattro()
959 assert(PyObject_TypeCheck(obj, &localtype)); in _localdummy_destroyed()
1363 if (PyType_Ready(&localtype) < 0) in PyInit__thread()
1399 Py_INCREF(&localtype); in PyInit__thread()
1400 if (PyModule_AddObject(m, "_local", (PyObject *)&localtype) < 0) in PyInit__thread()
/external/libmtp/src/
Dlibmtp.c4008 uint16_t localtype = map_ptp_type_to_libmtp_type(params->deviceinfo.ImageFormats[i]); in LIBMTP_Get_Supported_Filetypes() local
4009 if (localtype != LIBMTP_FILETYPE_UNKNOWN) { in LIBMTP_Get_Supported_Filetypes()
4010 localtypes[localtypelen] = localtype; in LIBMTP_Get_Supported_Filetypes()