/third_party/python/Objects/ |
H A D | abstract.c | 2584 int retval; in object_isinstance() local 2586 retval = PyObject_TypeCheck(inst, (PyTypeObject *)cls); in object_isinstance() 2587 if (retval == 0) { in object_isinstance() 2588 retval = _PyObject_LookupAttr(inst, &_Py_ID(__class__), &icls); in object_isinstance() 2591 retval = PyType_IsSubtype( in object_isinstance() 2596 retval = 0; in object_isinstance() 2606 retval = _PyObject_LookupAttr(inst, &_Py_ID(__class__), &icls); in object_isinstance() 2608 retval = abstract_issubclass(icls, cls); in object_isinstance() 2613 return retval; in object_isinstance()
|
/third_party/python/Python/ |
H A D | ceval.c | 1516 if (trace_function_exit(tstate, frame, retval)) { \ 1517 Py_DECREF(retval); \ 1604 trace_function_exit(PyThreadState *tstate, _PyInterpreterFrame *frame, PyObject *retval) in trace_function_exit() argument 1608 tstate, frame, PyTrace_RETURN, retval)) { in trace_function_exit() 1614 tstate, frame, PyTrace_RETURN, retval)) { in trace_function_exit() 2431 PyObject *retval = POP(); local 2442 _PyFrame_StackPush(frame, retval); 2450 return retval; 2589 PyObject *retval; local 2591 gen_status = PyIter_Send(receiver, v, &retval); 2646 PyObject *retval = POP(); global() local 5163 int retval = PyObject_IsInstance(inst, cls); global() local 6439 PyObject *retval = _PyEval_EvalFrame(tstate, frame, 0); global() local [all...] |
/foundation/communication/dsoftbus/core/transmission/ipc/standard/src/ |
H A D | trans_client_proxy_standard.cpp | 24 #define WRITE_PARCEL_WITH_RET(parcel, type, data, retval) \ 28 return (retval); \
|
/foundation/communication/wifi/wifi/base/cRPC/src/ |
H A D | server.c | 227 int retval = epoll_wait(loop->epfd, loop->epEvents, loop->setSize, -1); in RunRpcLoop() local 229 for (int i = 0; i < retval; ++i) { in RunRpcLoop()
|
/third_party/libbpf/src/ |
H A D | bpf.h | 455 __u32 retval; /* out: return code of the BPF program */ member 631 __u32 retval; /* out: return code of the BPF program */ member
|
/third_party/musl/porting/liteos_m/user/hook/ |
H A D | los_usr_libc.c | 156 int pthread_join(pthread_t thread, void **retval) in pthread_join() argument 158 return g_usrLibc->pthread_join(thread, retval); in pthread_join()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | number_capi.cpp | 207 bool retval = result->fData.nextFieldPosition(fp, *ec); in unumf_resultNextFieldPosition() local 211 return retval ? true : false; in unumf_resultNextFieldPosition()
|
/third_party/exfatprogs/exfat2img/ |
H A D | exfat2img.c | 402 int retval; in read_upcase_table() local 405 retval = exfat_de_iter_get(iter, 0, &dentry); in read_upcase_table() 406 if (retval || dentry->type != EXFAT_UPCASE) { in read_upcase_table()
|
/third_party/mbedtls/library/ |
H A D | cmac.c | 161 int retval; in mbedtls_cipher_cmac_starts() local 167 if ((retval = mbedtls_cipher_setkey(ctx, key, (int) keybits, in mbedtls_cipher_cmac_starts() 169 return retval; in mbedtls_cipher_cmac_starts()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | flow.c | 324 int retval; in simplify_branch_branch() local 335 retval = 0; in simplify_branch_branch() 351 return retval; in simplify_branch_branch()
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_rsa.c | 620 int retval = serverinfo_find_extension(serverinfo, serverinfo_length, in serverinfoex_srv_add_cb() local 622 if (retval == -1) { in serverinfoex_srv_add_cb() 626 if (retval == 0) in serverinfoex_srv_add_cb()
|
/third_party/vk-gl-cts/external/amber/src/samples/ |
H A D | amber.cc | 109 // Parses a decimal integer from the given string, and writes it to |retval|. 111 static bool ParseOneInt(const char* str, int* retval) { in ParseOneInt() argument 114 return sscanf_s(str, "%d%c", retval, &trailing, 1) == 1; in ParseOneInt() 116 return std::sscanf(str, "%d%c", retval, &trailing) == 1; in ParseOneInt() 121 // given string, and writes it to |retval|. Returns true if parsing succeeded
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | LLVMJIT.cpp | 88 retval, // __msan_retval_tls member in rr::MSanTLS 100 case MSanTLS::retval: return reinterpret_cast<void *>(&__msan_retval_tls); in getTLSAddress() 555 functions.try_emplace("emutls_v.__msan_retval_tls", reinterpret_cast<void *>(static_cast<uintptr_t>(rr::MSanTLS::retval)));
|
/third_party/openssl/ssl/ |
H A D | ssl_rsa.c | 620 int retval = serverinfo_find_extension(serverinfo, serverinfo_length, in serverinfoex_srv_add_cb() local 622 if (retval == -1) { in serverinfoex_srv_add_cb() 626 if (retval == 0) in serverinfoex_srv_add_cb()
|
/third_party/python/Modules/ |
H A D | arraymodule.c | 1323 PyObject *retval = NULL, *v; in array_array_buffer_info_impl() local 1325 retval = PyTuple_New(2); in array_array_buffer_info_impl() 1326 if (!retval) in array_array_buffer_info_impl() 1331 Py_DECREF(retval); in array_array_buffer_info_impl() 1334 PyTuple_SET_ITEM(retval, 0, v); in array_array_buffer_info_impl() 1338 Py_DECREF(retval); in array_array_buffer_info_impl() 1341 PyTuple_SET_ITEM(retval, 1, v); in array_array_buffer_info_impl() 1343 return retval; in array_array_buffer_info_impl()
|
/third_party/curl/lib/vtls/ |
H A D | gtls.c | 1473 int retval = 0; in gtls_shutdown() local 1511 retval = -1; in gtls_shutdown() 1524 retval = -1; in gtls_shutdown() 1543 return retval; in gtls_shutdown()
|
/third_party/FreeBSD/sys/dev/usb/net/ |
H A D | if_cdce.c | 1101 uint8_t retval; in cdce_ncm_fill_tx_frames() local 1121 retval = 2; in cdce_ncm_fill_tx_frames() 1137 retval = 1; in cdce_ncm_fill_tx_frames() 1229 return (retval); in cdce_ncm_fill_tx_frames()
|
/third_party/FreeBSD/sys/dev/usb/serial/ |
H A D | usb_serial.c | 1008 int retval; in ucom_unref() local 1011 retval = (ssc->sc_refs < 2); in ucom_unref() 1015 if (retval) in ucom_unref() 1018 return (retval); in ucom_unref()
|
/foundation/graphic/graphic_surface/surface/include/ |
H A D | buffer_client_producer.h | 39 RequestBufferReturnValue &retval) override;
|
/foundation/graphic/graphic_surface/interfaces/inner_api/surface/ |
H A D | ibuffer_producer.h | 52 RequestBufferReturnValue &retval) = 0;
|
/third_party/FreeBSD/sys/dev/usb/ |
H A D | usb_hub.c | 382 uint8_t retval = 0; in uhub_count_active_host_ports() local 400 retval++; in uhub_count_active_host_ports() 403 return (retval); in uhub_count_active_host_ports() 2154 uint8_t retval; in usbd_fs_isoc_schedule_alloc_slot() local 2233 retval = slot; in usbd_fs_isoc_schedule_alloc_slot() 2257 return (retval); in usbd_fs_isoc_schedule_alloc_slot()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_nir_to_llvm.c | 1528 unsigned *retval = (unsigned *)context; in ac_diagnostic_handler() local 1533 *retval = 1; in ac_diagnostic_handler() 1544 unsigned retval = 0; in radv_llvm_compile() local 1550 LLVMContextSetDiagnosticHandler(llvm_ctx, ac_diagnostic_handler, &retval); in radv_llvm_compile() 1554 retval = 1; in radv_llvm_compile() 1555 return retval; in radv_llvm_compile()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | cmp.c | 2205 int provider_option = (OPT_PROV__FIRST <= opt->retval in read_config() 2206 && opt->retval < OPT_PROV__LAST); in read_config() 2207 int rand_state_option = (OPT_R__FIRST <= opt->retval in read_config() 2208 && opt->retval < OPT_R__LAST); in read_config() 2209 int verification_option = (OPT_V__FIRST <= opt->retval in read_config() 2210 && opt->retval < OPT_V__LAST); in read_config()
|
/third_party/openssl/apps/ |
H A D | cmp.c | 2204 int provider_option = (OPT_PROV__FIRST <= opt->retval in read_config() 2205 && opt->retval < OPT_PROV__LAST); in read_config() 2206 int rand_state_option = (OPT_R__FIRST <= opt->retval in read_config() 2207 && opt->retval < OPT_R__LAST); in read_config() 2208 int verification_option = (OPT_V__FIRST <= opt->retval in read_config() 2209 && opt->retval < OPT_V__LAST); in read_config()
|
/third_party/FreeBSD/sys/dev/usb/storage/ |
H A D | umass.c | 756 uint16_t retval; in umass_get_proto() local 758 retval = 0; in umass_get_proto() 768 retval |= UMASS_PROTO_SCSI; in umass_get_proto() 771 retval |= UMASS_PROTO_UFI; in umass_get_proto() 774 retval |= UMASS_PROTO_RBC; in umass_get_proto() 778 retval |= UMASS_PROTO_ATAPI; in umass_get_proto() 786 retval |= UMASS_PROTO_CBI; in umass_get_proto() 789 retval |= UMASS_PROTO_CBI_I; in umass_get_proto() 793 retval |= UMASS_PROTO_BBB; in umass_get_proto() 799 return (retval); in umass_get_proto() [all...] |