HomeSort by relevance Sort by last modified time
    Searched full:strlen (Results 151 - 175 of 3375) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/srtp/crypto/test/
datatypes_driver.c 48 #include <string.h> /* for strlen() */
194 len = hex_string_to_octet_string(raw, hex1, strlen(hex1));
197 printf("expected length: %u\tstring: %s\n", (unsigned)strlen(hex1), hex1);
199 len = hex_string_to_octet_string(raw, hex2, strlen(hex2));
210 printf("strlen(s) = %u\n", (unsigned)strlen(s));
212 for (i=0; i < strlen(s); i++) {
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 231 size_t endLen = strlen(end);
232 const char* endStr = str + strlen(str) - endLen;
256 size_t length = strlen(text);
324 size_t textLen = strlen(m_text);
465 size_t file1Len = strlen(file1);
466 size_t file2Len = strlen(file2);
487 base1, dir1, (int) strlen(file1) - (int) file1Ex, file1,
488 base2, dir2, (int) strlen(file2) - (int) file2Ex, file2,
493 size_t len = strlen(scratchText);
562 foundInWebCore += strlen(foundInWebCore) + 1
    [all...]
  /external/icu4c/test/cintltst/
cdtdptst.c 58 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("EEE MMM dd HH:mm:ss.SSS zzz yyyy G")+1 ));
72 s=(UChar*)malloc(sizeof(UChar) * (strlen("03-Apr-04 2:20:47 o'clock AM PST")+1) );
129 s=(UChar*)malloc(sizeof(UChar) * (strlen("01/01/1997 10:11:42 AM")+1) );
163 str=(UChar*)malloc(sizeof(UChar) * (strlen(s) + 1) );
165 pat=(UChar*)malloc(sizeof(UChar) * (strlen(pattern) + 1) );
201 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("yyyyMMddHHmmssSSS")+1) );
313 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("MM/dd/yyyy 'at' hh:mm:ss a zzz")+1) );
336 exp=(UChar*)malloc(sizeof(UChar) * (strlen(expStr) + 1) );
340 if(u_strncmp(dateString, exp, (int32_t)strlen(expStr)) !=0)
  /external/qemu/android/protocol/
