Searched refs:bytes_malloced (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/SecurityTool-55115/
H A Dreadline.c43 int ix = 0, bytes_malloced = 0; local
47 bytes_malloced = 64;
48 buffer = (char *)malloc(bytes_malloced);
49 buffer_size = bytes_malloced;
58 if (!bytes_malloced)
60 bytes_malloced += bytes_malloced;
61 buffer = (char *)realloc(buffer, bytes_malloced);
62 buffer_size = bytes_malloced;
68 if (bytes_malloced)
[all...]
/macosx-10.9.5/security_systemkeychain-55191.2/src/
H A Dreadline.c43 int ix = 0, bytes_malloced = 0; local
47 bytes_malloced = 64;
48 buffer = (char *)malloc(bytes_malloced);
49 buffer_size = bytes_malloced;
58 if (!bytes_malloced)
60 bytes_malloced += bytes_malloced;
61 buffer = (char *)realloc(buffer, bytes_malloced);
62 buffer_size = bytes_malloced;
68 if (bytes_malloced)
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/SecurityTool/
H A Dreadline.c42 int ix = 0, bytes_malloced = 0; local
46 bytes_malloced = 64;
47 buffer = (char *)malloc(bytes_malloced);
48 buffer_size = bytes_malloced;
57 if (!bytes_malloced)
59 bytes_malloced += bytes_malloced;
60 buffer = (char *)realloc(buffer, bytes_malloced);
61 buffer_size = bytes_malloced;
67 if (bytes_malloced)
[all...]

Completed in 82 milliseconds