Searched refs:oldtype (Results 1 – 10 of 10) sorted by relevance
/external/syslinux/memdisk/ |
D | e820func.c | 57 uint32_t oldtype; in insertrange() local 67 oldtype = -2U; in insertrange() 69 oldtype = ranges[i].type; in insertrange() 79 oldtype = ranges[i].type; in insertrange() 85 insertrange_at(i, last + 1, oldtype); in insertrange() 90 oldtype = ranges[0].type; in insertrange() 92 if (ranges[i].type == oldtype) { in insertrange() 95 oldtype = ranges[i].type; in insertrange()
|
/external/valgrind/none/tests/ |
D | pth_cancel2.c | 28 int oldtype; \ 29 pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); \ 32 pthread_setcanceltype(oldtype,NULL); \ 39 int oldtype; \ 40 pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); \ 43 pthread_setcanceltype(oldtype,NULL); \
|
/external/tensorflow/tensorflow/python/platform/ |
D | base.i | 186 %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/compiler-rt/test/msan/ |
D | pthread_setcancelstate.cc | 9 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/syslinux/com32/lib/syslinux/ |
D | zonelist.c | 83 enum syslinux_memmap_types oldtype; in syslinux_add_memmap() local 96 oldtype = SMT_END; /* Impossible value */ in syslinux_add_memmap() 98 oldtype = mp->type; in syslinux_add_memmap() 103 if (type != oldtype) { in syslinux_add_memmap() 117 if (type != oldtype) { in syslinux_add_memmap() 119 oldtype = mp->type; in syslinux_add_memmap() 126 oldtype = mp->type; in syslinux_add_memmap() 132 if (oldtype != type) { in syslinux_add_memmap() 139 range->type = oldtype; in syslinux_add_memmap()
|
/external/python/cpython3/Python/ |
D | errors.c | 31 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local 42 oldtype = tstate->curexc_type; in PyErr_Restore() 50 Py_XDECREF(oldtype); in PyErr_Restore() 361 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_SetExcInfo() local 364 oldtype = tstate->exc_type; in PyErr_SetExcInfo() 372 Py_XDECREF(oldtype); in PyErr_SetExcInfo()
|
/external/python/cpython2/Python/ |
D | errors.c | 28 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/ |
D | tz2icu.cpp | 1274 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/ |
D | expand.c | 1707 uint32_t oldtype = 0; in expand_terule_helper() local 1741 oldtype = avdatump->data; in expand_terule_helper() 1743 oldtype = avdatump->data; in expand_terule_helper() 1745 oldtype = avdatump->data; in expand_terule_helper() 1748 if (oldtype == remapped_data) { in expand_terule_helper() 1761 p->p_type_val_to_name[oldtype - 1]); in expand_terule_helper() 1769 p->p_type_val_to_name[oldtype - 1], in expand_terule_helper()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 5530 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));
|