Searched refs:chr (Results 1 – 15 of 15) sorted by relevance
/u-boot/test/py/tests/ |
A D | test_efi_selftest.py | 84 u_boot_console.run_command(cmd=chr(4), wait_for_echo=False, 92 u_boot_console.run_command(cmd=chr(8), wait_for_echo=False, 100 u_boot_console.run_command(cmd=chr(9), wait_for_echo=False, 116 u_boot_console.run_command(cmd=chr(27) + '[A', wait_for_echo=False, 154 u_boot_console.run_command(cmd=chr(4), wait_for_echo=False, 162 u_boot_console.run_command(cmd=chr(8), wait_for_echo=False, 170 u_boot_console.run_command(cmd=chr(9), wait_for_echo=False, 186 u_boot_console.run_command(cmd=chr(27) + '[A', wait_for_echo=False, 209 u_boot_console.run_command(cmd=chr(24), wait_for_echo=False, send_nl=False,
|
A D | vboot_evil.py | 36 output += chr(dt_strings[off])
|
/u-boot/tools/binman/ |
A D | fdt_test.py | 65 self.assertEquals(chr(8), prop.value) 72 self.assertEquals([chr(1), '#', '4'], prop.value)
|
/u-boot/drivers/video/ |
A D | sandbox_osd.c | 25 inline u16 make_memval(u8 chr, u8 color) in make_memval() argument 27 return chr * 0x100 + color; in make_memval()
|
/u-boot/scripts/kconfig/ |
A D | zconf.l | 72 static void warn_ignored_character(char chr) in warn_ignored_character() argument 76 zconf_curname(), zconf_lineno(), chr); in warn_ignored_character()
|
/u-boot/tools/dtoc/ |
A D | fdt.py | 90 return Type.BYTE, chr(data[0]) 92 return Type.BYTE, [chr(ch) for ch in list(data)] 155 new_value += [chr(by) for by in val] 157 new_value = [chr(by) for by in self.value] 177 return chr(0)
|
A D | test_fdt | 49 return prop, [chr(x) for x in data] 289 self.assertEqual(chr(0), fdt.Prop.GetEmpty(Type.BYTE)) 406 val = '123' + chr(0) + '456'
|
A D | test_fdt.py | 49 return prop, [chr(x) for x in data] 289 self.assertEqual(chr(0), fdt.Prop.GetEmpty(Type.BYTE)) 406 val = '123' + chr(0) + '456'
|
/u-boot/common/ |
A D | hash.c | 377 char chr[3]; in hash_parse_string() local 379 strncpy(chr, &str[i * 2], 2); in hash_parse_string() 380 result[i] = simple_strtoul(chr, NULL, 16); in hash_parse_string()
|
/u-boot/tools/ |
A D | efivar.py | 110 name += chr(buf[i]) 111 return ''.join([chr(x) for x in name.encode('utf_16_le') if x]), i + 2 375 toChr = lambda c: chr(c) if 32 <= c < 127 else '.'
|
A D | zynqmpbif.c | 813 #define NEXT_CHAR(str, chr) ({ \ argument 814 char *_n = strchr(str, chr); \
|
/u-boot/tools/buildman/ |
A D | toolchain.py | 537 print(chr(8) * (len(status) + 1), '\r', end=' ') 544 status = status + chr(8) * (len(status) + 1)
|
/u-boot/test/py/ |
A D | u_boot_console_base.py | 253 self.run_command(chr(3), wait_for_echo=False, send_nl=False)
|
A D | multiplexed_log.py | 339 data = data.replace(chr(13), '')
|
/u-boot/scripts/dtc/pylibfdt/ |
A D | libfdt.i_shipped | 563 if chr(0) in name:
|
Completed in 18 milliseconds