Searched refs:SIZE (Results 1 - 25 of 36) sorted by relevance

12

/osnet-11/usr/src/lib/libc/port/gen/
H A Dmalloc.c146 SIZE(tp) = size;
156 SETBIT0(SIZE(tp));
198 n = SIZE(sp);
215 o_bit1 = SIZE(sp) & BIT1;
216 SIZE(sp) = n;
236 if (SIZE(tp) >= size) {
237 if (n == 0 || n >= SIZE(tp)) {
239 n = SIZE(tp);
264 if (Bottom && size <= SIZE(Bottom)) {
266 CLRBITS01(SIZE(s
[all...]
H A Dmemalign.c128 blksize = SIZE(blk);
160 SIZE(aligned_blk) = blksize | BIT0;
162 SIZE(blk) = frag_size | BIT0 | ISBIT1(SIZE(blk));
175 blksize = SIZE(aligned_blk);
176 SIZE(aligned_blk) = nbytes;
178 SETOLD01(SIZE(aligned_blk), blksize);
180 SIZE(blk) = frag_size | BIT0;
H A Dmallint.h84 #define SIZE(b) ((b)->t_s) macro
121 #define SIZE(b) (((b)->t_s).w_i) macro
144 #define SELFP(b) ((TREE **)(((uintptr_t)(b)) + SIZE(b)))
146 #define NEXT(b) ((TREE *)(((uintptr_t)(b)) + SIZE(b) + WORDSIZE))
147 #define BOTTOM(b) ((DATA(b) + SIZE(b) + WORDSIZE) == Baddr)
/osnet-11/usr/src/lib/libc/sparc/crt/
H A Dstret.s33 #define SIZE %o1 define
66 and SIZE,MASK,TEMP
82 subcc SIZE,BYTES_PER_MOVE,SIZE
83 LD [FROM+SIZE],TEMP
85 ST TEMP,[TO+SIZE] /* (DELAY SLOT) */
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dxsize.h102 #define size_overflow_p(SIZE) \
103 ((SIZE) == SIZE_MAX)
105 #define size_in_bounds_p(SIZE) \
106 ((SIZE) != SIZE_MAX)
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmbest.c100 if(SIZE(b) & (BUSY|JUNK|PFREE))
106 if(SIZE(b) < MAXTINY)
107 return vmonlist(TINY(vd)[INDEX(SIZE(b))], b);
126 if((SIZE(b)&BUSY) == 0 || (SIZE(b)&JUNK) == 0)
133 for(t = CACHE(vd)[C_INDEX(SIZE(b))]; t; t = LINK(t))
138 if(C_INDEX(SIZE(b)) < S_CACHE)
155 if(SIZE(node) & BITS)
159 if(SIZE(t) != SIZE(nod
[all...]
H A Dvmclear.c75 SIZE(tp) = size;
79 { SIZE(tp) |= BUSY|JUNK;
80 LINK(tp) = CACHE(vd)[C_INDEX(SIZE(tp))];
81 CACHE(vd)[C_INDEX(SIZE(tp))] = tp;
86 SIZE(tp) = BUSY;
H A Dvmprivate.c83 { s = SIZE(vd->wild) + sizeof(Head_t);
124 { /**/ ASSERT((SIZE(bp)&~BITS) == 0);
126 if(!ISPFREE(SIZE(bp)) )
127 SIZE(bp) = size - sizeof(Head_t);
133 else REMOVE(vd,bp,INDEX(SIZE(bp)),t,(*searchf));
134 SIZE(bp) += size;
141 SIZE(bp) += size;
145 SIZE(bp) = size - sizeof(Head_t);
168 SIZE(bp) = seg->baddr - (Vmuchar_t*)bp - 2*sizeof(Head_t);
185 seg->size = SIZE(b
[all...]
H A Dvmstat.c85 { s = SIZE(b)&~BITS;
86 if(ISJUNK(SIZE(b)) || !ISBUSY(SIZE(b)))
106 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
110 { if((s = seg->free ? (SIZE(seg->free) + sizeof(Head_t)) : 0) > 0)
121 st->n_free += ((int)SIZE(seg->free)+sizeof(Head_t))/(int)s;
H A Dvmopen.c154 SIZE(b) = seg->baddr - (Vmuchar_t*)b - 2*sizeof(Head_t);
156 /**/ ASSERT(SIZE(b)%ALIGN == 0);
161 SIZE(NEXT(b)) = BUSY|PFREE;
H A Dvmtrace.c265 { if(ISJUNK(SIZE(b)) || !ISBUSY(SIZE(b)))
275 else s = SIZE(b)&~BITS;
279 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
H A Dvmpool.c83 (s = (SIZE(tp) & ~BITS) + sizeof(Head_t)) >= size )
89 { s = (SIZE(tp) & ~BITS) + sizeof(Head_t);
102 { SIZE(next) = POOLFREE;
110 { SIZE(next) = s - sizeof(Head_t);
163 if(SIZE(tp) == POOLFREE) /* may be a coincidence - make sure */
213 SIZE(bp) = POOLFREE;
320 if(seg->size == (s = SIZE(fp)&~BITS))
H A Dvmhdr.h326 #define TINIEST(b) (SIZE(b) == TINYSIZE) /* this type uses TLEFT */
380 #define SIZE(b) ((b)->head.head.size.size) macro
389 #define SELF(b) ((Block_t**)((b)->body.data + SIZE(b) - sizeof(Block_t*)) )
391 #define NEXT(b) ((Block_t*)((b)->body.data + SIZE(b)) )
411 func((vd),SIZE(b),(b)) )
414 #define SEGWILD(b) (((b)->body.data+SIZE(b)+sizeof(Head_t)) >= SEG(b)->baddr)
415 #define VMWILD(vd,b) (((b)->body.data+SIZE(b)+sizeof(Head_t)) >= vd->seg->baddr)
431 #define PFDATA(d) ((Head_t*)((Vmuchar_t*)(d)+(SIZE(BLOCK(d))&~BITS)-sizeof(Head_t)) )
455 #define DBBSIZE(d) (SIZE(DBBLOCK(d)) & ~BITS)
H A Dvmlast.c64 { if(!(tp = seg->free) || (SIZE(tp)+sizeof(Head_t)) < size)
85 if((s = SIZE(tp)) >= size)
87 SIZE(next) = s - size;
150 SIZE(fp) = ((Vmuchar_t*)BLOCK(seg->baddr) - (Vmuchar_t*)data) - sizeof(Head_t);
247 SIZE(BLOCK(seg->baddr)) = BUSY;
270 SIZE(tp) = s - sizeof(Head_t);
289 SIZE(tp) = (s - size) - sizeof(Head_t);
375 if(seg->size == (s = SIZE(fp)&~BITS))
443 SIZE(next) = s - sizeof(Head_t);
H A Dvmdebug.c301 if(ISBUSY(SIZE(b)) && !ISJUNK(SIZE(b)) )
310 if((Vmuchar_t*)addr >= data && (Vmuchar_t*)addr < data+SIZE(b))
311 { if(ISBUSY(SIZE(b)) && !ISJUNK(SIZE(b)) )
320 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
360 { if(ISBUSY(SIZE(b)) && !ISJUNK(SIZE(b)) )
365 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
630 if(ISJUNK(SIZE(
[all...]
/osnet-11/usr/src/lib/watchmalloc/common/
H A Dmalloc.c92 size_t sz = SIZE(tp) / sizeof (uint64_t);
135 SIZE(tp) = size;
155 SETBIT0(SIZE(tp));
198 if (SIZE(tp) >= size) { /* branch left */
199 if (n == 0 || n >= SIZE(tp)) {
201 n = SIZE(tp);
237 if (size <= SIZE(Bottom)) {
239 CLRBITS01(SIZE(sp));
255 CLRBIT1(SIZE(tmp));
256 ASSERT(ISBIT0(SIZE(tm
[all...]
H A Dmallint.h92 #define SIZE(b) (((b)->t_s).w_i) macro
/osnet-11/usr/src/grub/grub-0.97/util/
H A Dgrub-image.in80 SIZE=`expr $tarsize \* 130 / 100 / 1024`k
81 echo "# Creating $SIZE disk image \`$image'"
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dt-strl.c24 #define SIZE 128 macro
33 char src1[N][SIZE], dst1[SIZE], dst2[SIZE];
/osnet-11/usr/src/lib/libc/amd64/unwind/
H A Dunwind_context.h149 SIZE, enumerator in enum:operand_desc
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/examples/
H A Dcustomize.cgi43 print basefont({SIZE=>$preferences{size}}) if $preferences{'size'} > 0;
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_service_stash.c60 # define strerror_r(ERRNUM, BUF, SIZE) (strlcpy((BUF), strerror(ERRNUM), (SIZE)), (BUF)[(SIZE)-1] = 0)
/osnet-11/usr/src/lib/libndr/common/
H A Dndr_process.c1767 #define MAKE_BASIC_TYPE_BASE(TYPE, SIZE) \
1771 (SIZE)-1, /* alignment */ \
1774 SIZE, /* pdu_size_fixed_part */ \
1776 SIZE, /* c_size_fixed_part */ \
1780 return (ndr_basic_integer(ref, SIZE)); \
1783 #define MAKE_BASIC_TYPE_STRING(TYPE, SIZE) \
1787 (SIZE)-1, /* alignment */ \
1791 SIZE, /* pdu_size_variable_part */ \
1793 SIZE, /* c_size_variable_part */ \
1799 #define MAKE_BASIC_TYPE(TYPE, SIZE) \
[all...]
H A Dlibndr.h272 * Number of bytes required to align SIZE on the next dword/4-byte
275 #define NDR_ALIGN4(SIZE) ((4 - (SIZE)) & 3);
/osnet-11/usr/src/lib/libcmd/common/
H A Dstty.c105 #define SIZE 6 macro
211 { "cs5", SIZE, C_FLAG, 0, CSIZE, CS5 , C("Char size 5") },
212 { "cs6", SIZE, C_FLAG, 0, CSIZE, CS6 , C("Char size 6") },
213 { "cs7", SIZE, C_FLAG, 0, CSIZE, CS7 , C("Char size 7") },
214 { "cs8", SIZE, C_FLAG, 0, CSIZE, CS8 , C("Char size 8") },
554 case SIZE:
762 case SIZE:
847 listgroup(sp,SIZE,"Number of bits in a character");

Completed in 132 milliseconds

12