Home
last modified time | relevance | path

Searched refs:retval (Results 376 - 400 of 499) sorted by relevance

1...<<11121314151617181920

/third_party/python/Objects/
H A Dabstract.c2584 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 Dceval.c1516 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 Dtrans_client_proxy_standard.cpp24 #define WRITE_PARCEL_WITH_RET(parcel, type, data, retval) \
28 return (retval); \
/foundation/communication/wifi/wifi/base/cRPC/src/
H A Dserver.c227 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 Dbpf.h455 __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 Dlos_usr_libc.c156 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 Dnumber_capi.cpp207 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 Dexfat2img.c402 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 Dcmac.c161 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 Dflow.c324 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 Dssl_rsa.c620 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 Damber.cc109 // 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 DLLVMJIT.cpp88 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 Dssl_rsa.c620 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 Darraymodule.c1323 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 Dgtls.c1473 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 Dif_cdce.c1101 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 Dusb_serial.c1008 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 Dbuffer_client_producer.h39 RequestBufferReturnValue &retval) override;
/foundation/graphic/graphic_surface/interfaces/inner_api/surface/
H A Dibuffer_producer.h52 RequestBufferReturnValue &retval) = 0;
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_hub.c382 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 Dradv_nir_to_llvm.c1528 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 Dcmp.c2205 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 Dcmp.c2204 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 Dumass.c756 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...]

Completed in 50 milliseconds

1...<<11121314151617181920