Searched refs:str2 (Results 1 – 9 of 9) sorted by relevance
/u-boot/test/ |
A D | str_ut.c | 16 static const char str2[] = "1099abNo, don't bother apologising."; variable 32 strcpy(out, str2); in str_upper() 41 strcpy(out, str2); in str_upper() 85 ut_assertok(run_strtoul(uts, str2, 10, 1099, 4, upper)); in str_simple_strtoul() 86 ut_assertok(run_strtoul(uts, str2, 16, 0x1099ab, 6, upper)); in str_simple_strtoul() 93 ut_assertok(run_strtoul(uts, str2, 0, 1099, 4, upper)); in str_simple_strtoul() 98 ut_assertok(run_strtoul(uts, str2, 2, 2, 2, upper)); in str_simple_strtoul() 102 ut_asserteq(1099, simple_strtoul(str2, NULL, 0)); in str_simple_strtoul()
|
/u-boot/arch/sandbox/cpu/ |
A D | start.c | 33 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/test/cmd/ |
A D | mem_search.c | 235 static const char str2[] = "hellothere"; in mem_test_ms_s() local 242 strcpy(buf + 0xa1, str2); in mem_test_ms_s()
|
/u-boot/lib/libavb/ |
A D | avb_util.h | 194 const char* str2,
|
A D | avb_util.c | 158 const char* str2, in avb_str_concat() argument 173 avb_memcpy(buf + str1_len, str2, str2_len); in avb_str_concat()
|
/u-boot/scripts/kconfig/ |
A D | confdata.c | 666 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 D | expr.c | 1029 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 D | qconf.cc | 1214 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/drivers/mtd/ |
A D | cfi_flash.c | 448 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()
|
Completed in 18 milliseconds