Home
last modified time | relevance | path

Searched refs:dstlen (Results 1 – 10 of 10) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_iconv.c214 size_t srclen, dstlen; in SDL_iconv() local
228 dstlen = *outbytesleft; in SDL_iconv()
282 if ( dstlen < 2 ) { in SDL_iconv()
287 dstlen -= 2; in SDL_iconv()
292 if ( dstlen < 4 ) { in SDL_iconv()
297 dstlen -= 4; in SDL_iconv()
576 if ( dstlen < 1 ) { in SDL_iconv()
585 --dstlen; in SDL_iconv()
591 if ( dstlen < 1 ) { in SDL_iconv()
600 --dstlen; in SDL_iconv()
[all …]
DSDL_string.c344 size_t dstlen = SDL_strlen(dst); in SDL_strlcat() local
346 if ( dstlen < maxlen ) { in SDL_strlcat()
347 SDL_strlcpy(dst+dstlen, src, maxlen-dstlen); in SDL_strlcat()
349 return dstlen+srclen; in SDL_strlcat()
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
DSDL_BWin.h229 int32 state, srclen, dstlen; in Translate2Unicode() local
236 dstlen = sizeof(destbuf); in Translate2Unicode()
237 convert_from_utf8(B_UNICODE_CONVERSION, buf, &srclen, (char *)destbuf, &dstlen, &state); in Translate2Unicode()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java559 int dstlen = 0; in expandEntities() local
562 dst[dstlen++] = ch; in expandEntities()
566 refStart = dstlen; in expandEntities()
582 int ent = lookupEntity(dst, refStart, dstlen - refStart - 1); in expandEntities()
588 dstlen = refStart + 1; in expandEntities()
592 dstlen = refStart; in expandEntities()
602 return new String(dst, 0, dstlen); in expandEntities()
/external/qemu/proxy/
Dproxy_common.c462 char* dst, int dstlen ) in proxy_base64_encode() argument
468 while (src+3 <= srcend && result+4 <= dstlen) in proxy_base64_encode()
481 if (result+4 > dstlen) in proxy_base64_encode()
Dproxy_int.h172 char* dst, int dstlen );
/external/icu4c/tools/tzcode/
Dlocaltime.c881 size_t dstlen; local
925 dstlen = name - dstname;
930 dstlen = name - dstname; /* length of DST zone name */
1084 dstlen = 0;
1092 if (dstlen != 0)
1093 sp->charcnt += dstlen + 1;
1100 if (dstlen != 0) {
1101 (void) strncpy(cp, dstname, dstlen);
1102 *(cp + dstlen) = '\0';
/external/qemu/
Dloader.c403 static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src, in gunzip() argument
443 s.avail_out = dstlen; in gunzip()
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_mac.h23 unsigned char *dst, unsigned long *dstlen);
/external/dropbear/libtomcrypt/
Dcrypt.tex2159 unsigned long dstlen;
2185 dstlen = sizeof(dst);
2186 if ((err = hmac_done(&hmac, dst, &dstlen)) != CRYPT_OK) {
2190 printf("The hmac is %lu bytes long\n", dstlen);
2297 unsigned long dstlen;
2323 dstlen = sizeof(dst);
2324 if ((err = omac_done(&omac, dst, &dstlen)) != CRYPT_OK) {
2328 printf("The omac is %lu bytes long\n", dstlen);