HomeSort by relevance Sort by last modified time
    Searched refs:SizeT (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /external/lzma/C/
Bcj2.h 26 const Byte *buf0, SizeT size0,
27 const Byte *buf1, SizeT size1,
28 const Byte *buf2, SizeT size2,
29 const Byte *buf3, SizeT size3,
30 Byte *outBuf, SizeT outSize);
Bra.h 47 SizeT processed = Convert(data, size, ip, 1);
55 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
56 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
57 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
58 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
    [all...]
Delta.h 14 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
15 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
Lzma86.h 87 SRes Lzma86_GetUnpackSize(const Byte *src, SizeT srcLen, UInt64 *unpackSize);
107 SRes Lzma86_Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen);
LzmaDec.h 55 SizeT dicPos;
56 SizeT dicBufSize;
179 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit,
180 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
196 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
197 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
221 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
Bra86.c 10 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
12 SizeT pos = 0;
28 SizeT d = (SizeT)(p - data - pos);
29 pos = (SizeT)(p - data);
Lzma2Dec.h 49 SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit,
50 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
52 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
53 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
75 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
  /external/valgrind/include/
pub_tool_mallocfree.h 35 #include "pub_tool_basics.h" // SizeT
42 extern void* VG_(malloc) ( const HChar* cc, SizeT nbytes );
44 extern void* VG_(calloc) ( const HChar* cc, SizeT n, SizeT bytes_per_elem );
45 extern void* VG_(realloc) ( const HChar* cc, void* p, SizeT size );
46 extern void VG_(realloc_shrink)( void* ptr, SizeT size );
52 extern void VG_(out_of_memory_NORETURN) ( const HChar* who, SizeT szB );
65 extern void* VG_(perm_malloc) ( SizeT nbytes, Int align );
pub_tool_deduppoolalloc.h 90 extern DedupPoolAlloc* VG_(newDedupPA) ( SizeT poolSzB,
91 SizeT eltAlign,
92 void* (*alloc)(const HChar*, SizeT),
104 SizeT eltSzB, const void *elt);
111 SizeT eltSzB, const void *elt);
127 void (*shrink_block)(void*, SizeT));
pub_tool_replacemalloc.h 43 extern void* VG_(cli_malloc) ( SizeT align, SizeT nbytes );
47 extern SizeT VG_(cli_malloc_usable_size)( void* p );
59 SizeT size, SizeT rz_szB );
80 extern SizeT VG_(malloc_effective_client_redzone_size)(void);
pub_tool_transtab.h 36 void VG_(discard_translations_safely) ( Addr start, SizeT len,
pub_tool_seqmatch.h 89 const void* patt, SizeT szbPatt, UWord nPatt, UWord ixPatt,
90 const void* input, SizeT szbInput, UWord nInput, UWord ixInput,
  /external/valgrind/coregrind/
pub_core_replacemalloc.h 44 void* (*tl_malloc) (ThreadId tid, SizeT n);
45 void* (*tl___builtin_new) (ThreadId tid, SizeT n);
46 void* (*tl___builtin_vec_new) (ThreadId tid, SizeT n);
47 void* (*tl_memalign) (ThreadId tid, SizeT align, SizeT n);
48 void* (*tl_calloc) (ThreadId tid, SizeT nmemb, SizeT n);
52 void* (*tl_realloc) (ThreadId tid, void* p, SizeT size);
53 SizeT (*tl_malloc_usable_size) (ThreadId tid, void* payload);
pub_core_tooliface.h 127 Bool (*tool_read_extra_suppression_info) (Int, HChar**, SizeT*, Int*,
131 SizeT (*tool_get_extra_suppression_info) (const Error*,/*OUT*/HChar*,Int);
132 SizeT (*tool_print_extra_suppression_use) (const Supp*,/*OUT*/HChar*,Int);
161 void* (*tool_malloc) (ThreadId, SizeT);
162 void* (*tool___builtin_new) (ThreadId, SizeT);
163 void* (*tool___builtin_vec_new) (ThreadId, SizeT);
164 void* (*tool_memalign) (ThreadId, SizeT, SizeT);
165 void* (*tool_calloc) (ThreadId, SizeT, SizeT);
    [all...]
pub_core_mallocfree.h 106 extern void* VG_(arena_malloc) ( ArenaId arena, const HChar* cc, SizeT nbytes );
109 SizeT nmemb, SizeT bytes_per_memb );
111 void* ptr, SizeT size );
113 SizeT req_alignB, SizeT req_pszB );
125 void* ptr, SizeT req_pszB);
127 extern SizeT VG_(arena_malloc_usable_size) ( ArenaId aid, void* payload );
129 extern SizeT VG_(arena_redzone_size) ( ArenaId aid );
136 extern void* VG_(arena_perm_malloc) ( ArenaId aid, SizeT nbytes, Int align )
    [all...]
