/linux-4.1.27/arch/alpha/kernel/ |
D | srm_env.c | 111 unsigned long ret1, ret2; in srm_env_proc_write() local 125 ret1 = callback_setenv(id, buf, count); in srm_env_proc_write() 126 if ((ret1 >> 61) == 0) { in srm_env_proc_write() 130 res = (int) ret1; in srm_env_proc_write()
|
/linux-4.1.27/drivers/crypto/ux500/hash/ |
D | hash_core.c | 1394 int ret2, ret1; in ahash_sha1_digest() local 1396 ret1 = ahash_sha1_init(req); in ahash_sha1_digest() 1397 if (ret1) in ahash_sha1_digest() 1400 ret1 = ahash_update(req); in ahash_sha1_digest() 1404 return ret1 ? ret1 : ret2; in ahash_sha1_digest() 1409 int ret2, ret1; in ahash_sha256_digest() local 1411 ret1 = ahash_sha256_init(req); in ahash_sha256_digest() 1412 if (ret1) in ahash_sha256_digest() 1415 ret1 = ahash_update(req); in ahash_sha256_digest() 1419 return ret1 ? ret1 : ret2; in ahash_sha256_digest() [all …]
|
/linux-4.1.27/drivers/clk/sirf/ |
D | clk-common.c | 405 int ret1, ret2; in cpu_clk_set_rate() local 409 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk); in cpu_clk_set_rate() 410 return ret1; in cpu_clk_set_rate() 414 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk); in cpu_clk_set_rate() 415 return ret1; in cpu_clk_set_rate() 419 ret1 = clk_set_parent(hw->clk, clk_pll3.hw.clk); in cpu_clk_set_rate() 420 return ret1; in cpu_clk_set_rate() 427 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk); in cpu_clk_set_rate() 428 BUG_ON(ret1); in cpu_clk_set_rate() 433 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk); in cpu_clk_set_rate() [all …]
|
/linux-4.1.27/net/sched/ |
D | act_ipt.c | 289 int ret1, ret2; in ipt_init_module() local 291 ret1 = tcf_register_action(&act_xt_ops, IPT_TAB_MASK); in ipt_init_module() 292 if (ret1 < 0) in ipt_init_module() 298 if (ret1 < 0 && ret2 < 0) { in ipt_init_module() 299 return ret1; in ipt_init_module()
|
/linux-4.1.27/sound/soc/codecs/ |
D | alc5632.c | 1106 int ret, ret1, ret2; in alc5632_i2c_probe() local 1123 ret1 = regmap_read(alc5632->regmap, ALC5632_VENDOR_ID1, &vid1); in alc5632_i2c_probe() 1125 if (ret1 != 0 || ret2 != 0) { in alc5632_i2c_probe() 1127 "Failed to read chip ID: ret1=%d, ret2=%d\n", ret1, ret2); in alc5632_i2c_probe()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | head_64.S | 174 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1 203 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1 222 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1 246 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1 349 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1 375 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
|
D | pci_sun4v.c | 767 unsigned long ret1, ret2; in pci_sun4v_msiq_alloc() local 780 &ret1, &ret2); in pci_sun4v_msiq_alloc() 786 if (ret1 != base || ret2 != pbm->msiq_ent_count) { in pci_sun4v_msiq_alloc() 790 ret1, ret2); in pci_sun4v_msiq_alloc()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | esi_stub.S | 86 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode label
|
D | efi_stub.S | 76 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode label
|
D | head.S | 443 .ret1: label
|
D | entry.S | 127 .ret1: .restore sp label
|
/linux-4.1.27/fs/gfs2/ |
D | file.c | 658 int ret = 0, ret1 = 0; in gfs2_fsync() local 661 ret1 = filemap_fdatawrite_range(mapping, start, end); in gfs2_fsync() 662 if (ret1 == -EIO) in gfs2_fsync() 663 return ret1; in gfs2_fsync() 683 return ret ? ret : ret1; in gfs2_fsync()
|
/linux-4.1.27/sound/soc/sh/ |
D | fsi.c | 590 int ret1, ret2; in fsi_stream_probe() local 593 ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev); in fsi_stream_probe() 598 if (ret1 < 0) in fsi_stream_probe() 599 return ret1; in fsi_stream_probe() 609 int ret1, ret2; in fsi_stream_remove() local 612 ret1 = fsi_stream_handler_call(io, remove, fsi, io); in fsi_stream_remove() 617 if (ret1 < 0) in fsi_stream_remove() 618 return ret1; in fsi_stream_remove()
|
/linux-4.1.27/tools/perf/tests/ |
D | parse-events.c | 1589 int ret1, ret2 = 0; in test_events() local 1596 ret1 = test_event(e); in test_events() 1597 if (ret1) in test_events() 1598 ret2 = ret1; in test_events() 1709 int ret1, ret2 = 0; in test__parse_events() local 1713 ret1 = test_events(tests, ARRAY_SIZE(tests)); \ in test__parse_events() 1715 ret2 = ret1; \ in test__parse_events() 1729 ret1 = test_terms(test__terms, ARRAY_SIZE(test__terms)); in test__parse_events() 1731 ret2 = ret1; in test__parse_events()
|
/linux-4.1.27/sound/pci/ac97/ |
D | ac97_patch.c | 2245 int ret1; in snd_ac97_ad1986_lososel_put() local 2255 ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL, in snd_ac97_ad1986_lososel_put() 2259 if (ret1 < 0) in snd_ac97_ad1986_lososel_put() 2260 return ret1; in snd_ac97_ad1986_lososel_put() 2262 return (ret0 > 0 || ret1 > 0) ? 1 : 0; in snd_ac97_ad1986_lososel_put() 2281 int ret1; in snd_ac97_ad1986_spread_put() local 2291 ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL, in snd_ac97_ad1986_spread_put() 2295 if (ret1 < 0) in snd_ac97_ad1986_spread_put() 2296 return ret1; in snd_ac97_ad1986_spread_put() 2298 return (ret0 > 0 || ret1 > 0) ? 1 : 0; in snd_ac97_ad1986_spread_put()
|
/linux-4.1.27/fs/ceph/ |
D | addr.c | 1278 int ret1; in ceph_filemap_fault() local 1287 ret1 = __ceph_do_getattr(inode, page, in ceph_filemap_fault() 1289 if (ret1 < 0 || off >= i_size_read(inode)) { in ceph_filemap_fault() 1295 if (ret1 < PAGE_CACHE_SIZE) in ceph_filemap_fault() 1296 zero_user_segment(page, ret1, PAGE_CACHE_SIZE); in ceph_filemap_fault()
|
/linux-4.1.27/arch/s390/mm/ |
D | extmem.c | 193 unsigned long *ret1, unsigned long *ret2) in dcss_diag() argument 223 *ret1 = rx; in dcss_diag()
|
/linux-4.1.27/arch/parisc/include/asm/ |
D | asmregs.h | 31 ret1: .reg %r29
|
/linux-4.1.27/drivers/block/ |
D | umem.c | 705 int ret1, ret2; in check_batteries() local 714 ret1 = check_battery(card, 0, !(status & BATTERY_1_FAILURE)); in check_batteries() 717 if (ret1 || ret2) in check_batteries()
|
/linux-4.1.27/fs/ocfs2/ |
D | aops.c | 2057 int try_free = 1, ret1; in ocfs2_write_begin_nolock() local 2256 ret1 = ocfs2_try_to_free_truncate_log(osb, clusters_need); in ocfs2_write_begin_nolock() 2257 if (ret1 == 1) in ocfs2_write_begin_nolock() 2260 if (ret1 < 0) in ocfs2_write_begin_nolock() 2261 mlog_errno(ret1); in ocfs2_write_begin_nolock()
|
/linux-4.1.27/Documentation/parisc/ |
D | registers | 116 r28,r29: are ret0 and ret1. They are what you pass return values
|
/linux-4.1.27/fs/nfs/ |
D | inode.c | 1601 bool ret1 = true, ret2 = true; in nfs_fileid_valid() local 1604 ret1 = (nfsi->fileid == fattr->fileid); in nfs_fileid_valid() 1607 return ret1 || ret2; in nfs_fileid_valid()
|
/linux-4.1.27/arch/parisc/kernel/ |
D | entry.S | 1985 copy %ret1, %arg1 1991 copy %r24, %ret1
|