Home
last modified time | relevance | path

Searched refs:Alloc (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/lib/libeti/form/common/
H A Dty_alnum.c73 if (Alloc(width, int)) in make_alnum()
83 if (Alloc(width, int)) in copy_alnum()
H A Dty_alpha.c73 if (Alloc(width, int)) in make_alpha()
83 if (Alloc(width, int)) in copy_alpha()
H A Dfieldtype.c84 if ((fcheck || ccheck) && Alloc(t, FIELDTYPE)) { in new_fieldtype()
98 if ((left || right) && Alloc(t, FIELDTYPE)) { in link_fieldtype()
177 if (Alloc(n, LINK)) { in _makearg()
205 if (Alloc(n, LINK)) { in _copyarg()
H A Dty_int.c82 if (Alloc(n, INTEGER)) { in make_int()
95 if (Alloc(n, INTEGER)) in copy_int()
H A Dty_num.c82 if (Alloc(n, NUMERIC)) { in make_num()
95 if (Alloc(n, NUMERIC)) in copy_num()
H A Dty_enum.c85 if (Alloc(n, ENUM)) { in make_enum()
104 if (Alloc(n, ENUM)) in copy_enum()
H A Dfield.c157 nbuf >= 0 && Alloc(f, FIELD)) { in new_field()
200 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in dup_field()
248 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in link_field()
H A Dform.c226 if (Alloc(f, FORM)) { in new_form()
/illumos-gate/usr/src/common/lzma/
H A DTypes.h209 void *(*Alloc)(void *p, size_t size); member
213 #define IAlloc_Alloc(p, size) (p)->Alloc((p), size)
H A DLzFind.c45 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize); in LzInWindow_Create()
162 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes); in AllocRefs()
H A DLzmaDec.c953 p->probs = (CLzmaProb *)alloc->Alloc(alloc, numProbs * sizeof(CLzmaProb)); in LzmaDec_AllocateProbs2()
980 p->dic = (Byte *)alloc->Alloc(alloc, dicBufSize); in LzmaDec_Allocate()
H A DLzmaEnc.c489 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE); in RangeEnc_Alloc()
1723 p = alloc->Alloc(alloc, sizeof(CLzmaEnc)); in LzmaEnc_Create()
1934 p->litProbs = (CLzmaProb *)alloc->Alloc(alloc, (0x300 << lclp) * sizeof(CLzmaProb)); in LzmaEnc_Alloc()
1935 p->saveState.litProbs = (CLzmaProb *)alloc->Alloc(alloc, (0x300 << lclp) * sizeof(CLzmaProb)); in LzmaEnc_Alloc()
/illumos-gate/usr/src/lib/libeti/form/inc/
H A Dutility.h72 #define Alloc(x, t) ((x = (t *) malloc(sizeof (t))) != (t *)0) macro