HomeSort by relevance Sort by last modified time
    Searched refs:dstlen (Results 1 - 17 of 17) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 214 size_t srclen, dstlen; local
228 dstlen = *outbytesleft;
282 if ( dstlen < 2 ) {
287 dstlen -= 2;
292 if ( dstlen < 4 ) {
297 dstlen -= 4;
576 if ( dstlen < 1 ) {
585 --dstlen;
591 if ( dstlen < 1 ) {
600 --dstlen;
    [all...]
SDL_string.c 344 size_t dstlen = SDL_strlen(dst); local
346 if ( dstlen < maxlen ) {
347 SDL_strlcpy(dst+dstlen, src, maxlen-dstlen);
349 return dstlen+srclen;
    [all...]
  /bionic/libc/dns/nameser/
ns_ttl.c 56 ns_format_ttl(u_long src, char *dst, size_t dstlen) {
69 T(fmt1(weeks, 'W', &dst, &dstlen));
73 T(fmt1(days, 'D', &dst, &dstlen));
77 T(fmt1(hours, 'H', &dst, &dstlen));
81 T(fmt1(mins, 'M', &dst, &dstlen));
85 T(fmt1(secs, 'S', &dst, &dstlen));
ns_name.c 214 * ns_name_pton2(src, dst, dstsiz, *dstlen)
221 * fills in *dstlen (if non-NULL)
227 ns_name_pton2(const char *src, u_char *dst, size_t dstsiz, size_t *dstlen) {
308 if (dstlen != NULL)
309 *dstlen = (bp - dst);
347 if (dstlen != NULL)
348 *dstlen = (bp - dst);
421 * ns_name_unpack2(msg, eom, src, dst, dstsiz, *dstlen)
426 * fills in *dstlen (if non-NULL).
430 u_char *dst, size_t dstsiz, size_t *dstlen)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
cramfs_fs.h 88 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cramfs_fs.h 88 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 235 int32 state, srclen, dstlen; local
242 dstlen = sizeof(destbuf);
243 convert_from_utf8(B_UNICODE_CONVERSION, buf, &srclen, (char *)destbuf, &dstlen, &state);
  /external/qemu/proxy/
proxy_int.h 172 char* dst, int dstlen );
proxy_common.c 463 char* dst, int dstlen )
469 while (src+3 <= srcend && result+4 <= dstlen)
482 if (result+4 > dstlen)
  /system/core/run-as/
package.c 47 /* Copy 'srclen' string bytes from 'src' into buffer 'dst' of size 'dstlen'
49 * 'dstlen' is 0, even in case of overflow.
51 * has stopped. The copy will stop when dstlen, srclen or a null
55 string_copy(char* dst, size_t dstlen, const char* src, size_t srclen)
58 const char* dstend = dst + dstlen;
60 if (dstlen == 0)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 559 int dstlen = 0; local
562 dst[dstlen++] = ch;
563 // System.err.print("i = " + i + ", d = " + dstlen + ", ch = [" + ch + "] ");
566 refStart = dstlen;
581 // System.err.print("got [" + new String(dst, refStart, dstlen-refStart-1) + "]");
582 int ent = lookupEntity(dst, refStart, dstlen - refStart - 1);
588 dstlen = refStart + 1;
592 dstlen = refStart;
602 return new String(dst, 0, dstlen);
    [all...]
  /bionic/libc/tzcode/
localtime.c 941 size_t dstlen; local
983 dstlen = name - dstname;
988 dstlen = name - dstname; /* length of DST zone name */
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
localtime.c 916 size_t dstlen; local
960 dstlen = name - dstname;
965 dstlen = name - dstname; /* length of DST zone name */
1119 dstlen = 0;
1127 if (dstlen != 0)
1128 sp->charcnt += dstlen + 1;
1135 if (dstlen != 0) {
1136 (void) strncpy(cp, dstname, dstlen);
1137 *(cp + dstlen) = '\0';
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
localtime.c 916 size_t dstlen; local
960 dstlen = name - dstname;
965 dstlen = name - dstname; /* length of DST zone name */
1119 dstlen = 0;
1127 if (dstlen != 0)
1128 sp->charcnt += dstlen + 1;
1135 if (dstlen != 0) {
1136 (void) strncpy(cp, dstname, dstlen);
1137 *(cp + dstlen) = '\0';
    [all...]
  /external/valgrind/main/shared/
vg_replace_strmem.c 107 /* Figure out if [dst .. dst+dstlen-1] overlaps with
115 Bool is_overlap ( void* dst, const void* src, SizeT dstlen, SizeT srclen )
119 if (dstlen == 0 || srclen == 0)
125 hiD = loD + dstlen - 1;
    [all...]
  /external/qemu/hw/core/
loader.c 404 static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src,
444 s.avail_out = dstlen;
  /frameworks/native/cmds/installd/
commands.c 591 int dstlen; local
604 dstlen = srclen + strlen(DALVIK_CACHE_PREFIX) +
608 if (dstlen > PKG_PATH_MAX) {
    [all...]

Completed in 268 milliseconds