Collaboration diagram for Binary Module:Functions | |
| t_jit_err | jit_bin_read_header (t_filehandle fh, ulong *version, long *filesize) |
| Reads the header of a JXF binary file. | |
| t_jit_err | jit_bin_read_chunk_info (t_filehandle fh, ulong *ckid, long *cksize) |
| Reads the the info of a chunk from a JXF binary file. | |
| t_jit_err | jit_bin_write_header (t_filehandle fh, long filesize) |
| Writes the header of a JXF binary file. | |
| t_jit_err | jit_bin_read_matrix (t_filehandle fh, void *matrix) |
| Reads matrix data from a JXF binary file. | |
| t_jit_err | jit_bin_write_matrix (t_filehandle fh, void *matrix) |
| Writes a matrix to a JXF binary file. | |
| t_jit_err jit_bin_read_chunk_info | ( | t_filehandle | fh, |
| ulong * | ckid, | ||
| long * | cksize | ||
| ) |
Reads the the info of a chunk from a JXF binary file.
| fh | t_filehandle file handle |
| ckid | chunk ID (ie JIT_BIN_CHUNK_CONTAINER, JIT_BIN_CHUNK_MATRIX) |
| cksize | the size of the chunk |
| t_jit_err jit_bin_read_header | ( | t_filehandle | fh, |
| ulong * | version, | ||
| long * | filesize | ||
| ) |
Reads the header of a JXF binary file.
| fh | t_filehandle file handle |
| version | version of the binary file format (ie JIT_BIN_VERSION_1) |
| filesize | the size of the file |
| t_jit_err jit_bin_read_matrix | ( | t_filehandle | fh, |
| void * | matrix | ||
| ) |
Reads matrix data from a JXF binary file.
| fh | t_filehandle file handle |
| matrix | the matrix data |
| t_jit_err jit_bin_write_header | ( | t_filehandle | fh, |
| long | filesize | ||
| ) |
Writes the header of a JXF binary file.
| fh | t_filehandle file handle |
| filesize | the size of the file |
| t_jit_err jit_bin_write_matrix | ( | t_filehandle | fh, |
| void * | matrix | ||
| ) |
Writes a matrix to a JXF binary file.
| fh | t_filehandle file handle |
| matrix | the matrix data |