Home
last modified time | relevance | path

Searched refs:result (Results 251 – 275 of 5828) sorted by relevance

1...<<11121314151617181920>>...234

/OK3568_Linux_fs/kernel/arch/parisc/math-emu/
H A Dfcnvfut.c50 register unsigned int src, result; in sgl_to_sgl_fcnvfut() local
61 result = 0; in sgl_to_sgl_fcnvfut()
63 result = 0xffffffff; in sgl_to_sgl_fcnvfut()
69 *dstptr = result; in sgl_to_sgl_fcnvfut()
81 result = 0; in sgl_to_sgl_fcnvfut()
86 *dstptr = result; in sgl_to_sgl_fcnvfut()
90 Suint_from_sgl_mantissa(src,src_exponent,result); in sgl_to_sgl_fcnvfut()
91 *dstptr = result; in sgl_to_sgl_fcnvfut()
189 register unsigned int srcp1, srcp2, result; in dbl_to_sgl_fcnvfut() local
200 result = 0; in dbl_to_sgl_fcnvfut()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/mte/
H A Dcheck_tags_inclusion.c46 int tag, run, result = KSFT_PASS; in check_single_included_tags() local
53 for (tag = 0; (tag < MT_TAG_COUNT) && (result == KSFT_PASS); tag++) { in check_single_included_tags()
56 for (run = 0; (run < RUNS) && (result == KSFT_PASS); run++) { in check_single_included_tags()
63 result = KSFT_FAIL; in check_single_included_tags()
66 result = verify_mte_pointer_validity(ptr, mode); in check_single_included_tags()
70 return result; in check_single_included_tags()
76 int tag, run, result = KSFT_PASS; in check_multiple_included_tags() local
84 for (tag = 0; (tag < MT_TAG_COUNT - 1) && (result == KSFT_PASS); tag++) { in check_multiple_included_tags()
88 for (run = 0; (run < RUNS) && (result == KSFT_PASS); run++) { in check_multiple_included_tags()
95 result = KSFT_FAIL; in check_multiple_included_tags()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/verifier/
H A Djmp32.c17 .result = ACCEPT,
49 .result = ACCEPT,
76 .result = ACCEPT,
92 .result = ACCEPT,
105 .result = ACCEPT,
129 .result = ACCEPT,
157 .result = ACCEPT,
170 .result = ACCEPT,
194 .result = ACCEPT,
222 .result = ACCEPT,
[all …]
H A Dctx.c9 .result = REJECT,
21 .result = REJECT,
35 .result = REJECT,
48 .result = ACCEPT,
61 .result = REJECT,
74 .result = REJECT,
91 .result = REJECT,
104 .result = ACCEPT,
117 .result = ACCEPT,
130 .result = REJECT,
[all …]
/OK3568_Linux_fs/kernel/drivers/mmc/core/
H A Dregulator.c63 int result = 0; in mmc_regulator_get_ocrmask() local
79 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV); in mmc_regulator_get_ocrmask()
82 if (!result) { in mmc_regulator_get_ocrmask()
88 result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV); in mmc_regulator_get_ocrmask()
91 return result; in mmc_regulator_get_ocrmask()
110 int result = 0; in mmc_regulator_set_ocr() local
116 result = regulator_set_voltage(supply, min_uV, max_uV); in mmc_regulator_set_ocr()
117 if (result == 0 && !mmc->regulator_enabled) { in mmc_regulator_set_ocr()
118 result = regulator_enable(supply); in mmc_regulator_set_ocr()
119 if (!result) in mmc_regulator_set_ocr()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wimax/i2400m/
H A Dusb-rx.c194 int result = 0; in i2400mu_rx() local
202 result = do_autopm ? in i2400mu_rx()
204 if (result < 0) { in i2400mu_rx()
205 dev_err(dev, "RX: can't get autopm: %d\n", result); in i2400mu_rx()
216 result = usb_bulk_msg( in i2400mu_rx()
220 switch (result) { in i2400mu_rx()
259 result = -EINVAL; in i2400mu_rx()
285 dev_err(dev, "RX: timeout: %d\n", result); in i2400mu_rx()
286 result = 0; in i2400mu_rx()
292 dev_err(dev, "RX: error receiving URB: %d, retrying\n", result); in i2400mu_rx()
[all …]
/OK3568_Linux_fs/kernel/drivers/acpi/
H A Ddevice_sysfs.c24 int result; in acpi_object_path() local
26 result = acpi_get_name(handle, ACPI_FULL_PATHNAME, &path); in acpi_object_path()
27 if (result) in acpi_object_path()
28 return result; in acpi_object_path()
30 result = sprintf(buf, "%s\n", (char *)path.pointer); in acpi_object_path()
32 return result; in acpi_object_path()
436 int result; in description_show() local
445 result = utf16s_to_utf8s( in description_show()
451 buf[result++] = '\n'; in description_show()
453 return result; in description_show()
[all …]
H A Dsysfs.c110 int result = 0; in param_get_debug_layer() local
113 result = sprintf(buffer, "%-25s\tHex SET\n", "Description"); in param_get_debug_layer()
116 result += sprintf(buffer + result, "%-25s\t0x%08lX [%c]\n", in param_get_debug_layer()
122 result += in param_get_debug_layer()
123 sprintf(buffer + result, "%-25s\t0x%08X [%c]\n", "ACPI_ALL_DRIVERS", in param_get_debug_layer()
128 result += in param_get_debug_layer()
129 sprintf(buffer + result, in param_get_debug_layer()
133 return result; in param_get_debug_layer()
138 int result = 0; in param_get_debug_level() local
141 result = sprintf(buffer, "%-25s\tHex SET\n", "Description"); in param_get_debug_level()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/usb/GobiNet/
H A DQMI.c1113 int result; in QMICTLGetClientIDResp() local
1127 result = GetQMIMessageID( pBuffer, buffSize ); in QMICTLGetClientIDResp()
1128 if (result != 0x22) in QMICTLGetClientIDResp()
1133 result = ValidQMIMessage( pBuffer, buffSize ); in QMICTLGetClientIDResp()
1134 if (result != 0) in QMICTLGetClientIDResp()
1139 result = GetTLV( pBuffer, buffSize, 0x01, pClientID, 2 ); in QMICTLGetClientIDResp()
1140 if (result != 2) in QMICTLGetClientIDResp()
1167 int result; in QMICTLReleaseClientIDResp() local
1181 result = GetQMIMessageID( pBuffer, buffSize ); in QMICTLReleaseClientIDResp()
1182 if (result != 0x23) in QMICTLReleaseClientIDResp()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/arithmetic/
H A Dcross_product.hpp53 static inline void apply(P1 const& p1, P2 const& p2, ResultP& result) in apply()
62 set<0>(result, get<0>(p1) * get<1>(p2) - get<1>(p1) * get<0>(p2)); in apply()
70 static inline void apply(P1 const& p1, P2 const& p2, ResultP& result) in apply()
76 set<0>(result, get<1>(p1) * get<2>(p2) - get<2>(p1) * get<1>(p2)); in apply()
77 set<1>(result, get<2>(p1) * get<0>(p2) - get<0>(p1) * get<2>(p2)); in apply()
78 set<2>(result, get<0>(p1) * get<1>(p2) - get<1>(p1) * get<0>(p2)); in apply()
101 ResultP result; in cross_product() local
102 detail::cross_product<dimension<ResultP>::value>::apply(p1, p2, result); in cross_product()
103 return result; in cross_product()
120 P result; in cross_product() local
[all …]
/OK3568_Linux_fs/kernel/arch/mips/include/asm/
H A Datomic.h85 type temp, result; \
91 result = v->counter; \
92 result c_op i; \
93 v->counter = result; \
95 return result; \
108 : "=&r" (result), "=&r" (temp), \
112 return result; \
118 int temp, result; \
124 result = v->counter; \
127 return result; \
[all …]
/OK3568_Linux_fs/kernel/drivers/input/sensors/lsensor/
H A Dls_us5152.c237 int result = 0; in sensor_active() local
247 result = sensor_write_reg(client, REGS_CR0, value); in sensor_active()
248 if(result) in sensor_active()
249 return result; in sensor_active()
255 result = sensor_write_reg(client, REGS_CR0, value); in sensor_active()
256 if(result) in sensor_active()
257 return result; in sensor_active()
260 if(!result) in sensor_active()
270 return result; in sensor_active()
279 int result = 0; in sensor_init() local
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dfitimage.py197 result = runCmd('bitbake -e u-boot-tools-native | grep ^RECIPE_SYSROOT_NATIVE=')
198 recipe_sysroot_native = result.output.split('=')[1].strip('"')
200 result = runCmd('%s -l %s' % (dumpimage_path, fitimage_path))
203 for line in result.output.splitlines():
226 result = runCmd('bitbake -e virtual/kernel | grep ^T=')
227 tempdir = result.output.split('=', 1)[1].strip().strip('')
228result = runCmd('grep "a smart comment" %s/run.do_assemble_fitimage' % tempdir, ignore_status=True)
229 self.assertEqual(result.status, 0, 'UBOOT_MKIMAGE_SIGN_ARGS value did not get used')
232result = runCmd('grep "### uboot-mkimage wrapper message" %s/log.do_assemble_fitimage' % tempdir, …
233 self.assertEqual(result.status, 0, 'UBOOT_MKIMAGE did not work')
[all …]
/OK3568_Linux_fs/kernel/drivers/input/sensors/gyro/
H A Dl3g20d.c44 int result = 0; in sensor_active() local
62 result = sensor_write_reg(client, sensor->ops->ctrl_reg, sensor->ops->ctrl_data); in sensor_active()
63 if(result) in sensor_active()
66 return result; in sensor_active()
74 int result = 0; in sensor_init() local
79 result = sensor->ops->active(client,0,0); in sensor_init()
80 if(result) in sensor_init()
83 return result; in sensor_init()
95 result = sensor_write_reg(client, sensor->ops->ctrl_reg+i, buf[i]); in sensor_init()
96 if(result) in sensor_init()
[all …]
H A Dl3g4200d.c44 int result = 0; in sensor_active() local
62 result = sensor_write_reg(client, sensor->ops->ctrl_reg, sensor->ops->ctrl_data); in sensor_active()
63 if(result) in sensor_active()
66 return result; in sensor_active()
74 int result = 0; in sensor_init() local
79 result = sensor->ops->active(client,0,0); in sensor_init()
80 if(result) in sensor_init()
83 return result; in sensor_init()
95 result = sensor_write_reg(client, sensor->ops->ctrl_reg+i, buf[i]); in sensor_init()
96 if(result) in sensor_init()
[all …]
H A Dicm2060x_gyro.c32 int result = 0; in sensor_active() local
50 result = sensor_write_reg(client, sensor->ops->ctrl_reg, in sensor_active()
52 if (result) { in sensor_active()
54 "%s:fail to set ctrl_reg(%d)\n", __func__, result); in sensor_active()
55 return result; in sensor_active()
59 result = sensor_write_reg(client, ICM2060X_PWR_MGMT_1, pwrm1); in sensor_active()
60 if (result) { in sensor_active()
62 "%s: fail to set pwrm1(%d)\n", __func__, result); in sensor_active()
63 return result; in sensor_active()
67 return result; in sensor_active()
[all …]
/OK3568_Linux_fs/kernel/drivers/misc/vmw_vmci/
H A Dvmci_context.c247 int result; in ctx_fire_notification() local
257 result = vmci_datagram_dispatch(VMCI_HYPERVISOR_CONTEXT_ID, in ctx_fire_notification()
259 if (result < VMCI_SUCCESS) { in ctx_fire_notification()
602 int result; in vmci_ctx_add_notification() local
612 result = VMCI_ERROR_DST_UNREACHABLE; in vmci_ctx_add_notification()
617 result = VMCI_ERROR_NO_ACCESS; in vmci_ctx_add_notification()
623 result = VMCI_ERROR_NO_MEM; in vmci_ctx_add_notification()
642 result = VMCI_ERROR_ALREADY_EXISTS; in vmci_ctx_add_notification()
647 result = VMCI_SUCCESS; in vmci_ctx_add_notification()
651 result = VMCI_ERROR_NO_MEM; in vmci_ctx_add_notification()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/sensors/compass/
H A Dak8975.c119 int result = 0; in sensor_active() local
134 result = sensor_write_reg(client, sensor->ops->ctrl_reg, sensor->ops->ctrl_data); in sensor_active()
135 if(result) in sensor_active()
138 return result; in sensor_active()
146 int result = 0; in sensor_init() local
151 result = sensor->ops->active(client,0,0); in sensor_init()
152 if(result) in sensor_init()
155 return result; in sensor_init()
168 result = misc_register(&compass_dev_device); in sensor_init()
169 if (result < 0) { in sensor_init()
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Dcpu.h73 struct cpuid_result result; in cpuid() local
79 : "=a" (result.eax), in cpuid()
80 "=S" (result.ebx), in cpuid()
81 "=c" (result.ecx), in cpuid()
82 "=d" (result.edx) in cpuid()
85 return result; in cpuid()
93 struct cpuid_result result; in cpuid_ext() local
99 : "=a" (result.eax), in cpuid_ext()
100 "=S" (result.ebx), in cpuid_ext()
101 "=c" (result.ecx), in cpuid_ext()
[all …]
/OK3568_Linux_fs/kernel/net/sctp/
H A Dstream.c510 __u32 result) in sctp_update_strreset_result() argument
513 asoc->strreset_result[0] = result; in sctp_update_strreset_result()
523 __u32 result = SCTP_STRRESET_DENIED; in sctp_process_strreset_outreq() local
532 result = SCTP_STRRESET_IN_PROGRESS; in sctp_process_strreset_outreq()
538 result = SCTP_STRRESET_ERR_BAD_SEQNO; in sctp_process_strreset_outreq()
542 result = asoc->strreset_result[i]; in sctp_process_strreset_outreq()
558 result = SCTP_STRRESET_ERR_WRONG_SSN; in sctp_process_strreset_outreq()
568 result = SCTP_STRRESET_ERR_IN_PROGRESS; in sctp_process_strreset_outreq()
594 result = SCTP_STRRESET_PERFORMED; in sctp_process_strreset_outreq()
600 sctp_update_strreset_result(asoc, result); in sctp_process_strreset_outreq()
[all …]
/OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/executive/
H A Dcvmx-helper-sgmii.c399 union cvmx_helper_link_info result; in __cvmx_helper_sgmii_link_get() local
405 result.u64 = 0; in __cvmx_helper_sgmii_link_get()
409 result.s.link_up = 1; in __cvmx_helper_sgmii_link_get()
410 result.s.full_duplex = 1; in __cvmx_helper_sgmii_link_get()
411 result.s.speed = 1000; in __cvmx_helper_sgmii_link_get()
412 return result; in __cvmx_helper_sgmii_link_get()
419 result.s.link_up = 1; in __cvmx_helper_sgmii_link_get()
420 result.s.full_duplex = 1; in __cvmx_helper_sgmii_link_get()
421 result.s.speed = 1000; in __cvmx_helper_sgmii_link_get()
422 return result; in __cvmx_helper_sgmii_link_get()
[all …]
/OK3568_Linux_fs/kernel/fs/exportfs/
H A Dexpfs.c43 find_acceptable_alias(struct dentry *result, in find_acceptable_alias() argument
50 if (acceptable(context, result)) in find_acceptable_alias()
51 return result; in find_acceptable_alias()
53 inode = result->d_inode; in find_acceptable_alias()
60 if (dentry != result && acceptable(context, dentry)) { in find_acceptable_alias()
61 dput(result); in find_acceptable_alias()
256 int result = 0; in filldir_one() local
263 result = -1; in filldir_one()
265 return result; in filldir_one()
425 struct dentry *result, *alias; in exportfs_decode_fh() local
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/hal/phydm/halrf/rtl8188e/
H A Dhalrf_8188e_ce.c576 u8 result = 0x00; in phy_path_a_iqk_8188e() local
615 result |= 0x01; in phy_path_a_iqk_8188e()
617 return result; in phy_path_a_iqk_8188e()
623 result |= 0x02; in phy_path_a_iqk_8188e()
628 return result; in phy_path_a_iqk_8188e()
637 u8 result = 0x00; in phy_path_a_rx_iqk() local
686 result |= 0x01; in phy_path_a_rx_iqk()
688 return result; in phy_path_a_rx_iqk()
743 result |= 0x01; in phy_path_a_rx_iqk()
745 return result; in phy_path_a_rx_iqk()
[all …]
H A Dhalrf_8188e_win.c579 u8 result = 0x00; in phy_path_a_iqk_8188e() local
651 result |= 0x01; in phy_path_a_iqk_8188e()
653 return result; in phy_path_a_iqk_8188e()
659 result |= 0x02; in phy_path_a_iqk_8188e()
664 return result; in phy_path_a_iqk_8188e()
676 u8 result = 0x00; in phy_path_a_rx_iqk() local
733 result |= 0x01; in phy_path_a_rx_iqk()
735 return result; in phy_path_a_rx_iqk()
798 result |= 0x01; in phy_path_a_rx_iqk()
800 return result; in phy_path_a_rx_iqk()
[all …]
/OK3568_Linux_fs/kernel/kernel/time/
H A Dtimeconv.c78 void time64_to_tm(time64_t totalsecs, int offset, struct tm *result) in time64_to_tm() argument
96 result->tm_hour = rem / SECS_PER_HOUR; in time64_to_tm()
98 result->tm_min = rem / 60; in time64_to_tm()
99 result->tm_sec = rem % 60; in time64_to_tm()
102 result->tm_wday = (4 + days) % 7; in time64_to_tm()
103 if (result->tm_wday < 0) in time64_to_tm()
104 result->tm_wday += 7; in time64_to_tm()
117 result->tm_year = y - 1900; in time64_to_tm()
119 result->tm_yday = days; in time64_to_tm()
126 result->tm_mon = y; in time64_to_tm()
[all …]

1...<<11121314151617181920>>...234