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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/sh/
mapfile-intf 42 # besides the malloc family that must be exported.
46 malloc;
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/common/
lintsup.c 32 #include <malloc.h>
  /onnv/onnv-gate/usr/src/lib/libsqlite/tool/
memleak2.awk 19 /[0-9]+ malloc / {
  /onnv/onnv-gate/usr/src/lib/libbsdmalloc/common/
mapfile-vers 43 malloc = NODIRECT;
llib-lbsdmalloc 34 char *malloc(unsigned nbytes);
  /onnv/onnv-gate/usr/src/lib/libmapmalloc/common/
llib-lmapmalloc 32 #include <malloc.h>
  /onnv/onnv-gate/usr/src/lib/libmtmalloc/tests/
dblfree.c 43 foo = malloc(10);
52 foo = malloc(10);
wideload.c 46 foo = malloc(0); /* prime the pump */
49 printf ("Before big malloc brk is %p request %d\n", foo, request);
50 foo = malloc(request + 100);
52 printf ("After big malloc brk is %p\n", bar);
dirtymem.c 54 foo = (struct a_struct *)malloc(sizeof (struct_o_death));
61 * as the last time. Turn the rotor with malloc until
65 leak = malloc(sizeof (struct_o_death));
67 fprintf(stderr, "malloc struct again\n");
69 foo = malloc(sizeof (struct_o_death));
failwide.c 47 foo = malloc(request/2); /* prime the pump */
50 printf ("Before big malloc brk is %p request %d\n", foo, request);
51 foo = malloc(request + request/2);
53 printf ("After big malloc brk is %p, should be the same.\n", bar);
  /onnv/onnv-gate/usr/src/cmd/ypcmd/revnetgroup/
util.h 44 #define MALLOC(object_type) ((object_type *) malloc(sizeof(object_type)))
49 (dst = malloc((unsigned)strlen(src)+1), (void) strcpy(dst,src))
52 (dst = (char *) malloc((unsigned)(num) + 1),\
56 extern char *malloc();
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
calloc.c 30 #include <malloc.h>
51 ptr_t malloc();
54 mp = malloc(num);
crypt.c 41 extern char *malloc();
44 iobuf = malloc((unsigned)16);
on_exit.c 30 char *malloc();
46 (struct handlers *)malloc(sizeof (*h));
  /onnv/onnv-gate/usr/src/cmd/sgs/tsort/common/
zmalloc.c 35 * malloc(3C) with error checking
47 if ((p = malloc(n)) == NULL)
  /onnv/onnv-gate/usr/src/cmd/tnf/prex/
new.c 47 ptr = malloc(size);
  /onnv/onnv-gate/usr/src/lib/krb5/dyn/
dynP.h 37 #include <malloc.h>
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/bsd/
strdup.c 12 char *dst = malloc(strlen(src) + 1);
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/common/
ext.h 51 extern char *malloc();
  /onnv/onnv-gate/usr/src/head/
malloc.h 64 void *malloc(size_t);
73 void *malloc();
  /onnv/onnv-gate/usr/src/lib/libmalloc/common/
llib-lmalloc 32 #include <malloc.h>
  /onnv/onnv-gate/usr/src/lib/watchmalloc/common/
mapfile-vers 45 malloc = NODIRECT;
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
copy_data.c 46 if (!(tempdata = (krb5_data *)malloc(sizeof(*tempdata))))
51 if (!(tempdata->data = malloc(tempdata->length))) {
72 if (!(outdata->data = malloc(outdata->length))) {
  /onnv/onnv-gate/usr/src/stand/lib/sa/
malloc.c 32 * For documentation on these functions, see malloc(3C).
36 malloc(size_t size) function
55 addr = malloc(number * size);
68 addr = malloc(size);
  /onnv/onnv-gate/usr/src/cmd/audio/include/
libaudio_impl.h 32 #include <malloc.h>
49 * MALLOC - allocate memory
50 * foo = MALLOC(struct foobar); -- alloc 1 foobar
64 #define MALLOC(type) \
65 (type *)(long)malloc(sizeof (type))

Completed in 6590 milliseconds

1 2 3 4 5 6 7 8 91011>>