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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
2004-03-09-UnmangledBuiltinMethods.cpp 5 void strlen();
8 void AccessFlags::strlen() { } function in class:AccessFlags
  /bionic/libc/arch-x86/string/
strlen_wrapper.S 33 # define sse2_strlen_atom strlen
34 # include "sse2-strlen-atom.S"
38 # include "strlen.S"
  /external/valgrind/main/none/tests/
readline1.stdout.exp 1 HERE strlen is 2
coolo_strlen.c 7 int len = strlen(b2);
  /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}}
  /bootable/bootloader/legacy/libc/
strlen.c 29 int strlen(const char *s) function
strstr.c 33 int l1 = strlen(s1);
34 int l2 = strlen(s2);
  /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/oprofile/libop/
op_mangle.c 53 len = strlen(op_samples_current_dir) + strlen(dep_name) + 1
54 + strlen(values->event_name) + 1 + strlen(image_name) + 1;
57 len += strlen(cg_image_name) + 1;
60 len += strlen(anon_name);
82 sprintf(mangled + strlen(mangled), ".%d.%d.",
86 sprintf(mangled + strlen(mangled), "%d.", values->tgid);
88 sprintf(mangled + strlen(mangled), "%s.", "all");
92 sprintf(mangled + strlen(mangled), "%d.", values->tid)
    [all...]
  /external/clang/test/CodeGen/
stack-protector.c 11 char a[strlen(msg) + 1];
  /external/clang/test/Analysis/
string.c 32 // strlen()
35 #define strlen BUILTIN(strlen) macro
36 size_t strlen(const char *s);
39 if (strlen("123") != 3)
45 if (strlen(a) != 3)
51 if (strlen(a) != 3)
54 if (strlen(a) != 3)
59 return strlen(0); // expected-warning{{Null pointer argument in call to string length function}}
63 return strlen((char*)&strlen_fn); // expected-warning{{Argument to string length function is the address of the (…)
    [all...]
cstring-syntax.c 5 size_t strlen (const char *s);
9 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - 1); // expected-warning {{Potential buffer overflow. Replace with 'sizeof(dest) - strlen(dest) - 1' or use a safer 'strlcat' API}}
11 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning {{Potential buffer overflow. Replace with}}
global-region-invalidation.c 15 // strlen doesn't invalidate the value of 'size_rdar9373039'.
16 int extra = (2 + strlen ("Clang") + ((4 - ((unsigned int) (2 + strlen ("Clang")) % 4)) % 4)) + (2 + strlen ("1.0") + ((4 - ((unsigned int) (2 + strlen ("1.0")) % 4)) % 4));
  /bionic/libc/unistd/
perror.c 39 write( 2, prefix, strlen(prefix) );
42 write( 2, buff, strlen(buff) );
  /bionic/libc/string/
strlen.c 1 /* $OpenBSD: strlen.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
39 strlen(const char *str) function
  /external/compiler-rt/SDKs/darwin/usr/include/
string.h 27 size_t strlen(const char *);
  /external/compiler-rt/SDKs/linux/usr/include/
string.h 27 size_t strlen(const char *);
  /external/valgrind/main/drd/
drd_strmem_intercepts.c 4 /*--- Replacements for strlen() and strnlen(), which run on the ---*/
59 // calls to strlen() with its own built-in version. This can be very
62 #define STRLEN(soname, fnname) \
72 STRLEN(VG_Z_LIBC_SONAME, strlen)
73 STRLEN(VG_Z_LD_LINUX_SO_2, strlen)
74 STRLEN(VG_Z_LD_LINUX_X86_64_SO_2, strlen)
76 STRLEN(VG_Z_LIBC_SONAME, strlen
    [all...]
  /external/libmtp/examples/
util.c 51 if (strlen(lang) > 5) {
52 langsuff = &lang[strlen(lang)-5];
  /external/qemu/android/utils/
setenv.c 10 size_t length = strlen(name) + strlen(value) + 2;
  /external/webkit/Source/WebCore/platform/text/
TextCodec.cpp 48 return static_cast<int>(strlen(replacement));
51 return static_cast<int>(strlen(replacement));
  /external/openssh/
md5crypt.c 47 return (strncmp(salt, magic, strlen(magic)) == 0);
64 if(strncmp(sp, magic, strlen(magic)) == 0)
65 sp += strlen(magic);
83 MD5_Update(&ctx, pw, strlen(pw));
86 MD5_Update(&ctx, magic, strlen(magic));
93 MD5_Update(&ctx1, pw, strlen(pw));
95 MD5_Update(&ctx1, pw, strlen(pw));
98 for(pl = strlen(pw); pl > 0; pl -= 16)
105 for (j = 0, i = strlen(pw); i != 0; i >>= 1)
124 MD5_Update(&ctx1, pw, strlen(pw))
    [all...]
auth-options.c 108 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
110 opts += strlen(cp);
114 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
117 opts += strlen(cp);
121 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
124 opts += strlen(cp);
128 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
131 opts += strlen(cp);
135 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
138 opts += strlen(cp)
    [all...]
  /external/svox/pico/tts/
svox_ssml_parser.cpp 83 int doclen = (int)strlen(ssmldoc) + 1;
112 if (strlen(m_data) > 0)
133 m_docLanguage = new char[strlen(attributes[i+1])+1];
142 if (strlen(m_data) + 4 > (size_t)m_datasize)
154 if (strlen(m_data) + 4 > (size_t)m_datasize)
209 xsampasize = strlen(xsampastr);
216 char* phonstr = createPhonemeString(xsampastr, strlen(xsampastr) + 1);
219 xsampastr = (char*)malloc(strlen(phonstr) + 1);
228 if (strlen(m_data) + strlen(xsampastr) + 1 > (size_t)m_datasize
    [all...]
  /frameworks/native/libs/utils/
TextOutput.cpp 48 to.print(buf, strlen(buf));
56 to.print(buf, strlen(buf));
64 to.print(buf, strlen(buf));
72 to.print(buf, strlen(buf));
80 to.print(buf, strlen(buf));
88 to.print(buf, strlen(buf));
100 to.print(buf, strlen(buf));
118 to.print(buf, strlen(buf));
124 ((TextOutput*)cookie)->print(txt, strlen(txt));

Completed in 2084 milliseconds

1 2 3 4 5 6 7 8 91011>>