Lines Matching refs:tmp_buffer
1734 u8* tmp_buffer = NULL; in THPUtyCopyTHPFile() local
1748 tmp_buffer = (u8*)THPMalloc(THPUTY_COPY_SIZE); in THPUtyCopyTHPFile()
1749 if (tmp_buffer == NULL) in THPUtyCopyTHPFile()
1794 rtn = fread(tmp_buffer, read_size, 1, ip); in THPUtyCopyTHPFile()
1802 rtn = fwrite(tmp_buffer, read_size, 1, op); in THPUtyCopyTHPFile()
1917 tmp_buffer = THPMalloc(old_size + THPUTY_MAX_PADDING_SIZE); in THPUtyCopyTHPFile()
1918 if (tmp_buffer == NULL) in THPUtyCopyTHPFile()
1927 rtn = fread(tmp_buffer, old_size, 1, ip); in THPUtyCopyTHPFile()
1936 frame_header = (THPFrameHeader *)tmp_buffer; in THPUtyCopyTHPFile()
1950 rtn = fwrite(tmp_buffer, frame_size, 1, op); in THPUtyCopyTHPFile()
1973 THPFree(tmp_buffer); in THPUtyCopyTHPFile()
1974 tmp_buffer = NULL; in THPUtyCopyTHPFile()
2123 if (tmp_buffer) in THPUtyCopyTHPFile()
2125 THPFree(tmp_buffer); in THPUtyCopyTHPFile()