Searched refs:result (Results 76 - 100 of 265) sorted by relevance

1234567891011

/u-boot/tools/binman/etype/
H A Dtee_os.py67 result = super().ObtainContents(fake_size)
79 return result
/u-boot/tools/buildman/
H A Dmain.py50 result = test_util.run_test_suites(
55 return (0 if result.wasSuccessful() else 1)
H A Dcfgutil.py156 result = {}
162 result[opt] = f'%s{opt}%s' % (negate or '', val or '')
164 return result
H A Dbuildman50 result = test_util.run_test_suites(
55 return (0 if result.wasSuccessful() else 1)
/u-boot/fs/btrfs/
H A Dsubvolume.c164 char *result; local
167 result = malloc(PATH_MAX);
168 if (!result)
171 ret = list_one_subvol(fs_info->fs_root, result);
177 PATH_MAX, result);
204 ret = list_one_subvol(root, result);
210 PATH_MAX, result);
221 free(result);
/u-boot/board/cobra5272/
H A Dflash.c135 ulong result; local
201 result = *addr;
211 && (result & 0xFFFF) & BIT_ERASE_DONE)
253 ulong result; local
262 result = *addr;
263 if ((result & data) != data)
290 result = *addr;
297 if (!chip1 && ((result & 0x80) == (data & 0x80)))
/u-boot/tools/binman/
H A Dbintool_test.py172 result = bintool.FETCHED if self.seq & 1 else bintool.FAIL
173 self.count[result] += 1
174 return result
282 result = btest.fetch_tool(bintool.FETCH_BIN, col, False)
283 self.assertEqual(bintool.FETCHED, result)
291 result = btest.fetch_tool(bintool.FETCH_BIN, col, False)
292 self.assertEqual(bintool.FAIL, result)
320 result = btool.fetch(method)
321 self.assertTrue(result is not False)
322 if result i
[all...]
/u-boot/arch/x86/cpu/intel_common/
H A Dmicrocode.c103 struct cpuid_result result; local
107 result = cpuid(1);
109 x86_model = (result.eax >> 4) & 0x0f;
110 x86_family = (result.eax >> 8) & 0x0f;
111 cpu->processor_signature = result.eax;
/u-boot/arch/arm/mach-stm32mp/cmd_stm32prog/
H A Dstm32prog.c345 int result = 0; local
364 result = -EINVAL;
376 return result;
382 int result = 0; local
385 result = strict_strtoul(p, 0, &value);
387 if (result || value > PHASE_LAST_USER) {
389 result = -EINVAL;
392 return result;
398 int result = 0; local
405 result
414 int result = 0; local
460 int result = 0; local
503 int result = 0; local
1472 int result = 0; local
1526 int result = 0; local
1598 int result = 0, ret; local
[all...]
/u-boot/arch/arm/mach-stm32mp/
H A Dcmd_stm32key.c161 int word, ret, result; local
165 result = 0;
169 result = ret;
175 result = ret;
186 return result;
278 int result; local
295 result = CMD_RET_SUCCESS;
300 result = CMD_RET_FAILURE;
304 result = CMD_RET_FAILURE;
306 return result;
[all...]
/u-boot/drivers/ddr/marvell/a38x/
H A Dmv_ddr4_training_calibration.c42 u8 result; local
45 result = pbs_element * lambda / PBS_VAL_FACTOR;
47 result = (pbs_max_val - pbs_element) * lambda / PBS_VAL_FACTOR;
49 return result;
54 u8 result; local
57 result = (pbs_max_val - pbs_element) * lambda / PBS_VAL_FACTOR;
59 result = pbs_element * lambda / PBS_VAL_FACTOR;
61 return result;
353 u32 *result[HWS_SEARCH_DIR_LIMIT]; local
430 * in case the result o
1099 u32 *result[MAX_BUS_NUM][HWS_SEARCH_DIR_LIMIT]; local
2040 u32 *result[MAX_BUS_NUM][HWS_SEARCH_DIR_LIMIT]; local
[all...]
/u-boot/arch/mips/include/asm/
H A Dbitops.h733 unsigned long result = offset & ~31UL; local
738 size -= result;
748 result += 32;
753 result += 32;
757 return result;
763 return result + ffz(tmp);
834 unsigned long result = offset & ~31UL; local
839 size -= result;
859 result += 32;
864 result
[all...]
/u-boot/include/linux/
H A Dbitmap.h106 unsigned long result = offset & ~(BITS_PER_LONG - 1); local
111 size -= result;
121 result += BITS_PER_LONG;
127 result += BITS_PER_LONG;
131 return result;
137 return result + size; /* Nope. */
139 return result + __ffs(tmp);
/u-boot/arch/arm/mach-mvebu/
H A Ddram.c57 u32 result = 0; local
63 result = readl(&base->sdram_bank[bank].win_bar);
64 return result;
93 u32 result = 0; local
98 result = 0xff000000 & readl(&base->sdram_bank[bank].win_sz);
99 result += 0x01000000;
100 return result;
/u-boot/drivers/usb/musb/
H A Dmusb_hcd.c120 int result = 1; local
123 while (result > 0) {
129 result = -1;
138 result = -2;
140 result = 0;
147 result = -2;
150 result = 0;
157 result = -2;
159 result = 0;
169 result
246 int result; local
274 int result; local
319 int result = 0; local
350 int result; local
369 int result; local
[all...]
/u-boot/env/
H A Dattr.c203 const char **result)
208 if (result)
209 *result = NULL;
212 if (result)
213 *result = searched;
247 if (result)
248 *result = match;
202 reverse_name_search(const char *searched, const char *search_for, const char **result) argument
/u-boot/tools/u_boot_pylib/
H A Dtools.py363 result = command.run_pipe([all_args], capture=True, capture_stderr=True,
365 if result.return_code:
368 (result.return_code,' '.join(all_args),
369 result.stderr or result.stdout))
370 return result
420 result = run_result(name, *args, **kwargs)
421 if result is not None:
422 return result.stdout
/u-boot/arch/x86/cpu/i386/
H A Dcpu.c254 struct cpuid_result result; local
255 result = cpuid(0x00000000);
258 name_as_ints[0] = result.ebx;
259 name_as_ints[1] = result.edx;
260 name_as_ints[2] = result.ecx;
262 return result.eax;
275 struct cpuid_result result; local
277 result = cpuid(0x00000000);
278 switch (result.ecx >> 24) {
/u-boot/arch/sh/include/asm/
H A Dbitops.h108 unsigned long result; local
114 : "=r" (result), "=r" (word)
117 return result;
/u-boot/arch/arm/lib/
H A Dlib1funcs.S25 .macro ARM_DIV_BODY dividend, divisor, result, curbit
30 clz \result, \dividend
31 sub \result, \curbit, \result
33 mov \divisor, \divisor, lsl \result
34 mov \curbit, \curbit, lsl \result
35 mov \result, #0
66 mov \result, #0
73 orrhs \result, \result, \curbi
[all...]
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-helper.c1179 int result = 0; local
1183 result = iface_node_ops[xi.node][xi.interface]->enumerate(xiface);
1185 return result;
1387 int result = 0; local
1391 result = iface_node_ops[xi.node][xi.interface]->enable(xiface);
1393 return result;
1455 int result = 0; local
1506 result |= cvmx_helper_interface_probe(xiface);
1512 result = cvmx_helper_pko3_init_global(node);
1514 result
1706 cvmx_helper_link_info_t result; local
1755 int result = -1; local
[all...]
H A Dcvmx-helper-agl.c77 int result; local
79 result = __cvmx_helper_agl_enumerate(interface);
80 if (result == 0)
151 return result;
199 * auto negotiation. The result of this function may not match
/u-boot/scripts/kconfig/
H A Dnconf.gui.c372 char *result = *resultp; local
378 *resultp = result = xrealloc(result, *result_len);
401 strncpy(result, init, *result_len);
424 result + cursor_position-cursor_form_win);
435 int len = strlen(result);
446 memmove(&result[cursor_position-1],
447 &result[cursor_position],
456 memmove(&result[cursor_position],
457 &result[cursor_positio
[all...]
/u-boot/include/
H A Dhash.h41 * @output: Checksum result (length depends on algorithm)
70 * hash_finish: Write the hash result to the given buffer
76 * @dest_buf: Pointer to the buffer for the result
77 * @size: Size of the buffer for the result
78 * @return 0 if ok, -ENOSPC if size of the result buffer is too small
160 * @result: Binary array of the parsed hash string
164 int hash_parse_string(const char *algo_name, const char *str, uint8_t *result);
/u-boot/scripts/
H A Dgen_compile_commands.py215 result = line_matcher.match(f.readline())
216 if result:
218 entry = process_line(directory, result.group('command_prefix'),
219 result.group('file_path'))

Completed in 262 milliseconds

1234567891011