HomeSort by relevance Sort by last modified time
    Searched refs:strlen (Results 1 - 25 of 5691) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/amd64/
insn-pcmpistri.stdout.exp 0 strlen("")=0
2 strlen("a")=1
3 strlen("ab")=2
4 strlen("abc")=3
5 strlen("abcd")=4
6 strlen("abcde")=5
7 strlen("abcdef")=6
8 strlen("abcdefg")=7
9 strlen("abcdefgh")=8
10 strlen("abcdefghi")=
    [all...]
  /external/clang/test/CodeGenCXX/
2004-03-09-UnmangledBuiltinMethods.cpp 5 void strlen();
8 void AccessFlags::strlen() { } function in class:AccessFlags
  /external/valgrind/none/tests/
readline1.stdout.exp 1 HERE strlen is 2
coolo_strlen.c 7 int len = strlen(b2);
  /external/compiler-rt/test/msan/
tzset.cc 10 if (!strlen(tzname[0]) || !strlen(tzname[1]))
13 if (!strlen(tzname[0]) || !strlen(tzname[1]))
  /external/clang/test/SemaCXX/
constexpr-strlen.cpp 6 extern size_t strlen(const char *p);
9 # 10 "SemaCXX/constexpr-strlen.cpp" 2
11 constexpr int m = strlen("hello"); // expected-error {{constant expression}} expected-note {{non-constexpr function 'strlen' cannot be used in a constant expression}}
13 // Make sure we can evaluate a call to strlen.
15 int k = arr[strlen("hello")]; // expected-warning {{array index 5}}
  /external/syslinux/com32/lib/
strstr.c 9 return (char *)memmem(haystack, strlen(haystack), needle, strlen(needle));
fputs.c 14 return _fwrite(s, strlen(s), file);
strlen.c 2 * strlen()
7 size_t strlen(const char *s) function
  /device/google/marlin/power/
metadata-parser.c 73 if (strlen(attribute) == strlen("hint_id") &&
74 (strncmp(attribute, "hint_id", strlen("hint_id")) == 0)) {
75 if (strlen(value) > 0) {
80 if (strlen(attribute) == strlen("state") &&
81 (strncmp(attribute, "state", strlen("state")) == 0)) {
82 if (strlen(value) > 0) {
105 if (strlen(attribute) == strlen("hint_id") &
    [all...]
  /external/clang/test/CodeGen/
stack-protector.c 15 size_t strlen(const char *s);
20 char a[strlen(msg) + 1];
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_intercept_strlen.cc 11 if (6 != strlen(str))
18 int len = strlen(str);
22 // CHECK-NEXT: {{#0 .*}}strlen
intercept_strlen.cc 9 if (5 != strlen(str))
17 int len = strlen(str);
21 // CHECK: strlen
  /external/curl/tests/unit/
unit1603.c 63 if(Curl_hash_str(key1, strlen(key1), slots) != 1 ||
64 Curl_hash_str(key2, strlen(key2), slots) != 0 ||
65 Curl_hash_str(key3, strlen(key3), slots) != 2 ||
66 Curl_hash_str(key4, strlen(key4), slots) != 1)
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
75 nodep = Curl_hash_add(&hash_static, &key2, strlen(key2), &key2);
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
80 nodep = Curl_hash_add(&hash_static, &key3, strlen(key3), &key3);
82 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3))
    [all...]
  /external/syslinux/com32/modules/
vpdtest.c 50 if (strlen(vpd.bios_build_id) > 0)
52 if (strlen(vpd.bios_release_date) > 0)
54 if (strlen(vpd.bios_version) > 0)
56 if (strlen(vpd.default_flash_filename) > 0)
59 if (strlen(vpd.box_serial_number) > 0)
61 if (strlen(vpd.motherboard_serial_number) > 0)
64 if (strlen(vpd.machine_type_model) > 0)
  /external/compiler-rt/test/profile/
instrprof-bufferio.c 48 strlen("Short Strings:\n"));
50 lprofBufferIOWrite(BufferIO, SmallData, strlen(SmallData));
52 lprofBufferIOWrite(BufferIO, "Long Strings:\n", strlen("Long Strings:\n"));
54 lprofBufferIOWrite(BufferIO, MediumData, strlen(MediumData));
57 strlen("Extra Long Strings:\n"));
59 lprofBufferIOWrite(BufferIO, LargeData, strlen(LargeData));
61 lprofBufferIOWrite(BufferIO, "Mixed Strings:\n", strlen("Mixed Strings:\n"));
63 lprofBufferIOWrite(BufferIO, MediumData, strlen(MediumData));
64 lprofBufferIOWrite(BufferIO, SmallData, strlen(SmallData));
66 lprofBufferIOWrite(BufferIO, "Endings:\n", strlen("Endings:\n"))
    [all...]
  /external/e2fsprogs/intl/
os2compat.c 59 size_t sl = strlen (root);
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root);
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root);
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1);
90 memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1);
96 if (strlen (_nlos2_localedir) <= MAXPATHLEN
    [all...]
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 17 // unix.cstring's strlen() modelling).
74 size_t strlen(const char *s);
87 if (strlen(x) != value) return;
90 clang_analyzer_eval(strlen(x) >= 2); // expected-warning{{TRUE}}
91 clang_analyzer_eval(2 <= strlen(x)); // expected-warning{{TRUE}}
94 clang_analyzer_eval(strlen(x) != 1); // expected-warning{{TRUE}}
95 clang_analyzer_eval(1 != strlen(x)); // expected-warning{{TRUE}}
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
strlen.c 37 strlen(str) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
strdup.c 9 register char *copy = malloc(strlen(str) + 1);
  /external/elfutils/lib/
xstrdup.c 41 return strcpy (xmalloc (strlen (string) + 1), string);
  /external/python/cpython2/Python/
strdup.c 9 register char *copy = malloc(strlen(str) + 1);
  /external/python/cpython3/Python/
strdup.c 9 char *copy = malloc(strlen(str) + 1);
  /external/kmod/testsuite/
test-scratchbuf.c 34 assert_return(scratchbuf_alloc(&sbuf, strlen(smallstr) + 1) == 0, EXIT_FAILURE);
39 assert_return(scratchbuf_alloc(&sbuf, strlen(smallstr) + 1) == 0, EXIT_FAILURE);
43 memcpy(scratchbuf_str(&sbuf), smallstr, strlen(smallstr) + 1);
63 assert_return(scratchbuf_alloc(&sbuf, strlen(smallstr) + 1) == 0, EXIT_FAILURE);
65 memcpy(scratchbuf_str(&sbuf), smallstr, strlen(smallstr) + 1);
68 assert_return(scratchbuf_alloc(&sbuf, strlen(largestr) + 1) == 0, EXIT_FAILURE);
70 assert_return(sbuf.size == strlen(largestr) + 1, EXIT_FAILURE);
72 memcpy(scratchbuf_str(&sbuf), largestr, strlen(largestr) + 1);
76 assert_return(scratchbuf_alloc(&sbuf, strlen(largestr2) + 1) == 0, EXIT_FAILURE);
78 assert_return(sbuf.size == strlen(largestr2) + 1, EXIT_FAILURE)
    [all...]
  /bionic/libc/bionic/
__bionic_get_shell_path.cpp 45 char exe_path[strlen(VENDOR_PREFIX)];
47 if (len != -1 && !strncmp(exe_path, VENDOR_PREFIX, strlen(VENDOR_PREFIX))) {

Completed in 1578 milliseconds

1 2 3 4 5 6 7 8 91011>>