Home | History | Annotate | Download | only in delphi

Lines Matching refs:Pointer

19   TAlloc = function (AppData: Pointer; Items, Size: Integer): Pointer; cdecl;
20 TFree = procedure (AppData, Block: Pointer); cdecl;
33 internal: Pointer; // not visible by applications
37 AppData: Pointer; // private data object passed to zalloc and zfree
62 stream will raise an exception. Using Seek to move the stream pointer
133 procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
134 out OutBuf: Pointer; out OutBytes: Integer);
143 procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
144 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
151 procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
152 const OutBuf: Pointer; BufSize: Integer);
218 function _malloc(Size: Integer): Pointer; cdecl;
223 procedure _free(Block: Pointer); cdecl;
228 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
254 function zlibAllocMem(AppData: Pointer; Items, Size: Integer): Pointer; cdecl;
260 procedure zlibFreeMem(AppData, Block: Pointer); cdecl;
286 procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
287 out OutBuf: Pointer; out OutBytes: Integer);
290 P: Pointer;
324 procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
325 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
328 P: Pointer;
366 procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
367 const OutBuf: Pointer; BufSize: Integer);