/external/valgrind/none/tests/ |
D | pth_once.c | 42 int rtn; in identify_yourself() local 44 if ((rtn = pthread_once(&welcome_once_block, in identify_yourself() 46 fprintf(stderr, "pthread_once failed with %d",rtn); in identify_yourself() 56 int *id_arg, thread_num, rtn; in main() local 65 if (( rtn = pthread_create(&threads[thread_num], in main() 70 fprintf(stderr, "pthread_create failed with %d",rtn); in main()
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 373 int rtn, x, y, use_xy = FALSE; in PyCursesWindow_AddCh() local 412 rtn = mvwaddch(self->win,y,x, ch | attr); in PyCursesWindow_AddCh() 414 rtn = waddch(self->win, ch | attr); in PyCursesWindow_AddCh() 416 return PyCursesCheckERR(rtn, "addch"); in PyCursesWindow_AddCh() 422 int rtn; in PyCursesWindow_AddStr() local 461 rtn = mvwaddstr(self->win,y,x,str); in PyCursesWindow_AddStr() 463 rtn = waddstr(self->win,str); in PyCursesWindow_AddStr() 466 return PyCursesCheckERR(rtn, "addstr"); in PyCursesWindow_AddStr() 472 int rtn, x, y, n; in PyCursesWindow_AddNStr() local 510 rtn = mvwaddnstr(self->win,y,x,str,n); in PyCursesWindow_AddNStr() [all …]
|
D | _curses_panel.c | 269 int rtn; in PyCursesPanel_replace_panel() local 286 rtn = replace_panel(self->pan, temp->win); in PyCursesPanel_replace_panel() 287 if (rtn == ERR) { in PyCursesPanel_replace_panel()
|
D | puremodule.c | 601 char* rtn; in pure_purify_describe() local 606 rtn = purify_describe((char*)addrrep); in pure_purify_describe() 607 return Py_BuildValue("l", (long)rtn); in pure_purify_describe()
|
/external/python/cpython2/Include/ |
D | pymactoolbox.h | 89 #define PyMac_INIT_TOOLBOX_OBJECT_NEW(object, rtn) { \ argument 90 extern PyObject *(*PyMacGluePtr_##rtn)(object); \ 91 PyMacGluePtr_##rtn = _##rtn; \ 93 #define PyMac_INIT_TOOLBOX_OBJECT_CONVERT(object, rtn) { \ argument 94 extern int (*PyMacGluePtr_##rtn)(PyObject *, object *); \ 95 PyMacGluePtr_##rtn = _##rtn; \ 102 #define PyMac_INIT_TOOLBOX_OBJECT_NEW(object, rtn) argument 103 #define PyMac_INIT_TOOLBOX_OBJECT_CONVERT(object, rtn) argument
|
/external/ipsec-tools/src/racoon/ |
D | security.c | 217 int rtn = 1; in within_range() local 233 rtn = avc_context_to_sid(sl, &slsid); in within_range() 234 if (rtn != 0) { in within_range() 240 rtn = avc_context_to_sid(range, &rangesid); in within_range() 241 if (rtn != 0) { in within_range() 254 rtn = avc_has_perm(slsid, rangesid, tclass, av, NULL, &avd); in within_range() 255 if (rtn != 0) { in within_range()
|
D | isakmp_xauth.c | 801 int rtn = -1; local 1007 rtn = 0; 1027 return rtn; 1035 int rtn = -1; local 1148 rtn = 0; 1180 return rtn;
|
/external/javassist/src/main/javassist/scopedpool/ |
D | SoftValueHashMap.java | 204 Object rtn = hash.put(key, SoftValueRef.create(key, value, queue)); in put() local 205 if (rtn != null) in put() 206 rtn = ((SoftReference)rtn).get(); in put() 207 return rtn; in put()
|
/external/python/cpython2/Objects/ |
D | rangeobject.c | 136 PyObject *rtn; in range_repr() local 139 rtn = PyString_FromFormat("xrange(%ld)", in range_repr() 143 rtn = PyString_FromFormat("xrange(%ld, %ld)", in range_repr() 148 rtn = PyString_FromFormat("xrange(%ld, %ld, %ld)", in range_repr() 152 return rtn; in range_repr()
|
/external/dhcpcd-6.8.2/ |
D | ipv4.c | 577 struct rt *rtp, *rtn; in add_router_host_route() local 589 TAILQ_FOREACH(rtn, rt, next) { in add_router_host_route() 590 if (rtn == rtp) in add_router_host_route() 593 if (rtn->dest.s_addr == rtp->gate.s_addr) in add_router_host_route() 597 cp2 = (const char *)&rtn->dest.s_addr; in add_router_host_route() 598 cp3 = (const char *)&rtn->net.s_addr; in add_router_host_route() 599 cplim = cp3 + sizeof(rtn->net.s_addr); in add_router_host_route() 607 if (rtn != rtp) in add_router_host_route() 631 rtn = malloc(sizeof(*rtn)); in add_router_host_route() 632 if (rtn == NULL) { in add_router_host_route() [all …]
|
/external/vulkan-validation-layers/layers/ |
D | vk_layer_logging.h | 277 VkResult rtn = VK_SUCCESS; in layer_enable_tmp_callbacks() local 279 rtn = layer_create_msg_callback(debug_data, false, &infos[i], NULL, &callbacks[i]); in layer_enable_tmp_callbacks() 280 if (rtn != VK_SUCCESS) { in layer_enable_tmp_callbacks() 284 return rtn; in layer_enable_tmp_callbacks() 287 return rtn; in layer_enable_tmp_callbacks()
|
/external/vulkan-validation-layers/loader/ |
D | debug_report.c | 255 VkResult rtn = VK_SUCCESS; local 257 rtn = util_CreateDebugReportCallback(inst, &infos[i], pAllocator, 259 if (rtn != VK_SUCCESS) { 263 return rtn; 266 return rtn;
|
/external/python/cpython2/Mac/Modules/ah/ |
D | _AHmodule.c | 11 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/help/ |
D | _Helpmodule.c | 10 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFile.java | 503 String[] rtn = null; in getInterfaces() 505 rtn = new String[0]; in getInterfaces() 512 rtn = list; in getInterfaces() 515 cachedInterfaces = rtn; in getInterfaces() 516 return rtn; in getInterfaces()
|
/external/python/cpython2/Mac/Modules/fm/ |
D | _Fmmodule.c | 13 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/scrap/ |
D | _Scrapmodule.c | 12 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/folder/ |
D | _Foldermodule.c | 11 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/curl/lib/vtls/ |
D | darwinssl.c | 130 OSStatus rtn = noErr; in SocketRead() local 145 rtn = errSSLClosedGraceful; in SocketRead() 151 rtn = errSSLClosedGraceful; in SocketRead() 154 rtn = errSSLClosedAbort; in SocketRead() 157 rtn = errSSLWouldBlock; in SocketRead() 161 rtn = ioErr; in SocketRead() 179 return rtn; in SocketRead()
|
/external/python/cpython2/Mac/Modules/evt/ |
D | _Evtmodule.c | 12 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/launch/ |
D | _Launchmodule.c | 11 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/qdoffs/ |
D | _Qdoffsmodule.c | 13 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/osa/ |
D | _OSAmodule.c | 11 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Mac/Modules/cm/ |
D | _Cmmodule.c | 11 #define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\ argument
|
/external/python/cpython2/Lib/test/ |
D | test_dict.py | 190 rtn = chr(self.i) 192 return rtn
|