core-commands-impl.c 221 strlen(netspeed->name) + 1;
224 resp.resp_data_size += strlen(netspeed->display) + 1;
235 strcpy(resp_data->name + strlen(resp_data->name) + 1,
238 strcpy(resp_data->name + strlen(resp_data->name) + 1, "");
265 strlen(netdelay->name) + 1;
268 resp.resp_data_size += strlen(netdelay->display) + 1;
279 strcpy(resp_data->name + strlen(resp_data->name) + 1,
282 strcpy(resp_data->name + strlen(resp_data->name) + 1, "");
302 resp.resp_data_size = strlen(filepath) + 1;
  /frameworks/base/cmds/installd/tests/
installd_utils_test.cpp 53 android_app_dir.len = strlen(TEST_APP_DIR);
56 android_app_private_dir.len = strlen(TEST_APP_PRIVATE_DIR);
59 android_data_dir.len = strlen(TEST_DATA_DIR);
62 android_asec_dir.len = strlen(TEST_ASEC_DIR);
68 android_system_dirs.dirs[0].len = strlen(TEST_SYSTEM_DIR1);
71 android_system_dirs.dirs[1].len = strlen(TEST_SYSTEM_DIR2);
275 size_t offset = strlen(prefix);
331 dir.len = strlen(dir.path);
390 src.len = strlen(src.path);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libnsl-2.7.so 
libnsl.so 
libnsl.so.1 
  /dalvik/vm/compiler/codegen/x86/
CodegenDriver.cpp 268 sprintf(buf+strlen(buf), "%x,", start);
270 sprintf(buf+strlen(buf), "%x-%x,", start, start + streak - 1);
284 sprintf(buf+strlen(buf), "%x", start);
286 sprintf(buf+strlen(buf), "%x-%x", start, start + streak - 1);
289 if (strlen(buf)) {
  /external/chromium/third_party/modp_b64/
modp_b64.h 39 * i.e. the result will be equal to strlen(dest) + 1
68 * Returns the length (strlen) of the output, or -1 if unable to
73 * int srclen = ...; // or if you don't know use strlen(src)
105 * Will return the strlen of the output from encoding.
111 * int len = strlen(b64encoded);
  /external/icu4c/tools/toolutil/
unewdata.c 62 length += strlen(dir);
65 if (dir[strlen(dir) - 1]!= U_FILE_SEP_CHAR) {
69 length += strlen(name); /* Add the filename length */
72 length += strlen(type);
86 char *p=filename+strlen(dir);
  /external/iptables/extensions/
libxt_limit.c 49 if (strlen(delim+1) == 0)
52 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
54 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
56 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
58 else if (strncasecmp(delim+1, "day", strlen(delim+1)) == 0)
  /external/oprofile/agents/jvmpi/
jvmpi_oprofile.cpp 129 int cnt = strlen(method_name) + strlen(class_signature.c_str()) +
130 strlen(method_signature) + 2;
133 strncat(buf, method_name, cnt - strlen(buf) - 1);
134 strncat(buf, method_signature, cnt - strlen(buf) - 1);
  /external/oprofile/libpopt/
poptparse.c 27 nb += strlen(argv[i]) + 1;
39 dst += strlen(strcpy(dst, argv[i])) + 1;
64 int buflen = strlen(s) + 1;
112 if (strlen(argv[argc])) {
163 linelen = strlen(p);
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 533 textlen = strlen(str) + 1;
535 textlen += strlen(PICO_PITCH_OPEN_TAG) + 5;
536 textlen += strlen(PICO_PITCH_CLOSE_TAG);
540 textlen += strlen(PICO_SPEED_OPEN_TAG) + 5;
541 textlen += strlen(PICO_SPEED_CLOSE_TAG);
546 textlen += strlen(PICO_VOLUME_OPEN_TAG) + 5;
547 textlen += strlen(PICO_VOLUME_CLOSE_TAG);
558 char* tmp = (char*)malloc(strlen(PICO_PITCH_OPEN_TAG) + strlen(PICO_PITCH_CLOSE_TAG) + 5);
565 char* tmp = (char*)malloc(strlen(PICO_SPEED_OPEN_TAG) + strlen(PICO_SPEED_CLOSE_TAG) + 5)
    [all...]
  /external/clang/INPUTS/
stpcpy-test.c 3 #define __stpcpy(dest, src) (__extension__ (__builtin_constant_p (src) ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 ? __stpcpy_small (dest, __stpcpy_args (src), strlen (src) + 1) : ((char *) __mempcpy (dest, src, strlen (src) + 1) - 1)) : __stpcpy (dest, src)))
  /external/dropbear/
cli-authpasswd.c 136 strlen(cli_opts.username));
146 buf_putstring(ses.writepayload, password, strlen(password));
149 m_burn(password, strlen(password));
  /external/e2fsprogs/intl/
l10nflist.c 94 size_t part_len = strlen (argz);
117 size_t part_len = strlen (argz);
193 + strlen (language)
195 ? strlen (territory) + 1 : 0)
197 ? strlen (codeset) + 1 : 0)
199 ? strlen (normalized_codeset) + 1 : 0)
202 ? strlen (modifier) + 1 : 0)
204 ? strlen (special) + 1 : 0)
208 ? strlen (sponsor) : 0)
210 ? strlen (revision) + 1 : 0)) : 0
    [all...]
  /external/e2fsprogs/lib/ext2fs/
get_pathname.c 115 retval = ext2fs_get_mem(strlen(parent_name)+strlen(gp.name)+2,
118 retval = ext2fs_get_mem(strlen(parent_name)+5, &ret);
  /external/libvpx/libmkv/
EbmlWriter.c 41 const size_t size_ = strlen(str);
51 const size_t strlen = wcslen(wstr); local
55 const unsigned long long size = strlen;
  /external/oprofile/opjitconv/
opjitconv.c 286 size_t tmp_conv_dir_length = strlen(tmp_conv_dir);
297 tmp_dumpfile = xmalloc(tmp_conv_dir_length + 1 + strlen(dumpfilename) + 1);
330 strlen(proc_id) + strlen(".jo") + 1);
336 tmp_elffile = xmalloc(strlen(tmp_conv_dir) + 1 +
337 strlen(proc_id) + strlen(".jo") + 1);
338 strncpy(tmp_elffile, tmp_conv_dir, strlen(tmp_conv_dir));
339 tmp_elffile[strlen(tmp_conv_dir)] = '\0';
492 int samples_dir_len = strlen(session_dir) + strlen(samples_subdir)
    [all...]
  /external/qemu/android/utils/
dll.c 22 int len1 = strlen(str1);
23 int len2 = strlen(str2);
47 int len = strlen(path);
misc.c 27 int len = strlen(strings[n]);
63 int len = strlen(src);
148 int len = strlen(str);
  /external/skia/include/core/
SkTDict.h 38 return set(name, strlen(name), value);
76 return find(name, strlen(name), value);
151 return find_index(name, strlen(name));
  /external/srec/seti/setiUtils/src/
platform_utils.c 50 m = strlen(seps);
55 n = strlen(input_str);
124 new_string = (char *)MALLOC(sizeof(char)*(strlen(in_string)+1), MTAG);

Completed in 221 milliseconds

1 2 3 4 5 67 8 91011>>