Searched defs:bound (Results 1 - 9 of 9) sorted by relevance

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1buf.h10 char *base, *bound, *next; member in struct:code_buffer_rep
25 : (unsigned int)((buf)->bound - (buf)->next + 1))
71 * 3) bound - Points to the top of the array. Used for bounds-checking.
187 (((buf)->next > (buf)->bound) \
/osnet-11/usr/src/lib/libmapmalloc/common/
H A Dtextmem.c217 align(size_t size, int bound) argument
219 if (size < bound)
220 return ((size_t)bound);
222 return (size + bound - 1 - (size + bound - 1) % bound);
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ufs.c170 int level, bound, i, index; local
182 bound = UFS_NINDIR(SUPERBLOCK);
183 while (bn >= bound) {
185 bn -= bound;
186 bound *= UFS_NINDIR(SUPERBLOCK);
204 bound /= UFS_NINDIR(SUPERBLOCK);
205 index = (bn / bound) % UFS_NINDIR(SUPERBLOCK);
217 bound /= UFS_NINDIR(SUPERBLOCK);
218 index = (bn / bound) % UFS_NINDIR(SUPERBLOCK);
/osnet-11/usr/src/cmd/ldap/common/
H A Dldaptest.c268 int bound, all, scope, attrsonly; local
385 bound = 0;
456 bound = 1;
505 bound = 1;
517 bound = 1;
/osnet-11/usr/src/lib/libc/port/threads/
H A Ddoor_calls.c341 * If we were indeed bound to the door then check to see whether
509 * bound to the door; door_xcreate will not return until all
510 * requested threads have at least bound
586 int bound = 0; local
714 bound++;
717 if (bound == n) {
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A DLzmaDec.c42 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
43 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
44 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
72 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
73 #define UPDATE_0_CHECK range = bound;
74 #define UPDATE_1_CHECK range -= bound; code -= bound;
190 UInt32 bound; local
534 UInt32 bound; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_lzma2.c498 uint32_t bound; local
502 bound = (rc->range >> RC_BIT_MODEL_TOTAL_BITS) * *prob;
503 if (rc->code < bound) {
504 rc->range = bound;
508 rc->range -= bound;
509 rc->code -= bound;
/osnet-11/usr/src/lib/libpp/common/
H A Dpplib.h710 struct ppfile* bound[INC_MAX]; /* include bindings */ member in struct:ppfile
/osnet-11/usr/src/lib/libshell/common/edit/
H A Dvi.c1596 register int bound = 0; local
1715 bound = last_virt;
1724 bound = last_virt;
1736 bound = last_virt;
1749 while( incr*(tcur_virt+=incr) <= bound
1751 if( incr*tcur_virt > bound )
1775 bound = last_virt;
1781 while(count >0 && incr*(tcur_virt+=incr) <= bound)

Completed in 41 milliseconds