Home
last modified time | relevance | path

Searched refs:str (Results 1 – 25 of 1426) sorted by relevance

12345678910>>...58

/openbmc/u-boot/board/freescale/mx6sllevk/
H A Dplugin.S12 str r1, [r0, #0x550]
14 str r1, [r0, #0x534]
16 str r1, [r0, #0x2AC]
17 str r1, [r0, #0x548]
18 str r1, [r0, #0x52C]
20 str r1, [r0, #0x530]
22 str r1, [r0, #0x2B0]
23 str r1, [r0, #0x2B4]
24 str r1, [r0, #0x2B8]
25 str r1, [r0, #0x2BC]
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-cutils.c51 const char *str = ""; in test_parse_uint_empty() local
54 r = parse_uint(str, &endptr, 0, &i); in test_parse_uint_empty()
58 g_assert_true(endptr == str); in test_parse_uint_empty()
65 const char *str = " \t "; in test_parse_uint_whitespace() local
68 r = parse_uint(str, &endptr, 0, &i); in test_parse_uint_whitespace()
72 g_assert_true(endptr == str); in test_parse_uint_whitespace()
80 const char *str = " \t xxx"; in test_parse_uint_invalid() local
83 r = parse_uint(str, &endptr, 0, &i); in test_parse_uint_invalid()
87 g_assert_true(endptr == str); in test_parse_uint_invalid()
95 const char *str in test_parse_uint_trailing() local
109 const char *str = "123"; test_parse_uint_correct() local
123 const char *str = "0123"; test_parse_uint_octal() local
137 const char *str = "0123"; test_parse_uint_decimal() local
151 char *str = g_strdup_printf("%llu", (unsigned long long)LLONG_MAX + 1); test_parse_uint_llong_max() local
167 char *str = g_strdup_printf("%llu", ULLONG_MAX); test_parse_uint_max() local
183 const char *str; test_parse_uint_overflow() local
215 const char *str; test_parse_uint_negative() local
239 const char *str = " -0"; test_parse_uint_negzero() local
252 const char *str = "123xxx"; test_parse_uint_full_trailing() local
264 const char *str = "123"; test_parse_uint_full_correct() local
277 const char *str = "-2junk"; test_parse_uint_full_erange_junk() local
289 const char *str = NULL; test_parse_uint_full_null() local
300 const char *str = "12345 foo"; test_qemu_strtoi_correct() local
329 const char *str = ""; test_qemu_strtoi_empty() local
344 const char *str = " \t "; test_qemu_strtoi_whitespace() local
359 const char *str = " xxxx \t abc"; test_qemu_strtoi_invalid() local
374 const char *str = "123xxx"; test_qemu_strtoi_trailing() local
389 const char *str = "0123"; test_qemu_strtoi_octal() local
412 const char *str = "0123"; test_qemu_strtoi_decimal() local
436 const char *str = "0123"; test_qemu_strtoi_hex() local
469 char *str = g_strdup_printf("%d", INT_MAX); test_qemu_strtoi_max() local
485 const char *str; test_qemu_strtoi_overflow() local
533 char *str = g_strdup_printf("%d", INT_MIN); test_qemu_strtoi_min() local
549 const char *str; test_qemu_strtoi_underflow() local
605 const char *str; test_qemu_strtoi_negative() local
629 const char *str = " -0"; test_qemu_strtoi_negzero() local
644 const char *str = "123"; test_qemu_strtoi_full_correct() local
670 const char *str = ""; test_qemu_strtoi_full_empty() local
682 const char *str = " \t -321"; test_qemu_strtoi_full_negative() local
694 const char *str = " -0"; test_qemu_strtoi_full_negzero() local
706 const char *str = "123xxx"; test_qemu_strtoi_full_trailing() local
718 char *str = g_strdup_printf("%d", INT_MAX); test_qemu_strtoi_full_max() local
732 const char *str = "-9999999999junk"; test_qemu_strtoi_full_erange_junk() local
744 const char *str = "12345 foo"; test_qemu_strtoui_correct() local
773 const char *str = ""; test_qemu_strtoui_empty() local
788 const char *str = " \t "; test_qemu_strtoui_whitespace() local
803 const char *str = " xxxx \t abc"; test_qemu_strtoui_invalid() local
818 const char *str = "123xxx"; test_qemu_strtoui_trailing() local
833 const char *str = "0123"; test_qemu_strtoui_octal() local
856 const char *str = "0123"; test_qemu_strtoui_decimal() local
880 const char *str = "0123"; test_qemu_strtoui_hex() local
914 const char *str = "-4294967295"; /* 1 mod 2^32 */ test_qemu_strtoui_wrap() local
929 char *str = g_strdup_printf("%u", UINT_MAX); test_qemu_strtoui_max() local
945 const char *str; test_qemu_strtoui_overflow() local
1009 const char *str; test_qemu_strtoui_underflow() local
1057 const char *str = " \t -321"; test_qemu_strtoui_negative() local
1072 const char *str = " -0"; test_qemu_strtoui_negzero() local
1087 const char *str = "123"; test_qemu_strtoui_full_correct() local
1110 const char *str = ""; test_qemu_strtoui_full_empty() local
1122 const char *str = " \t -321"; test_qemu_strtoui_full_negative() local
1133 const char *str = " -0"; test_qemu_strtoui_full_negzero() local
1144 const char *str = "123xxx"; test_qemu_strtoui_full_trailing() local
1156 char *str = g_strdup_printf("%u", UINT_MAX); test_qemu_strtoui_full_max() local
1170 const char *str = "-9999999999junk"; test_qemu_strtoui_full_erange_junk() local
1182 const char *str = "12345 foo"; test_qemu_strtol_correct() local
1211 const char *str = ""; test_qemu_strtol_empty() local
1226 const char *str = " \t "; test_qemu_strtol_whitespace() local
1241 const char *str = " xxxx \t abc"; test_qemu_strtol_invalid() local
1256 const char *str = "123xxx"; test_qemu_strtol_trailing() local
1271 const char *str = "0123"; test_qemu_strtol_octal() local
1294 const char *str = "0123"; test_qemu_strtol_decimal() local
1318 const char *str = "0123"; test_qemu_strtol_hex() local
1351 char *str = g_strdup_printf("%ld", LONG_MAX); test_qemu_strtol_max() local
1367 const char *str; test_qemu_strtol_overflow() local
1410 char *str = g_strdup_printf("%ld", LONG_MIN); test_qemu_strtol_min() local
1426 const char *str; test_qemu_strtol_underflow() local
1469 const char *str = " \t -321"; test_qemu_strtol_negative() local
1484 const char *str = " -0"; test_qemu_strtol_negzero() local
1499 const char *str = "123"; test_qemu_strtol_full_correct() local
1525 const char *str = ""; test_qemu_strtol_full_empty() local
1537 const char *str = " \t -321"; test_qemu_strtol_full_negative() local
1549 const char *str = " -0"; test_qemu_strtol_full_negzero() local
1561 const char *str = "123xxx"; test_qemu_strtol_full_trailing() local
1573 char *str = g_strdup_printf("%ld", LONG_MAX); test_qemu_strtol_full_max() local
1587 const char *str = "-99999999999999999999junk"; test_qemu_strtol_full_erange_junk() local
1599 const char *str = "12345 foo"; test_qemu_strtoul_correct() local
1628 const char *str = ""; test_qemu_strtoul_empty() local
1643 const char *str = " \t "; test_qemu_strtoul_whitespace() local
1658 const char *str = " xxxx \t abc"; test_qemu_strtoul_invalid() local
1673 const char *str = "123xxx"; test_qemu_strtoul_trailing() local
1688 const char *str = "0123"; test_qemu_strtoul_octal() local
1711 const char *str = "0123"; test_qemu_strtoul_decimal() local
1735 const char *str = "0123"; test_qemu_strtoul_hex() local
1768 const char *str; test_qemu_strtoul_wrap() local
1785 char *str = g_strdup_printf("%lu", ULONG_MAX); test_qemu_strtoul_max() local
1801 const char *str; test_qemu_strtoul_overflow() local
1844 const char *str; test_qemu_strtoul_underflow() local
1887 const char *str = " \t -321"; test_qemu_strtoul_negative() local
1902 const char *str = " -0"; test_qemu_strtoul_negzero() local
1917 const char *str = "123"; test_qemu_strtoul_full_correct() local
1940 const char *str = ""; test_qemu_strtoul_full_empty() local
1952 const char *str = " \t -321"; test_qemu_strtoul_full_negative() local
1963 const char *str = " -0"; test_qemu_strtoul_full_negzero() local
1974 const char *str = "123xxx"; test_qemu_strtoul_full_trailing() local
1986 char *str = g_strdup_printf("%lu", ULONG_MAX); test_qemu_strtoul_full_max() local
2000 const char *str = "-99999999999999999999junk"; test_qemu_strtoul_full_erange_junk() local
2012 const char *str = "12345 foo"; test_qemu_strtoi64_correct() local
2041 const char *str = ""; test_qemu_strtoi64_empty() local
2056 const char *str = " \t "; test_qemu_strtoi64_whitespace() local
2071 const char *str = " xxxx \t abc"; test_qemu_strtoi64_invalid() local
2086 const char *str = "123xxx"; test_qemu_strtoi64_trailing() local
2101 const char *str = "0123"; test_qemu_strtoi64_octal() local
2124 const char *str = "0123"; test_qemu_strtoi64_decimal() local
2148 const char *str = "0123"; test_qemu_strtoi64_hex() local
2181 char *str = g_strdup_printf("%lld", LLONG_MAX); test_qemu_strtoi64_max() local
2197 const char *str; test_qemu_strtoi64_overflow() local
2229 char *str = g_strdup_printf("%lld", LLONG_MIN); test_qemu_strtoi64_min() local
2245 const char *str; test_qemu_strtoi64_underflow() local
2277 const char *str = " \t -321"; test_qemu_strtoi64_negative() local
2292 const char *str = " -0"; test_qemu_strtoi64_negzero() local
2307 const char *str = "123"; test_qemu_strtoi64_full_correct() local
2330 const char *str = ""; test_qemu_strtoi64_full_empty() local
2342 const char *str = " \t -321"; test_qemu_strtoi64_full_negative() local
2354 const char *str = " -0"; test_qemu_strtoi64_full_negzero() local
2366 const char *str = "123xxx"; test_qemu_strtoi64_full_trailing() local
2379 char *str = g_strdup_printf("%lld", LLONG_MAX); test_qemu_strtoi64_full_max() local
2393 const char *str = "-99999999999999999999junk"; test_qemu_strtoi64_full_erange_junk() local
2405 const char *str = "12345 foo"; test_qemu_strtou64_correct() local
2434 const char *str = ""; test_qemu_strtou64_empty() local
2449 const char *str = " \t "; test_qemu_strtou64_whitespace() local
2464 const char *str = " xxxx \t abc"; test_qemu_strtou64_invalid() local
2479 const char *str = "123xxx"; test_qemu_strtou64_trailing() local
2494 const char *str = "0123"; test_qemu_strtou64_octal() local
2517 const char *str = "0123"; test_qemu_strtou64_decimal() local
2541 const char *str = "0123"; test_qemu_strtou64_hex() local
2574 const char *str = "-18446744073709551615"; /* 1 mod 2^64 */ test_qemu_strtou64_wrap() local
2589 char *str = g_strdup_printf("%llu", ULLONG_MAX); test_qemu_strtou64_max() local
2605 const char *str; test_qemu_strtou64_overflow() local
2637 const char *str; test_qemu_strtou64_underflow() local
2669 const char *str = " \t -321"; test_qemu_strtou64_negative() local
2684 const char *str = " -0"; test_qemu_strtou64_negzero() local
2699 const char *str = "18446744073709551614"; test_qemu_strtou64_full_correct() local
2722 const char *str = ""; test_qemu_strtou64_full_empty() local
2734 const char *str = " \t -321"; test_qemu_strtou64_full_negative() local
2746 const char *str = " -0"; test_qemu_strtou64_full_negzero() local
2758 const char *str = "18446744073709551614xxxxxx"; test_qemu_strtou64_full_trailing() local
2770 char *str = g_strdup_printf("%lld", ULLONG_MAX); test_qemu_strtou64_full_max() local
2784 const char *str = "-99999999999999999999junk"; test_qemu_strtou64_full_erange_junk() local
2796 const char *str; test_qemu_strtod_simple() local
2850 const char *str; test_qemu_strtod_einval() local
2888 const char *str; test_qemu_strtod_erange() local
2924 const char *str; test_qemu_strtod_nonfinite() local
2960 const char *str; test_qemu_strtod_trailing() local
3013 const char *str; test_qemu_strtod_erange_junk() local
3040 const char *str; test_qemu_strtod_finite_simple() local
3094 const char *str; test_qemu_strtod_finite_einval() local
3132 const char *str; test_qemu_strtod_finite_erange() local
3170 const char *str; test_qemu_strtod_finite_nonfinite() local
3207 const char *str; test_qemu_strtod_finite_trailing() local
3263 const char *str; test_qemu_strtod_finite_erange_junk() local
3289 do_strtosz_full(const char * str,qemu_strtosz_fn fn,int exp_ptr_ret,uint64_t exp_ptr_val,size_t exp_ptr_offset,int exp_null_ret,uint64_t exp_null_val) do_strtosz_full() argument
3314 do_strtosz(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz() argument
3321 do_strtosz_MiB(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz_MiB() argument
3328 do_strtosz_metric(const char * str,int exp_ret,uint64_t exp_val,size_t exp_offset) do_strtosz_metric() argument
3561 char *str; test_freq_to_str() local
3578 char *str; test_size_to_str() local
[all...]
H A Dtest-string-output-visitor.c21 char *str; member
29 data->ov = string_output_visitor_new(human, &data->str); in visitor_output_setup_internal()
50 g_free(data->str); in visitor_output_teardown()
51 data->str = NULL; in visitor_output_teardown()
56 visit_complete(data->ov, &data->str); in visitor_get()
57 g_assert(data->str); in visitor_get()
58 return data->str; in visitor_get()
73 char *str; in test_visitor_out_int() local
77 str = visitor_get(data); in test_visitor_out_int()
79 g_assert_cmpstr(str, ==, "42 (0x2a)"); in test_visitor_out_int()
[all …]
/openbmc/u-boot/board/freescale/mx6ullevk/
H A Dplugin.S12 str r1, [r0, #0x4B4]
14 str r1, [r0, #0x4AC]
16 str r1, [r0, #0x27C]
18 str r1, [r0, #0x250]
19 str r1, [r0, #0x24C]
20 str r1, [r0, #0x490]
22 str r1, [r0, #0x288]
25 str r1, [r0, #0x270]
28 str r1, [r0, #0x260]
29 str r1, [r0, #0x264]
[all …]
/openbmc/u-boot/board/freescale/mx7ulp_evk/
H A Dplugin.S11 str r3, [r2, #0xdc]
15 str r3, [r2, #0x40]
17 str r3, [r2, #0x500]
19 str r3, [r2, #0x50c]
21 str r3, [r2, #0x508]
23 str r3, [r2, #0x510]
25 str r3, [r2, #0x514]
27 str r3, [r2, #0x500]
37 str r3, [r2, #0x50c]
47 str r3, [r2, #0x30]
[all …]
/openbmc/qemu/scripts/qapi/
H A Dcommon.py30 def camel_to_upper(value: str) -> str: argument
67 def c_enum_const(type_name: str, argument
68 const_name: str, argument
69 prefix: Optional[str] = None) -> str: argument
82 def c_name(name: str, protect: bool = True) -> str: argument
141 def __repr__(self) -> str:
144 def __str__(self) -> str:
162 def cgen(code: str, **kwds: object) -> str: argument
169 pfx = str(indent)
175 def mcgen(code: str, **kwds: object) -> str: argument
[all …]
H A Dgen.py42 def gen_features(features: Sequence[QAPISchemaFeature]) -> str:
49 def __init__(self, fname: str):
54 def preamble_add(self, text: str) -> None:
57 def add(self, text: str) -> None:
60 def get_content(self) -> str:
63 def _top(self) -> str:
67 def _bottom(self) -> str:
71 def write(self, output_dir: str) -> None:
94 def _wrap_ifcond(ifcond: QAPISchemaIfCond, before: str, after: str)
51 __init__(self, fname: str) global() argument
56 preamble_add(self, text: str) global() argument
59 add(self, text: str) global() argument
73 write(self, output_dir: str) global() argument
96 _wrap_ifcond(ifcond: QAPISchemaIfCond, before: str, after: str) global() argument
114 build_params(arg_type: Optional[QAPISchemaObjectType], boxed: bool, extra: Optional[str] = None) global() argument
137 __init__(self, fname: str) global() argument
159 __init__(self, fname: str, blurb: str, pydoc: str) global() argument
237 __init__(self, prefix: str, what: str, blurb: str, pydoc: str) global() argument
238 __init__(self, prefix: str, what: str, blurb: str, pydoc: str) global() argument
239 __init__(self, prefix: str, what: str, blurb: str, pydoc: str) global() argument
240 __init__(self, prefix: str, what: str, blurb: str, pydoc: str) global() argument
248 write(self, output_dir: str) global() argument
255 __init__(self, prefix: str, what: str, user_blurb: str, builtin_blurb: Optional[str], pydoc: str, gen_tracing: bool = False) global() argument
256 __init__(self, prefix: str, what: str, user_blurb: str, builtin_blurb: Optional[str], pydoc: str, gen_tracing: bool = False) global() argument
257 __init__(self, prefix: str, what: str, user_blurb: str, builtin_blurb: Optional[str], pydoc: str, gen_tracing: bool = False) global() argument
258 __init__(self, prefix: str, what: str, user_blurb: str, builtin_blurb: Optional[str], pydoc: str, gen_tracing: bool = False) global() argument
259 __init__(self, prefix: str, what: str, user_blurb: str, builtin_blurb: Optional[str], pydoc: str, gen_tracing: bool = False) global() argument
291 _module_dirname(name: str) global() argument
296 _module_basename(self, what: str, name: str) global() argument
308 _module_filename(self, what: str, name: str) global() argument
312 _add_module(self, name: str, blurb: str) global() argument
328 _temp_module(self, name: str) global() argument
334 write(self, output_dir: str, opt_builtins: bool = False) global() argument
346 _begin_user_module(self, name: str) global() argument
349 visit_module(self, name: str) global() argument
363 visit_include(self, name: str, info: Optional[QAPISourceInfo]) global() argument
[all...]
/openbmc/u-boot/arch/arm/mach-imx/mx5/
H A Dlowlevel_init.S64 str r1, [r0, #0x0]
65 str r1, [r0, #0x4]
67 str r1, [r0, #0x0]
68 str r1, [r0, #0x4]
85 str r1, [r0, #0x40]
87 str r4, [r0, #0x44]
90 str r1, [r0, #0x9C]
93 str r1, [r0, #0x48]
110 str r1, [r0, #PLL_DP_CTL] /* Set DPLL ON (set UPEN bit): BRMO=1 */
112 str r1, [r0, #PLL_DP_CONFIG] /* Enable auto-restart AREN bit */
[all …]
/openbmc/telemetry/src/utils/
H A Dtstring.hpp13 static std::string str() in str() function
21 static std::string str() in str() function
29 static std::string str() in str() function
37 static std::string str() in str() function
45 static std::string str() in str() function
53 static std::string str() in str() function
61 static std::string str() in str() function
69 static std::string str() in str() function
77 static std::string str() in str() function
85 static std::string str() in str() function
[all …]
/openbmc/u-boot/board/samsung/smdkc100/
H A Dlowlevel_init.S30 str r5, [r0]
35 str r1, [r0]
44 str r3, [r0, #0x14] @INTENCLEAR
45 str r3, [r1, #0x14] @INTENCLEAR
46 str r3, [r2, #0x14] @INTENCLEAR
49 str r5, [r0, #0xc] @INTSELECT
50 str r5, [r1, #0xc] @INTSELECT
51 str r5, [r2, #0xc] @INTSELECT
54 str r5, [r0, #0xf00] @INTADDRESS
55 str r5, [r1, #0xf00] @INTADDRESS
[all …]
/openbmc/openbmc/meta-google/recipes-google/networking/network-sh/
H A Dtest.sh57 str="$(mac_to_eui48 '12:34:56:78:90:af')" || fail
58 expect_streq "$str" '::1234:5678:90af'
62 str="$(mac_to_eui64 '12:34:56:78:90:af')" || fail
63 expect_streq "$str" '::1034:56ff:fe78:90af'
67 str="$(mac_to_eui64 '12:34:56:78:90:af' '0x11' '0x22')" || fail
68 expect_streq "$str" '::1034:5611:2278:90af'
128 str="$(ip_bytes_to_str in)" || fail
129 expect_streq "$str" '10.0.255.1'
134 str="$(ip_bytes_to_str in)" || fail
135 expect_streq "$str" '
[all...]
/openbmc/u-boot/arch/arm/mach-aspeed/ast2500/
H A Dplatform.S255 str r2, [r0]
259 str r1, [r0]
264 str r1, [r0]
280 str r1, [r0]
284 str r1, [r0]
290 str r1, [r0]
293 str r1, [r0]
300 str r1, [r0]
310 str r1, [r0]
327 str r1, [r0]
[all …]
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp21 std::string str; member
30 string_wrapper(const std::string& str_in) : str(str_in) {} in string_wrapper()
31 string_wrapper(std::string&& str_in) : str(std::move(str_in)) {} in string_wrapper()
35 return const_cast<const string_wrapper*>(this)->str; in operator const std::string&()
39 return std::move(str); in operator std::string&&()
44 return str == r.str; in operator ==()
48 return str != r.str; in operator !=()
52 return str < r.str; in operator <()
56 return str == r; in operator ==()
60 return str != r; in operator !=()
[all …]
/openbmc/u-boot/test/
H A Dprint_ut.c22 char str[10]; in efi_ut_print() local
42 snprintf(str, sizeof(str), "_%pD_", buf); in efi_ut_print()
43 assert(!strcmp("_/SD(3)_", str)); in efi_ut_print()
46 snprintf(str, sizeof(str), "_%pD_", NULL); in efi_ut_print()
47 assert(!strcmp("_<NULL>_", str)); in efi_ut_print()
56 char str[10], *s; in do_ut_print() local
61 snprintf(str, sizeof(str), "testing"); in do_ut_print()
62 assert(!strcmp("testing", str)); in do_ut_print()
64 snprintf(str, sizeof(str), "testing but too long"); in do_ut_print()
65 assert(!strcmp("testing b", str)); in do_ut_print()
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-mx35/
H A Dlowlevel_macro.S25 str r1, [r0, #AIPS_MPR_0_7]
26 str r1, [r0, #AIPS_MPR_8_15]
28 str r1, [r2, #AIPS_MPR_0_7]
29 str r1, [r2, #AIPS_MPR_8_15]
33 str r1, [r0, #AIPS_OPACR_0_7]
34 str r1, [r0, #AIPS_OPACR_8_15]
35 str r1, [r0, #AIPS_OPACR_16_23]
36 str r1, [r0, #AIPS_OPACR_24_31]
37 str r1, [r0, #AIPS_OPACR_32_39]
38 str r1, [r2, #AIPS_OPACR_0_7]
[all …]
/openbmc/u-boot/board/samsung/goni/
H A Dlowlevel_init.S58 str r1, [r0, #0x0] @ GPIO_CON_OFFSET
62 str r1, [r0, #0x4] @ GPIO_DAT_OFFSET
89 str r1, [r0]
94 str r1, [r0]
99 str r1, [r0]
104 str r1, [r0]
109 str r1, [r0]
114 str r1, [r0]
119 str r1, [r0]
124 str r1, [r0]
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-mx25/
H A Dmacro.h31 str r1, [r0, #AIPS_MPR_0_7]
32 str r1, [r0, #AIPS_MPR_8_15]
34 str r1, [r2, #AIPS_MPR_0_7]
35 str r1, [r2, #AIPS_MPR_8_15]
49 str r1, [r0, #MAX_MPR0] /* for S0 */
50 str r1, [r0, #MAX_MPR1] /* for S1 */
51 str r1, [r0, #MAX_MPR2] /* for S2 */
52 str r1, [r0, #MAX_MPR3] /* for S3 */
53 str r1, [r0, #MAX_MPR4] /* for S4 */
55 str r1, [r0, #MAX_SGPCR0] /* for S0 */
[all …]
/openbmc/openbmc-build-scripts/tools/
H A Dconfig-clang-tidy124 def merge(repo: str, ref: str) -> str: argument
128 result: Dict[str, bool] = {}
139 def enable(repo: str, check: str) -> str: argument
145 def disable(repo: str, check: str, drop: bool) -> str: argument
154 def _split(s: str) -> Dict[str, bool]: argument
155 result: Dict[str, bool] = {}
173 def _join(data: Dict[str, bool]) -> str: argument
185 repo: List[Dict[str, str]], ref: List[Dict[str, str]] argument
186 ) -> List[Dict[str, str]]:
197 repo: List[Dict[str, str]], option: str, drop: bool argument
[all …]
/openbmc/ipmitool/lib/
H A Dhelper.c79 static char str[2049]; in buf2str() local
85 memset(str, 0, 2049); in buf2str()
88 sprintf(str+i+i, "%2.2x", buf[i]); in buf2str()
90 str[len*2] = '\0'; in buf2str()
92 return (const char *)str; in buf2str()
119 for (i = 0; vs[i].str != NULL; i++) { in val2str()
121 return vs[i].str; in val2str()
136 for (i = 0; vs[i].oem != 0xffffff && vs[i].str != NULL; i++) { in oemval2str()
140 return vs[i].str; in oemval2str()
158 int str2double(const char * str, double * double_ptr) in str2double() argument
[all …]
/openbmc/entity-manager/test/
H A Dtest_utils.cpp101 std::string str = "hello world, world!"; in TEST() local
102 replaceAll(str, "world", "earth"); in TEST()
103 EXPECT_EQ(str, "hello earth, earth!"); in TEST()
108 std::string str = "hello world"; in TEST() local
109 replaceAll(str, "xxx", "abc"); in TEST()
110 EXPECT_EQ(str, "hello world"); in TEST()
115 std::string str = "apple apple"; in TEST() local
116 replaceAll(str, "apple", ""); in TEST()
117 EXPECT_EQ(str, " "); in TEST()
122 std::string str = "abc"; in TEST() local
[all …]
/openbmc/u-boot/arch/arm/mach-orion5x/
H A Dlowlevel_init.S81 str r2, [r3, #0x80]
88 str r0, [r3, #0x480]
95 str r0, [r3, #0xd00]
102 str r0, [r3, #0x504]
103 str r0, [r3, #0x50C]
104 str r0, [r3, #0x514]
105 str r0, [r3, #0x51C]
109 str r0, [r3, #0x400]
113 str r0, [r3, #0x404]
117 str r0, [r3, #0x410]
[all …]
/openbmc/qemu/docs/sphinx/
H A Ddbusdomain.py35 class DBusDescription(ObjectDescription[str]):
45 def get_index_text(self, modname: str, name: str) -> str: argument
50 self, name: str, sig: str, signode: desc_signature argument
76 def get_index_text(self, ifacename: str, name: str) -> str: argument
85 def handle_signature(self, sig: str, signode: desc_signature) -> str: argument
135 def get_index_text(self, ifacename: str, name: str) -> str: argument
138 def handle_signature(self, sig: str, signode: desc_signature) -> str: argument
186 def get_index_text(self, ifacename: str, name: str) -> str: argument
208 def get_index_text(self, ifacename: str, name: str) -> str: argument
236 def handle_signature(self, sig: str, signode: desc_signature) -> str: argument
[all …]
/openbmc/qemu/python/qemu/qmp/
H A Dmodels.py29 def __init__(self, raw: Mapping[str, Any]): argument
32 def _check_key(self, key: str) -> None: argument
36 def _check_value(self, key: str, type_: type, typestr: str) -> None: argument
43 def _check_member(self, key: str, type_: type, typestr: str) -> None: argument
48 def _name(self) -> str:
51 def __repr__(self) -> str:
63 def __init__(self, raw: Mapping[str, Any]): argument
71 def _asdict(self) -> Dict[str, objec
91 __init__(self, raw: Mapping[str, Any]) global() argument
113 __init__(self, raw: Mapping[str, Any]) global() argument
135 __init__(self, raw: Mapping[str, Any]) global() argument
[all...]
/openbmc/u-boot/arch/arm/mach-davinci/
H A Dlowlevel_init.S39 str r1, [r0]
41 str r1, [r0]
52 str r7, [r6]
58 str r7, [r6]
78 str r10, [r6]
85 str r10, [r6]
89 str r10, [r6]
93 str r10, [r6]
107 str r8, [r6]
112 str r8, [r6]
[all …]
/openbmc/qemu/scripts/
H A Dcompare-machine-types.py61 def __init__(self, vm: QEMUMachine, name: str, abstract: bool) -> None: argument
68 def get_prop(self, driver: str, prop: str) -> str: argument
89 def __init__(self, vm: QEMUMachine, name: str) -> None: argument
108 self.cached: Dict[str, List[Dict[str, Any]]] = {}
110 def get_prop(self, driver: str, prop_name: str) -> str: argument
116 return str(prop.get('default-value', 'No default value'))
124 self.cached: Dict[str, Dict[str, Any]] = {}
126 def get_prop(self, driver: str, prop_name: str) -> str: argument
136 return str(self.cached[name].get(prop_name, 'Unknown property'))
144 self.cached: Dict[str, List[Dict[str, Any]]] = {}
[all …]

12345678910>>...58