Searched refs:result (Results 151 - 175 of 265) sorted by relevance

1234567891011

/u-boot/include/
H A Devent.h188 * @result: Result of the load operation
193 int result; member in struct:event_data::event_fpga_load
/u-boot/cmd/
H A Dnvedit_efi.c106 bool result = false; local
111 return result;
118 result = true;
126 return result;
H A Dsetexpr.c395 int result; local
400 result = printf_setexpr(str, sizeof(str), argc - 3, &argv[3]);
401 if (result)
402 return result;
520 "set environment variable as the result of eval expression",
522 " - set environment variable 'name' to the result of the evaluated\n"
532 " - set environment variable 'name' to the result of the bash like\n"
539 " string <t>, substitute the string <s>. The result is\n"
H A Dmbr.c71 bool result = false; local
83 result = true;
90 return result;
/u-boot/drivers/watchdog/
H A Datcwdt200_wdt.c88 u64 result; local
94 result = freq_sec >> atcwdt_get_2_power_of_n(index, type);
96 if (result <= 1)
/u-boot/drivers/core/
H A Ddevice-remove.c51 int result = 0; local
63 result = ret;
68 return result;
/u-boot/drivers/fpga/
H A Dfpga.c247 static int fpga_load_event_notify(const void *buf, size_t bsize, int result) argument
253 .result = result
/u-boot/drivers/misc/imx_ele/
H A Dele_mu.c168 u32 result; local
184 result = ((struct ele_msg *)rx_msg)->data[0];
185 if ((result & 0xff) == 0xd6)
/u-boot/drivers/misc/imx8/
H A Dscu.c163 sc_err_t result; local
179 result = RPC_R8((struct sc_rpc_msg_s *)tx_msg);
181 return sc_err_to_linux(result);
H A Dscu_api.c157 u8 result; local
167 result = RPC_R8(&msg);
168 if (result != 0 && result != 1) {
175 return !!result;
507 sc_err_t result; local
519 result = RPC_R8(&msg);
521 if (result != 0 && result != 1) {
528 return (sc_bool_t)result;
627 u8 result; local
802 u8 result; local
[all...]
/u-boot/arch/arm/mach-stm32mp/cmd_stm32prog/
H A Dstm32prog_usb.c198 bool result; local
222 result = !!(ret) || (stm32prog_data->phase == PHASE_DO_RESET);
226 return result;
/u-boot/arch/x86/cpu/ivybridge/
H A Dnorthbridge.c28 struct cpuid_result result; local
32 result = cpuid(1);
33 stepping = result.eax & 0xf;
/u-boot/arch/x86/cpu/intel_common/
H A Dcpu.c297 struct cpuid_result result; local
303 result = cpuid_ext(0xb, 1);
304 cores = result.ebx & 0xff;
/u-boot/env/
H A Dnand.c272 int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result) argument
291 *result = ovoid ob_buf[1] * mtd->erasesize;
293 *result = oob_buf[1];
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-pow.h914 cvmx_pow_tag_info_t result; local
925 result.index = sl_ppx_tag.s.index;
926 result.tag_type = sl_ppx_tag.s.tt;
927 result.tag = sl_ppx_tag.s.tag;
933 result.grp = xgrp.group;
944 result.grp = load_resp.s.grp;
945 result.index = load_resp.s.index;
946 result.tag_type = load_resp.s.tag_type;
947 result.tag = load_resp.s.tag;
958 result
1068 cvmx_pow_tag_load_resp_t result; local
1122 cvmx_pow_tag_load_resp_t result; local
1212 cvmx_pow_tag_load_resp_t result; local
2373 cvmx_pow_tag_load_resp_t result; local
[all...]
/u-boot/fs/yaffs2/
H A Dyaffsfs.c1309 int result = YAFFS_FAIL; local
1343 result = yaffs_resize_file(obj, new_size);
1347 return (result) ? 0 : -1;
1354 int result = 0; local
1371 result = yaffs_resize_file(obj, new_size);
1374 return (result) ? 0 : -1;
1424 int result = YAFFS_FAIL; local
1464 result = yaffs_unlinker(dir, name);
1466 if (result == YAFFS_FAIL && isDirectory)
1472 return (result
1488 int result = YAFFS_FAIL; local
1707 int result; local
2180 int result; local
2217 int result = -1; local
2420 int result; local
2457 int result = YAFFS_FAIL; local
[all...]
/u-boot/drivers/usb/gadget/
H A Dether.c923 int result = 0; local
933 result = usb_ep_enable(dev->status_ep, dev->status);
934 if (result != 0) {
936 dev->status_ep->name, result);
958 result = usb_ep_enable(dev->in_ep, dev->in);
959 if (result != 0) {
961 dev->in_ep->name, result);
965 result = usb_ep_enable(dev->out_ep, dev->out);
966 if (result != 0) {
968 dev->out_ep->name, result);
1041 int result = 0; local
[all...]
/u-boot/drivers/usb/musb-new/
H A Dmusb_gadget_ep0.c67 u8 result[2], epnum = 0; local
70 result[1] = 0;
74 result[0] = musb->is_self_powered << USB_DEVICE_SELF_POWERED;
75 result[0] |= musb->may_wakeup << USB_DEVICE_REMOTE_WAKEUP;
77 result[0] |= musb->g.b_hnp_enable
79 result[0] |= musb->g.a_alt_hnp_support
81 result[0] |= musb->g.a_hnp_support
87 result[0] = 0;
98 result[0] = 0;
125 result[
[all...]
/u-boot/drivers/usb/mtu3/
H A Dmtu3_gadget_ep0.c232 u8 result[2] = {0, 0}; local
238 result[0] = mtu->is_self_powered << USB_DEVICE_SELF_POWERED;
239 result[0] |= mtu->may_wakeup << USB_DEVICE_REMOTE_WAKEUP;
242 result[0] |= mtu->u1_enable << USB_DEV_STAT_U1_ENABLED;
243 result[0] |= mtu->u2_enable << USB_DEV_STAT_U2_ENABLED;
246 dev_dbg(mtu->dev, "%s result=%x, U1=%x, U2=%x\n", __func__,
247 result[0], mtu->u1_enable, mtu->u2_enable);
270 result[0] |= 1 << USB_ENDPOINT_HALT;
283 dev_dbg(mtu->dev, "get_status=%x\n", *(u16 *)result);
284 memcpy(mtu->setup_buf, result, sizeo
[all...]
/u-boot/drivers/ram/stm32mp1/
H A Dstm32mp1_ddr.c369 int result = -1; local
382 result = 0;
390 if (result) {
396 result = 0;
399 return result;
472 int result = -EINVAL; local
488 result = 0;
495 if (result) {
501 result = 0;
505 return result;
[all...]
/u-boot/tools/binman/
H A Dcontrol.py92 def _FinishTag(tag, msg, result):
94 result[tag] = msg.rstrip()
101 result = {}
108 _, msg = _FinishTag(tag, msg, result)
112 _FinishTag(tag, msg, result)
113 return result
655 # may result in an entry changing size. In that case we need to
/u-boot/tools/buildman/
H A Dboards.py605 If it is built, add the board to the result[term] list so we know
606 which term caused it to be built. Add it to result['all'] also.
638 result[matching_term].append(brd.target)
639 result['all'].append(brd.target)
641 result = OrderedDict()
645 result['all'] = []
647 result[str(term)] = []
663 return result, warnings
H A Dtoolchain.py102 result = command.run_pipe([cmd], capture=True, env=env,
104 self.ok = result.return_code == 0
113 print(result.stdout)
114 print(result.stderr)
/u-boot/lib/libavb/
H A Davb_util.c69 int result = 0; local
80 result |= *us1++ ^ *us2++;
83 return result != 0;
/u-boot/common/
H A DxyzModem.c138 unsigned long result = 0; local
155 result = (result * radix) + digit;
171 *val = result;

Completed in 428 milliseconds

1234567891011