Searched refs:tmp_buffsize (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/removefile-33/
H A Dremovefile_sunlink.c86 u_int32_t tmp_buffsize; local
101 tmp_buffsize = MAXBSIZE;
102 if (state->buffsize > tmp_buffsize) {
104 state->buffsize = tmp_buffsize;
112 tmp_buffsize = state->buffsize + 4;
115 if (tmp_buffsize > state->allocated_buffsize) {
122 if ((state->buffer = (unsigned char *)malloc(tmp_buffsize)) == NULL) {
126 state->allocated_buffsize = tmp_buffsize;
/macosx-10.9.5/srm-7/srm/src/
H A Dsunlink.c72 u_int32_t tmp_buffsize; local
87 tmp_buffsize = MAXBSIZE;
88 if (buffsize > tmp_buffsize) {
90 buffsize = tmp_buffsize;
103 tmp_buffsize = buffsize + 4;
106 if (tmp_buffsize > allocated_buffsize) {
113 if ((buffer = (unsigned char *)malloc(tmp_buffsize)) == NULL) {
123 allocated_buffsize = tmp_buffsize;

Completed in 77 milliseconds