Searched refs:Alloc (Results 1 – 13 of 13) sorted by relevance
/titanic_50/usr/src/lib/libeti/form/common/ |
H A D | ty_alnum.c | 75 if (Alloc(width, int)) in make_alnum() 85 if (Alloc(width, int)) in copy_alnum()
|
H A D | ty_alpha.c | 75 if (Alloc(width, int)) in make_alpha() 85 if (Alloc(width, int)) in copy_alpha()
|
H A D | fieldtype.c | 86 if ((fcheck || ccheck) && Alloc(t, FIELDTYPE)) { in new_fieldtype() 100 if ((left || right) && Alloc(t, FIELDTYPE)) { in link_fieldtype() 179 if (Alloc(n, LINK)) { in _makearg() 207 if (Alloc(n, LINK)) { in _copyarg()
|
H A D | ty_int.c | 84 if (Alloc(n, INTEGER)) { in make_int() 97 if (Alloc(n, INTEGER)) in copy_int()
|
H A D | ty_num.c | 84 if (Alloc(n, NUMERIC)) { in make_num() 97 if (Alloc(n, NUMERIC)) in copy_num()
|
H A D | ty_enum.c | 87 if (Alloc(n, ENUM)) { in make_enum() 106 if (Alloc(n, ENUM)) in copy_enum()
|
H A D | field.c | 155 nbuf >= 0 && Alloc(f, FIELD)) { in new_field() 198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in dup_field() 246 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in link_field()
|
H A D | form.c | 228 if (Alloc(f, FORM)) { in new_form()
|
/titanic_50/usr/src/common/lzma/ |
H A D | Types.h | 209 void *(*Alloc)(void *p, size_t size); member 213 #define IAlloc_Alloc(p, size) (p)->Alloc((p), size)
|
H A D | LzFind.c | 45 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize); in LzInWindow_Create() 162 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes); in AllocRefs()
|
H A D | LzmaDec.c | 953 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 D | LzmaEnc.c | 489 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()
|
/titanic_50/usr/src/lib/libeti/form/inc/ |
H A D | utility.h | 74 #define Alloc(x, t) ((x = (t *) malloc(sizeof (t))) != (t *)0) macro
|