pub_core_aspacemgr.h 88 ( Addr start, SizeT len, UInt prot );
95 ( Addr start, SizeT len, UInt prot );
99 extern Bool VG_(am_is_free_or_resvn)( Addr start, SizeT len );
155 ( Addr start, SizeT len, /*OUT*/Bool* ok );
166 ( Addr start, SizeT len);
173 ( Addr a, SizeT len, UInt prot, UInt flags, Int fd, Off64T offset );
179 extern Bool VG_(am_notify_client_shmat)( Addr a, SizeT len, UInt prot );
190 extern Bool VG_(am_notify_mprotect)( Addr start, SizeT len, UInt prot );
198 extern Bool VG_(am_notify_munmap)( Addr start, SizeT len );
206 ( Addr start, SizeT length, UInt prot, UInt flags, Int fd, Off64T offset)
    [all...]
pub_core_trampoline.h 121 extern SizeT VG_(x86_darwin_REDIR_FOR_strlen)( void* );
122 extern SizeT VG_(x86_darwin_REDIR_FOR_strcmp)( void*, void* );
125 extern SizeT VG_(x86_darwin_REDIR_FOR_strlcat)( char *s1, const char *s2,
126 SizeT size );
131 extern SizeT VG_(amd64_darwin_REDIR_FOR_strlen)( void* );
132 extern SizeT VG_(amd64_darwin_REDIR_FOR_strcmp)( void*, void* );
135 extern SizeT VG_(amd64_darwin_REDIR_FOR_strlcat)( char *s1, const char *s2,
136 SizeT size );
165 extern SizeT VG_(x86_solaris_REDIR_FOR_strcmp)(const HChar *, const HChar *);
166 extern SizeT VG_(x86_solaris_REDIR_FOR_strlen)(const HChar *)
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
priv_readexidx.h 41 UChar* exidx_img, SizeT exidx_size,
42 UChar* extab_img, SizeT extab_size,
priv_readmacho.h 35 #include "pub_core_basics.h" // SizeT
40 extern Bool ML_(is_macho_object_file)( const void* buf, SizeT size );
priv_readelf.h 35 #include "pub_core_basics.h" // SizeT
46 extern Bool ML_(is_elf_object_file)( const void* image, SizeT n_image,
  /external/valgrind/exp-sgcheck/
h_main.h 52 SizeT Seg__size(Seg* seg);
59 void* h_replace_malloc ( ThreadId tid, SizeT n );
60 void* h_replace___builtin_new ( ThreadId tid, SizeT n );
61 void* h_replace___builtin_vec_new ( ThreadId tid, SizeT n );
62 void* h_replace_memalign ( ThreadId tid, SizeT align, SizeT n );
63 void* h_replace_calloc ( ThreadId tid, SizeT nmemb, SizeT size1 );
67 void* h_replace_realloc ( ThreadId tid, void* p_old, SizeT new_size );
68 SizeT h_replace_malloc_usable_size ( ThreadId tid, void* p )
    [all...]
  /external/valgrind/coregrind/m_sigframe/
priv_sigframe.h 41 SizeT size, UInt flags );
  /external/valgrind/drd/
drd_malloc_wrappers.h 33 typedef void (*StartUsingMem)(const Addr a1, const SizeT len, UInt ec_uniq);
34 typedef void (*StopUsingMem)(const Addr a1, const SizeT len);
39 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size);
43 SizeT* const size,
drd_load_store.h 49 void DRD_(trace_mem_access)(const Addr addr, const SizeT size,
53 VG_REGPARM(2) void DRD_(trace_load)(Addr addr, SizeT size);
54 VG_REGPARM(2) void DRD_(trace_store)(Addr addr, SizeT size);
55 void DRD_(clean_memory)(const Addr a1, const SizeT len);
  /external/valgrind/VEX/priv/
main_globals.c 53 void (*vex_log_bytes) ( const HChar*, SizeT nbytes ) = NULL;

Completed in 1530 milliseconds

1 2 3 4 5 6 7 8 9