HomeSort by relevance Sort by last modified time
    Searched defs:Malloc (Results 1 - 10 of 10) sorted by null

  /onnv/onnv-gate/usr/src/cmd/lvm/rpc.metamedd/
med_mem.c 44 * malloc
47 Malloc(
53 if ((mem = malloc(s)) == NULL) {
68 return (memset(Malloc(s), 0, s));
med_hash.c 39 #define Malloc bkmem_alloc
74 if ((*cp = (Cache *) Malloc(sizeof (**cp))) == NULL) {
75 (void) fprintf(stderr, "Malloc(Cache **cp)");
78 (*cp)->bp = (Bucket *) Malloc(sizeof (*(*cp)->bp) * hsz);
80 (void) fprintf(stderr, "Malloc(Bucket cp->bp)");
133 (Item **) Malloc(sizeof (*bp->itempp) * cp->bsz);
141 (Item **) Malloc(sizeof (*bp->itempp) *
  /onnv/onnv-gate/usr/src/cmd/lvm/rpc.metamhd/
mhd_mem.c 41 Malloc(
47 if ((mem = malloc(s)) == NULL) {
59 return (memset(Malloc(s), 0, s));
69 p = malloc(s);
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_mem.c 60 * malloc
84 Malloc(
90 if ((mem = malloc(s)) == NULL) {
121 return (memset(Malloc(s), 0, s));
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/tools/rds/
rdutil.c 124 Malloc(size_t size)
  /onnv/onnv-gate/usr/src/cmd/prstat/
prutil.c 234 Malloc(size_t size)
  /onnv/onnv-gate/usr/src/cmd/man/src/util/instant.src/
general.h 241 /* Similar to calloc(), malloc(), and realloc(), but check for success.
255 #define Malloc(N,V,T) \
256 { if (!((V) = (T *)malloc((size_t)N*sizeof(T)))) { \
257 perror("Malloc failed -- out of memory. Bailing out."); exit(1); \
327 #define strdup(s) strcpy((char *)malloc(strlen(s)+1), s)
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/parser/
parse.c 294 Malloc(num)
300 library malloc */
303 buf = (char *)malloc (num);
305 fprintf(stderr, "malloc failed. Exiting\n");
441 tp = (struct tree *)Malloc(sizeof(struct tree));
455 tp = (struct tree *)Malloc(sizeof(struct tree));
470 tp = (struct tree *)Malloc(sizeof(struct tree));
572 tp = (struct tree *)Malloc(sizeof(struct tree));
686 cp = (char *)Malloc((unsigned)strlen(token) + 1);
796 Malloc(sizeof(struct index_list))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/include/
lp.h 522 #define Malloc(size) _Malloc(size, __FILE__, __LINE__)
  /onnv/onnv-gate/usr/src/head/
meta.h 64 /* debug malloc include */
69 #include <../lib/malloclib/malloc.h>
900 #define Malloc(s) _Malloc(__FILE__, __LINE__, (s))
907 extern void *Malloc(size_t s);
    [all...]

Completed in 433 milliseconds