Home
last modified time | relevance | path

Searched refs:oldtype (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/test/msan/
Dpthread_setcancelstate.cc9 int oldtype; in main() local
14 res = pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); in main()
16 __msan_check_mem_is_initialized(&oldtype, sizeof(oldtype)); in main()
/external/tensorflow/tensorflow/python/platform/
Dbase.i186 %define _COPY_TYPEMAPS(oldtype, newtype)
187 typedef oldtype newtype;
188 %apply oldtype * OUTPUT { newtype * OUTPUT };
189 %apply oldtype & OUTPUT { newtype & OUTPUT };
190 %apply oldtype * INPUT { newtype * INPUT };
191 %apply oldtype & INPUT { newtype & INPUT };
192 %apply oldtype * INOUT { newtype * INOUT };
193 %apply oldtype & INOUT { newtype & INOUT };
194 %apply std::vector<oldtype> * OUTPUT { std::vector<newtype> * OUTPUT };
/external/python/cpython3/Python/
Derrors.c32 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local
43 oldtype = tstate->curexc_type; in PyErr_Restore()
51 Py_XDECREF(oldtype); in PyErr_Restore()
373 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_SetExcInfo() local
376 oldtype = tstate->exc_info->exc_type; in PyErr_SetExcInfo()
384 Py_XDECREF(oldtype); in PyErr_SetExcInfo()
/external/python/cpython2/Python/
Derrors.c28 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local
39 oldtype = tstate->curexc_type; in PyErr_Restore()
47 Py_XDECREF(oldtype); in PyErr_Restore()
/external/icu/icu4c/source/tools/tzcode/
Dtz2icu.cpp1274 ZoneType oldtype = types[i->type]; in optimizeTypeList() local
1275 SimplifiedZoneType newtype(oldtype); in optimizeTypeList()
1322 ZoneType oldtype = types[i->type]; in optimizeTypeList() local
1323 SimplifiedZoneType newtype(oldtype); in optimizeTypeList()
/external/selinux/libsepol/src/
Dexpand.c1713 uint32_t oldtype = 0; in expand_terule_helper() local
1747 oldtype = avdatump->data; in expand_terule_helper()
1749 oldtype = avdatump->data; in expand_terule_helper()
1751 oldtype = avdatump->data; in expand_terule_helper()
1754 if (oldtype == remapped_data) { in expand_terule_helper()
1767 p->p_type_val_to_name[oldtype - 1]); in expand_terule_helper()
1775 p->p_type_val_to_name[oldtype - 1], in expand_terule_helper()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc5530 INTERCEPTOR(int, pthread_setcanceltype, int type, int *oldtype) {
5532 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcanceltype, type, oldtype);
5533 int res = REAL(pthread_setcanceltype)(type, oldtype);
5535 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldtype, sizeof(*oldtype));