Searched defs:balance (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/cdt/
H A Ddttreeset.c53 int dttreeset(Dt_t* dt, int minp, int balance) argument
55 int dttreeset(dt, minp, balance)
58 int balance;
79 if(balance)
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dsearch.c384 int balance, escape; local
386 balance = 1;
388 while ( *s && balance ) {
391 balance++;
393 balance--;
399 if ( balance )
447 int parens, balance, escape; local
520 balance = 1;
523 while ( *next && balance ) {
526 balance
[all...]
/illumos-gate/usr/src/common/avl/
H A Davl.c108 * Small arrays to translate between balance (or diff) values and child indices.
289 * Perform a rotation to restore balance at the subtree given by depth.
299 * On input balance is the "new" balance at "node". This value is either
303 avl_rotation(avl_tree_t *tree, avl_node_t *node, int balance) argument
305 int left = !(balance < 0); /* when balance = -2, left will be 0 */
307 int left_heavy = balance >> 1;
341 * we detect this situation by noting that child's balance is not
348 * compute new balance o
[all...]
/illumos-gate/usr/src/cmd/lvm/util/
H A Dmetaset.c36 balance, enumerator in enum:metaset_cmd
2327 cmd = balance;
2621 /* re-balance the replicas */
2622 if (cmd == balance) {
/illumos-gate/usr/src/uts/common/sys/
H A Daudioio.h79 uchar_t balance; /* stereo channel balance */ member in struct:audio_prinfo
134 * These values apply to the balance field to adjust channel gain values
/illumos-gate/usr/src/uts/sun4v/io/
H A Dvldc.c1198 uint64_t len, balance, copy_size; local
1206 len = balance = copy_info.length;
1209 while (balance > 0) {
1212 copy_size = MIN(balance, vldc_max_cookie);
1246 balance -= copy_size;
1266 uint64_t len, balance, copy_size; local
1278 len = balance = copy_info.length;
1281 while (balance > 0) {
1284 copy_size = MIN(balance, vldc_max_cookie);
1314 balance
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dlex.c93 char balance; member in struct:lexdata
274 lp->lexd.noarg = lp->lexd.level= lp->lexd.dolparen = lp->lexd.balance = 0;
426 lp->lexd.balance = c;
435 lp->lexd.balance = c;
1236 lp->lexd.balance = 0;
1241 lp->lexd.balance = 0;
1255 if(lp->lexd.balance)
1257 sfputc(stkp,lp->lexd.balance);
1258 lp->lexd.balance = 0;
/illumos-gate/usr/src/cmd/pr/
H A Dpr.c179 static void balance(int);
904 balance(bline);
975 balance(0);
986 balance(int bline) /* line balancing for last page */ function
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_reads.c4763 int balance, escape; local
4765 balance = 1;
4767 while (*s && balance) {
4770 balance++;
4772 balance--;
4778 if (balance)
4814 int parens, balance, escape; local
4870 balance = 1;
4873 while (*next && balance) {
4876 balance
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c2144 #define NB (NN*2+1) /* Total pages involved in the balance */
2186 static int balance(Btree *pBt, MemPage *pPage, BtCursor *pCur){ function
2566 ** balance the parent page.
2568 rc = balance(pBt, pParent, pCur);
2674 rc = balance(pCur->pBt, pPage, pCur);
2751 rc = balance(pBt, pPage, pCur);
2755 rc = balance(pBt, leafCur.pPage, pCur);
2770 rc = balance(pBt, pPage, pCur);

Completed in 111 milliseconds