Home
last modified time | relevance | path

Searched refs:str2 (Results 1 – 10 of 10) sorted by relevance

/u-boot-v2022.01-rc1/test/
A Dstr_ut.c36 strcpy(out, str2); in str_upper()
45 strcpy(out, str2); in str_upper()
103 ut_assertok(run_strtoul(uts, str2, 0, 1099, 4, upper)); in str_simple_strtoul()
108 ut_assertok(run_strtoul(uts, str2, 2, 2, 2, upper)); in str_simple_strtoul()
112 ut_asserteq(1099, simple_strtoul(str2, NULL, 0)); in str_simple_strtoul()
171 ut_assertok(run_strtoull(uts, str2, 2, 2, 2, upper)); in str_simple_strtoull()
175 ut_asserteq(1099, simple_strtoull(str2, NULL, 0)); in str_simple_strtoull()
186 ut_asserteq(0x1099ab, hextoul(str2, &endp)); in str_hextoul()
187 ut_asserteq(6, endp - str2); in str_hextoul()
198 ut_asserteq(1099, dectoul(str2, &endp)); in str_dectoul()
[all …]
/u-boot-v2022.01-rc1/arch/sandbox/cpu/
A Dstart.c33 const char *str1, *str2; in h_compare_opt() local
45 str2 = *flag2 ? flag2 : opt2->flag; in h_compare_opt()
51 if (isalpha(*str1) && isalpha(*str2) && in h_compare_opt()
52 tolower(*str1) == tolower(*str2)) in h_compare_opt()
53 return isupper(*str1) - isupper(*str2); in h_compare_opt()
55 return strcasecmp(str1, str2); in h_compare_opt()
/u-boot-v2022.01-rc1/test/cmd/
A Dmem_search.c235 static const char str2[] = "hellothere"; in mem_test_ms_s() local
242 strcpy(buf + 0xa1, str2); in mem_test_ms_s()
/u-boot-v2022.01-rc1/lib/libavb/
A Davb_util.h194 const char* str2,
A Davb_util.c158 const char* str2, in avb_str_concat() argument
173 avb_memcpy(buf + str1_len, str2, str2_len); in avb_str_concat()
/u-boot-v2022.01-rc1/scripts/kconfig/
A Dconfdata.c666 char *str2; in conf_write_symbol() local
674 str2 = xmalloc(strlen(str) + 3); in conf_write_symbol()
675 sprintf(str2, "\"%s\"", str); in conf_write_symbol()
676 printer->print_symbol(fp, sym, str2, printer_arg); in conf_write_symbol()
677 free((void *)str2); in conf_write_symbol()
A Dexpr.c1029 const char *str1, *str2; in expr_calc_value() local
1067 str2 = sym_get_string_value(e->right.sym); in expr_calc_value()
1071 k2 = expr_parse_string(str2, e->right.sym->type, &rval); in expr_calc_value()
1075 res = strcmp(str1, str2); in expr_calc_value()
1078 printf("Cannot compare \"%s\" and \"%s\"\n", str1, str2); in expr_calc_value()
1081 res = strcmp(str1, str2); in expr_calc_value()
A Dqconf.cc1214 QString str2 = print_filter(str); in expr_print_help() local
1218 *text += str2; in expr_print_help()
1221 *text += str2; in expr_print_help()
/u-boot-v2022.01-rc1/drivers/mtd/
A Dcfi_flash.c448 char str2[20]; in flash_isequal() local
451 print_longlong(str2, cword.w64); in flash_isequal()
452 debug("is= %s %s\n", str1, str2); in flash_isequal()
/u-boot-v2022.01-rc1/scripts/
A Dcheckpatch.pl640 my ($str1, $str2) = @_;
642 $str2 = lc($str2);
644 $str2 =~ s/-//g;
646 my $len2 = length($str2);
655 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {

Completed in 26 milliseconds