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

  /external/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 328 unsigned stringsize; /* total size of strings in bytes */ local
344 stringsize = 0;
353 stringsize += VG_(strlen)(info->interp_name) + 1;
357 stringsize += VG_(strlen)(info->interp_args) + 1;
362 stringsize += VG_(strlen)( VG_(args_the_exename) ) + 1;
366 stringsize += VG_(strlen)( * (HChar**)
375 stringsize += VG_(strlen)(*cpp) + 1;
381 stringsize += 1 + VG_(strlen)(info->executable_path);
396 VG_ROUNDUP(stringsize, sizeof(Word)); /* strings (aligned) */
406 - VG_ROUNDUP(stringsize, sizeof(int))
    [all...]
initimg-linux.c 395 unsigned stringsize; /* total size of strings in bytes */ local
414 stringsize = 0;
422 stringsize += VG_(strlen)(info->interp_name) + 1;
426 stringsize += VG_(strlen)(info->interp_args) + 1;
431 stringsize += VG_(strlen)( VG_(args_the_exename) ) + 1;
435 stringsize += VG_(strlen)( * (HChar**)
444 stringsize += VG_(strlen)(*cpp) + 1;
452 stringsize += VG_(strlen)(cauxv->u.a_ptr) + 1;
454 stringsize += 16;
456 stringsize += VG_(strlen)(VG_(args_the_exename)) + 1
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 819 size_t stringsize; local
839 stringsize = inbytesleft > 4 ? inbytesleft : 4;
840 string = SDL_malloc(stringsize);
846 outbytesleft = stringsize;
855 stringsize *= 2;
856 string = SDL_realloc(string, stringsize);
862 outbytesleft = stringsize - (outbuf - string);

Completed in 84 milliseconds