Searched refs:str1 (Results 1 - 7 of 7) sorted by relevance

/u-boot/test/
H A Dstr_ut.c15 static const char str1[] = "I'm sorry I'm late."; variable
31 out[strlen(str1)] = 'a';
32 str_to_upper(str1, out, SIZE_MAX);
41 str_to_upper(str1, out, 7);
99 ut_assertok(run_strtoul(uts, str1, 10, 0, 0, upper));
102 ut_assertok(run_strtoul(uts, str1, 0, 0, 0, upper));
107 ut_assertok(run_strtoul(uts, str1, 2, 0, 0, upper));
162 ut_assertok(run_strtoull(uts, str1, 10, 0, 0, upper));
165 ut_assertok(run_strtoull(uts, str1, 0, 0, 0, upper));
170 ut_assertok(run_strtoull(uts, str1,
247 const char str1[] = "abc123def"; local
[all...]
/u-boot/arch/sandbox/cpu/
H A Dstart.c35 const char *str1, *str2; local
46 str1 = *flag1 ? flag1 : opt1->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|
192 const char* str1,
H A Davb_util.c156 const char* str1,
172 avb_memcpy(buf, str1, str1_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/scripts/kconfig/
H A Dexpr.c1029 const char *str1, *str2; local
1066 str1 = sym_get_string_value(e->left.sym);
1070 k1 = expr_parse_string(str1, e->left.sym->type, &lval);
1075 res = strcmp(str1, str2);
1078 printf("Cannot compare \"%s\" and \"%s\"\n", str1, str2);
1081 res = strcmp(str1, str2);
/u-boot/drivers/mtd/
H A Dcfi_flash.c440 char str1[20]; local
443 print_longlong(str1, flash_read64(addr));
445 debug("is= %s %s\n", str1, str2);
/u-boot/scripts/
H A Dcheckpatch.pl665 my ($str1, $str2) = @_;
666 $str1 = lc($str1);
668 $str1 =~ s/-//g;
670 my $len1 = length($str1);
680 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {

Completed in 87 milliseconds