Home
last modified time | relevance | path

Searched refs:retval (Results 2626 - 2650 of 3169) sorted by relevance

1...<<101102103104105106107108109110>>...127

/kernel/linux/linux-6.6/sound/isa/
H A Dsscape.c690 int retval = 0; in detect_sscape() local
770 retval = 1; in detect_sscape()
774 return retval; in detect_sscape()
/kernel/linux/linux-6.6/tools/firewire/
H A Dnosy-dump.c899 int length, retval, view; in main() local
909 retval = poptGetNextOpt(con); in main()
910 if (retval < -1) { in main()
/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()
/kernel/linux/linux-5.10/drivers/tty/serial/
H A Datmel_serial.c1904 int retval; in atmel_startup() local
1917 retval = request_irq(port->irq, atmel_interrupt, in atmel_startup()
1920 if (retval) { in atmel_startup()
1922 return retval; in atmel_startup()
1936 retval = atmel_port->prepare_rx(port); in atmel_startup()
1937 if (retval < 0) in atmel_startup()
1942 retval = atmel_port->prepare_tx(port); in atmel_startup()
1943 if (retval < 0) in atmel_startup()
/kernel/linux/linux-5.10/drivers/usb/serial/
H A Dio_ti.c1636 int retval; in edge_interrupt_callback() local
1722 retval = usb_submit_urb(urb, GFP_ATOMIC); in edge_interrupt_callback()
1723 if (retval) in edge_interrupt_callback()
1726 __func__, retval); in edge_interrupt_callback()
1735 int retval = 0; in edge_bulk_in_callback() local
1788 retval = usb_submit_urb(urb, GFP_ATOMIC); in edge_bulk_in_callback()
1793 if (retval) in edge_bulk_in_callback()
1794 dev_err(dev, "%s - usb_submit_urb failed with result %d\n", __func__, retval); in edge_bulk_in_callback()
/kernel/linux/linux-6.6/drivers/tty/serial/
H A Datmel_serial.c1879 int retval; in atmel_startup() local
1892 retval = request_irq(port->irq, atmel_interrupt, in atmel_startup()
1895 if (retval) { in atmel_startup()
1897 return retval; in atmel_startup()
1911 retval = atmel_port->prepare_rx(port); in atmel_startup()
1912 if (retval < 0) in atmel_startup()
1917 retval = atmel_port->prepare_tx(port); in atmel_startup()
1918 if (retval < 0) in atmel_startup()
/kernel/linux/linux-6.6/drivers/usb/serial/
H A Dio_ti.c1630 int retval; in edge_interrupt_callback() local
1716 retval = usb_submit_urb(urb, GFP_ATOMIC); in edge_interrupt_callback()
1717 if (retval) in edge_interrupt_callback()
1720 __func__, retval); in edge_interrupt_callback()
1729 int retval = 0; in edge_bulk_in_callback() local
1782 retval = usb_submit_urb(urb, GFP_ATOMIC); in edge_bulk_in_callback()
1787 if (retval) in edge_bulk_in_callback()
1788 dev_err(dev, "%s - usb_submit_urb failed with result %d\n", __func__, retval); in edge_bulk_in_callback()
/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()
/kernel/linux/linux-5.10/net/sctp/
H A Dsm_statefuns.c1472 enum sctp_disposition retval; in sctp_sf_do_unexpected_init() local
1528 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1530 retval = SCTP_DISPOSITION_NOMEM; in sctp_sf_do_unexpected_init()
1571 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1623 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1625 return retval; in sctp_sf_do_unexpected_init()
1628 retval = SCTP_DISPOSITION_NOMEM; in sctp_sf_do_unexpected_init()
1635 return retval; in sctp_sf_do_unexpected_init()
2141 enum sctp_disposition retval; in sctp_sf_do_5_2_4_dupcook() local
2214 retval in sctp_sf_do_5_2_4_dupcook()
[all...]
/kernel/linux/linux-6.6/net/sctp/
H A Dsm_statefuns.c1521 enum sctp_disposition retval; in sctp_sf_do_unexpected_init() local
1575 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1577 retval = SCTP_DISPOSITION_NOMEM; in sctp_sf_do_unexpected_init()
1624 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1676 retval = SCTP_DISPOSITION_CONSUME; in sctp_sf_do_unexpected_init()
1678 return retval; in sctp_sf_do_unexpected_init()
1681 retval = SCTP_DISPOSITION_NOMEM; in sctp_sf_do_unexpected_init()
1688 return retval; in sctp_sf_do_unexpected_init()
2206 enum sctp_disposition retval; in sctp_sf_do_5_2_4_dupcook() local
2278 retval in sctp_sf_do_5_2_4_dupcook()
[all...]
/kernel/linux/linux-5.10/drivers/scsi/megaraid/
H A Dmegaraid_sas_base.c2358 int ld, retval = 0; in megasas_get_ld_vf_affiliation_111() local
2425 retval = 1; /* Do a scan if we couldn't get affiliation */ in megasas_get_ld_vf_affiliation_111()
2440 retval = 1; in megasas_get_ld_vf_affiliation_111()
2454 return retval; in megasas_get_ld_vf_affiliation_111()
2465 int i, j, retval = 0, found = 0, doscan = 0; in megasas_get_ld_vf_affiliation_12() local
2533 retval = 1; /* Do a scan if we couldn't get affiliation */ in megasas_get_ld_vf_affiliation_12()
2542 retval = 1; in megasas_get_ld_vf_affiliation_12()
2609 retval = 1; in megasas_get_ld_vf_affiliation_12()
2619 return retval; in megasas_get_ld_vf_affiliation_12()
2626 int retval; in megasas_get_ld_vf_affiliation() local
2641 int retval = 0; megasas_sriov_start_heartbeat() local
8702 int retval = count; dbg_lvl_store() local
[all...]
/kernel/linux/linux-6.6/drivers/scsi/megaraid/
H A Dmegaraid_sas_base.c2368 int ld, retval = 0; in megasas_get_ld_vf_affiliation_111() local
2435 retval = 1; /* Do a scan if we couldn't get affiliation */ in megasas_get_ld_vf_affiliation_111()
2450 retval = 1; in megasas_get_ld_vf_affiliation_111()
2464 return retval; in megasas_get_ld_vf_affiliation_111()
2475 int i, j, retval = 0, found = 0, doscan = 0; in megasas_get_ld_vf_affiliation_12() local
2543 retval = 1; /* Do a scan if we couldn't get affiliation */ in megasas_get_ld_vf_affiliation_12()
2552 retval = 1; in megasas_get_ld_vf_affiliation_12()
2619 retval = 1; in megasas_get_ld_vf_affiliation_12()
2629 return retval; in megasas_get_ld_vf_affiliation_12()
2636 int retval; in megasas_get_ld_vf_affiliation() local
2651 int retval = 0; megasas_sriov_start_heartbeat() local
8707 int retval = count; dbg_lvl_store() local
[all...]
/kernel/linux/linux-5.10/arch/sparc/mm/
H A Dsrmmu.c752 unsigned long retval; in srmmu_probe() local
758 "=r" (retval) : in srmmu_probe()
761 retval = leon_swprobe(vaddr, NULL); in srmmu_probe()
763 return retval; in srmmu_probe()
/kernel/linux/linux-5.10/drivers/net/bonding/
H A Dbond_options.c660 const struct bond_opt_value *retval = NULL; in __bond_opt_set() local
672 retval = bond_opt_parse(opt, val); in __bond_opt_set()
673 if (!retval) { in __bond_opt_set()
677 ret = opt->set(bond, retval); in __bond_opt_set()
/kernel/linux/linux-5.10/drivers/net/ethernet/3com/
H A D3c574_cs.c546 unsigned int retval = 0; in mdio_read() local
561 retval = (retval << 1) | ((inw(mdio_addr) & MDIO_DATA_READ) ? 1 : 0); in mdio_read()
564 return (retval>>1) & 0xffff; in mdio_read()
/kernel/linux/linux-5.10/drivers/net/ethernet/8390/
H A Daxnet_cs.c429 int i, retval = 0; in mdio_read() local
439 retval = (retval << 1) | ((inb_p(addr) & MDIO_DATA_READ) != 0); in mdio_read()
442 return (retval>>1) & 0xffff; in mdio_read()
/kernel/linux/linux-5.10/drivers/net/ethernet/i825xx/
H A Dsun3_82586.c345 int i, size, retval; in sun3_82586_probe1() local
366 retval = -ENODEV; in sun3_82586_probe1()
371 retval = -ENODEV; in sun3_82586_probe1()
400 return retval; in sun3_82586_probe1()
/kernel/linux/linux-6.6/arch/sparc/mm/
H A Dsrmmu.c753 unsigned long retval; in srmmu_probe() local
759 "=r" (retval) : in srmmu_probe()
762 retval = leon_swprobe(vaddr, NULL); in srmmu_probe()
764 return retval; in srmmu_probe()
/kernel/linux/linux-5.10/drivers/input/tablet/
H A Daiptek.c419 int retval, macro, x, y, z, left, right, middle, p, dv, tip, bs, pck; in aiptek_irq() local
792 retval = usb_submit_urb(urb, GFP_ATOMIC); in aiptek_irq()
793 if (retval != 0) { in aiptek_irq()
796 __func__, retval); in aiptek_irq()

Completed in 61 milliseconds

1...<<101102103104105106107108109110>>...127