Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tiffmemory(3tiff) [debian man page]

MEMORY(3TIFF)															     MEMORY(3TIFF)

NAME
_TIFFmalloc, _TIFFrealloc, _TIFFfree, _TIFFmemset, _TIFFmemcpy, _TIFFmemcmp, - memory management-related functions for use with TIFF files SYNOPSIS
#include <tiffio.h> tdata_t _TIFFmalloc(tsize_t size); tdata_t _TIFFrealloc(tdata_t buffer, tsize_t size); void _TIFFfree(tdata_t buffer); void _TIFFmemset(tdata_t s, int c, tsize_t n); void _TIFFmemcpy(tdata_t dest, const tdata_t src, tsize_t n); int _TIFFmemcmp(const tdata_t s1, const tdata_t s2, tsize_t n); DESCRIPTION
These routines are provided for writing portable software that uses libtiff; they hide any memory-management related issues, such as deal- ing with segmented architectures found on 16-bit machines. _TIFFmalloc and _TIFFrealloc are used to dynamically allocate and reallocate memory used by libtiff; such as memory passed into the I/O routines. Memory allocated through these interfaces is released back to the system using the _TIFFfree routine. Memory allocated through one of the above interfaces can be set to a known value using _TIFFmemset, copied to another memory location using _TIFFmemcpy, or compared for equality using _TIFFmemcmp. These routines conform to the equivalent ANSI C routines: memset, memcpy, and memcmp, repsectively. DIAGNOSTICS
None. SEE ALSO
malloc(3), memory(3), libtiff(3TIFF) Libtiff library home page: http://www.remotesensing.org/libtiff/ libtiff October 15, 1995 MEMORY(3TIFF)

Check Out this Related Man Page

MEMORY(3T)																MEMORY(3T)

NAME
_TIFFmalloc, _TIFFrealloc, _TIFFfree, _TIFFmemset, _TIFFmemcpy, _TIFFmemcmp, - memory management-related functions for use with TIFF files SYNOPSIS
#include <tiffio.h> tdata_t _TIFFmalloc(tsize_t); tdata_t _TIFFrealloc(tdata_t, tsize_t); void _TIFFfree(tdata_t); void _TIFFmemset(tdata_t, int, tsize_t); void _TIFFmemcpy(tdata_t, const tdata_t, tsize_t); int _TIFFmemcmp(const tdata_t, const tdata_t, tsize_t); DESCRIPTION
These routines are provided for writing portable software that uses libtiff; they hide any memory-management related issues, such as deal- ing with segmented architectures found on 16-bit machines. _TIFFmalloc and _TIFFrealloc are used to dynamically allocate and reallocate memory used by libtiff; such as memory passed into the I/O routines. Memory allocated through these interfaces is released back to the system using the _TIFFfree routine. Memory allocated through one of the above interfaces can be set to a known value using _TIFFmemset, copied to another memory location using _TIFFmemcpy, or compared for equality using _TIFFmemcmp. These routines conform to the equivalent ANSI C routines: memset, memcpy, and memcmp, repsectively. DIAGNOSTICS
None. SEE ALSO
libtiff(3T), malloc(3C), memory(3C) October 15, 1995 MEMORY(3T)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

memory functions crashing in AIX

Hi All, I'm facing the following issue with my shared libraries in 64 bit AIX. Memory related calls such as memset, memcpy, malloc etc are failing miserably. there is something wrong with stack/memory which i can't guess. i've used the following flags to build my libraray: ld -G... (0 Replies)
Discussion started by: abhinav05252
0 Replies

2. HP-UX

more memory utilization in ux Servers

Hi, Please let me know what are all the reasons in increase in the Memory utilisation of ux servers, and the solutions to face those issues caused by the memory utilisation (memeory Likage)? Thanks in Advance! regards, kishan (2 Replies)
Discussion started by: kishan
2 Replies

3. UNIX Desktop Questions & Answers

Regarding Memory Consumption

Hi All I am new to UNIX ,can any one please help in finding MEMORY CONSUMPTION of VLC when i use it as Streaming Server. I need to log the memory consumption for atleast 10 hours. Can any one help me in finding this Please (1 Reply)
Discussion started by: ravikanth17
1 Replies

4. Programming

Memory Allocation Query

When we dynamically allocate the memory say 100 integers say int *x = new int(1000); then does entire chunk of memory gets allocated at once after the completion of the statement? I mean will the the concept of page fault come into picture over here? (3 Replies)
Discussion started by: rupeshkp728
3 Replies

5. AIX

Memory usage in AIX server

Hi All, I have some questions regarding the performance, MEMORY/ Virtual Memory (paging /swap space) Please see the nmon-MEMORY stats from my AIX LPAR. 24 GB --> RAM 3456 MB --> Paging Space │ Memory ─────────────────────────────────────────────────────────────────────── │... (8 Replies)
Discussion started by: System Admin 77
8 Replies

6. UNIX for Dummies Questions & Answers

Memory & Swap utilization

Hi All, We have a sparc server for which we always recieve memory utilization alerts. (97.01% available memory used by the partition (/MEMORY/MEMORY/MEMUsedMemPerc)). But when we check the server using prstat and vmstat the meory utilization is normal and swap space utilization is also normal.... (1 Reply)
Discussion started by: Rockyc3400
1 Replies