OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
399
unsigned
stringsize
; /* total size of strings in bytes */
local
418
stringsize
= 0;
426
stringsize
+= VG_(strlen)(info->interp_name) + 1;
430
stringsize
+= VG_(strlen)(info->interp_args) + 1;
435
stringsize
+= VG_(strlen)( VG_(args_the_exename) ) + 1;
439
stringsize
+= VG_(strlen)( * (HChar**)
448
stringsize
+= VG_(strlen)(*cpp) + 1;
456
stringsize
+= VG_(strlen)(cauxv->u.a_ptr) + 1;
458
stringsize
+= 16;
460
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 3527 milliseconds