/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
xyarray.c | 7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);
|
pstack.c | 20 struct pstack *pstack = zalloc((sizeof(*pstack) +
|
strfilter.c | 65 struct strfilter_node *ret = zalloc(sizeof(struct strfilter_node)); 157 struct strfilter *ret = zalloc(sizeof(struct strfilter));
|
thread.c | 12 struct thread *self = zalloc(sizeof(*self));
|
cgroup.c | 95 cgrp = zalloc(sizeof(*cgrp));
|
probe-finder.c | 65 ln = zalloc(sizeof(struct line_node)); 231 struct debuginfo *self = zalloc(sizeof(struct debuginfo)); 245 struct debuginfo *self = zalloc(sizeof(struct debuginfo)); 273 ref = zalloc(sizeof(struct probe_trace_arg_ref)); 313 tvar->value = zalloc(ret + 2); 430 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref)); 507 ref = zalloc(sizeof(struct probe_trace_arg_ref)); 540 ref = zalloc(sizeof(struct probe_trace_arg_ref)); 1172 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); 1198 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs) [all...] |
probe-event.c | 983 *fieldp = zalloc(sizeof(struct perf_probe_arg_field)); 1061 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs); 1165 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); 1242 buf = zalloc(MAX_CMDLEN); 1401 buf = zalloc(MAX_CMDLEN); [all...] |
callchain.c | 174 new = zalloc(sizeof(*new)); 215 call = zalloc(sizeof(*call));
|
pmu.c | 317 pmu = zalloc(sizeof(*pmu)); 544 format = zalloc(sizeof(*format));
|
/external/chromium_org/third_party/zlib/ |
uncompr.c | 42 stream.zalloc = (alloc_func)0;
|
compress.c | 42 stream.zalloc = (alloc_func)0;
|
/external/chromium_org/components/metrics/ |
compression_utils.cc | 44 stream.zalloc = static_cast<alloc_func>(0); 93 stream.zalloc = static_cast<alloc_func>(0);
|
/external/freetype/src/gzip/ |
zlib.h | 80 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s 82 voidpf opaque; /* private data object passed to zalloc and zfree */ 94 has dropped to zero. The application must initialize zalloc, zfree and 99 parameter for calls of zalloc and zfree. This can be useful for custom 103 zalloc must return Z_NULL if there is not enough memory for the object. 104 If zlib is used in a multi-threaded application, zalloc and zfree must be 107 On 16-bit systems, the functions zalloc and zfree must be able to allocate 110 pointers returned by zalloc for objects of exactly 65536 bytes *must* 164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 179 zalloc, zfree and opaque must be initialized before by the caller [all...] |
inflate.c | 96 if (z->zalloc == Z_NULL) 98 z->zalloc = zcalloc; 103 ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
|
ftgzip.c | 301 zstream->zalloc = (alloc_func)ft_gzip_alloc; 326 zstream->zalloc = NULL; 711 stream.zalloc = (alloc_func)ft_gzip_alloc;
|
zutil.h | 210 #define ZALLOC(strm, items, size) \ 211 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
/external/chromium_org/third_party/skia/src/core/ |
SkFlate.cpp | 42 flateData.zalloc = NULL;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-timechart.c | 171 cursor = zalloc(sizeof(*cursor)); 197 c = zalloc(sizeof(*c)); 240 c = zalloc(sizeof(*c)); 247 sample = zalloc(sizeof(*sample)); 353 struct power_event *pwr = zalloc(sizeof(*pwr)); 375 pwr = zalloc(sizeof(*pwr)); 409 struct wake_event *we = zalloc(sizeof(*we)); 578 pwr = zalloc(sizeof(*pwr)); 593 pwr = zalloc(sizeof(*pwr));
|
builtin-lock.c | 164 st = zalloc(sizeof(struct thread_stat)); 186 st = zalloc(sizeof(struct thread_stat)); 318 new = zalloc(sizeof(struct lock_stat)); 323 new->name = zalloc(sizeof(char) * strlen(name) + 1); 361 seq = zalloc(sizeof(struct lock_seq_stat));
|
builtin-help.c | 168 *p = zalloc(sizeof(**p) + len + 1); 183 struct man_viewer_info_list *new = zalloc(sizeof(*new) + len + 1);
|
/bootable/recovery/applypatch/ |
imgpatch.c | 142 strm.zalloc = Z_NULL; 203 strm.zalloc = Z_NULL;
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 52 zcontext_.zalloc = Z_NULL; 212 zcontext_.zalloc = Z_NULL;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/ |
mem-memcpy.c | 113 *dst = zalloc(length); 117 *src = zalloc(length);
|
/external/openssl/crypto/comp/ |
c_zlib.c | 148 state->istream.zalloc = zlib_zalloc; 160 state->ostream.zalloc = zlib_zalloc; 320 stream.zalloc = (alloc_func)0; 492 ctx->zin.zalloc = Z_NULL; 498 ctx->zout.zalloc = Z_NULL;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/ |
scripts.c | 130 buf = zalloc((sizeof(*sline)) * MAX_LINES);
|