Searched refs:str2 (Results 1 - 11 of 11) sorted by relevance

/u-boot/test/
H A Dstr_ut.c16 static const char str2[] = "1099abNo, don't bother apologising."; variable
36 strcpy(out, str2);
45 strcpy(out, str2);
89 ut_assertok(run_strtoul(uts, str2, 10, 1099, 4, upper));
90 ut_assertok(run_strtoul(uts, str2, 16, 0x1099ab, 6, upper));
103 ut_assertok(run_strtoul(uts, str2, 0, 1099, 4, upper));
108 ut_assertok(run_strtoul(uts, str2, 2, 2, 2, upper));
112 ut_asserteq(1099, simple_strtoul(str2, NULL, 0));
144 ut_assertok(run_strtoull(uts, str2, 10, 1099, 4, upper));
145 ut_assertok(run_strtoull(uts, str2, 1
248 const char str2[] = "abc123def456"; local
[all...]
/u-boot/arch/sandbox/cpu/
H A Dstart.c35 const char *str1, *str2; local
47 str2 = *flag2 ? flag2 : opt2->flag;
53 if (isalpha(*str1) && isalpha(*str2) &&
54 tolower(*str1) == tolower(*str2))
55 return isupper(*str1) - isupper(*str2);
57 return strcasecmp(str1, str2);
/u-boot/lib/libavb/
H A Davb_util.h182 /* Concatenates |str1| (of |str1_len| bytes) and |str2| (of |str2_len|
194 const char* str2,
H A Davb_util.c158 const char* str2,
173 avb_memcpy(buf + str1_len, str2, str2_len);
154 avb_str_concat(char* buf, size_t buf_size, const char* str1, size_t str1_len, const char* str2, size_t str2_len) argument
/u-boot/test/cmd/
H A Dmem_search.c235 static const char str2[] = "hellothere"; local
242 strcpy(buf + 0xa1, str2);
/u-boot/cmd/
H A Dubi.c91 char *str, *str2; local
126 str2 = realloc(str, size);
127 if (!str2) {
131 str = str2;
/u-boot/scripts/kconfig/
H A Dconfdata.c666 char *str2; local
674 str2 = xmalloc(strlen(str) + 3);
675 sprintf(str2, "\"%s\"", str);
676 printer->print_symbol(fp, sym, str2, printer_arg);
677 free((void *)str2);
H A Dexpr.c1029 const char *str1, *str2; local
1067 str2 = sym_get_string_value(e->right.sym);
1071 k2 = expr_parse_string(str2, e->right.sym->type, &rval);
1075 res = strcmp(str1, str2);
1078 printf("Cannot compare \"%s\" and \"%s\"\n", str1, str2);
1081 res = strcmp(str1, str2);
H A Dqconf.cc1214 QString str2 = print_filter(str); local
1218 *text += str2;
1221 *text += str2;
/u-boot/drivers/mtd/
H A Dcfi_flash.c441 char str2[20]; local
444 print_longlong(str2, cword.w64);
445 debug("is= %s %s\n", str1, str2);
/u-boot/scripts/
H A Dcheckpatch.pl665 my ($str1, $str2) = @_;
667 $str2 = lc($str2);
669 $str2 =~ s/-//g;
671 my $len2 = length($str2);
680 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {

Completed in 216 milliseconds