Searched refs:balance (Results 1 - 25 of 82) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/usr.bin/menuc/
H A Davl.c42 * short balance; / * For the balanced tree. * /
102 new_id->balance = 0;
113 (*root)->balance--;
115 switch ((*root)->balance)
124 if (B->balance <= 0)
130 A->balance = 0;
131 B->balance = 0;
141 switch ((*root)->balance)
144 A->balance = 1;
145 B->balance
[all...]
H A Dmdb.h52 short balance; /* For the balanced tree. */ member in struct:id_rec
/netbsd-6-1-5-RELEASE/usr.bin/msgc/
H A Dmsgdb.h51 short balance; member in struct:id_rec
/netbsd-6-1-5-RELEASE/gnu/dist/bc/bc/
H A Dutil.c408 new_id->balance = 0;
419 (*root)->balance --;
421 switch ((*root)->balance)
430 if (B->balance <= 0)
436 A->balance = 0;
437 B->balance = 0;
447 switch ((*root)->balance)
450 A->balance = 1;
451 B->balance = 0;
454 A->balance
[all...]
H A Dbcdefs.h166 short balance; /* For the balanced tree. */ member in struct:id_rec
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/libldap/
H A Dfilter.c156 int balance, escape; local
158 balance = 1;
160 while ( *s && balance ) {
163 balance++;
165 balance--;
171 if ( balance ) s++;
334 int parens, balance, escape; local
436 balance = 1;
440 while ( *next && balance ) {
443 balance
784 int parens, balance, escape; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/grep/src/
H A Dkwset.c58 char balance; /* Difference in depths of subtrees. */ member in struct:tree
188 link->balance = 0;
196 /* Back up the tree fixing the balance flags. */
197 while (depth && !links[depth]->balance)
200 --links[depth]->balance;
202 ++links[depth]->balance;
207 if (depth && ((dirs[depth] == L && --links[depth]->balance)
208 || (dirs[depth] == R && ++links[depth]->balance)))
210 switch (links[depth]->balance)
218 t->balance
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/libgrep/
H A Dkwset.c59 char balance; /* Difference in depths of subtrees. */ member in struct:tree
189 link->balance = 0;
197 /* Back up the tree fixing the balance flags. */
198 while (depth && !links[depth]->balance)
201 --links[depth]->balance;
203 ++links[depth]->balance;
208 if (depth && ((dirs[depth] == L && --links[depth]->balance)
209 || (dirs[depth] == R && ++links[depth]->balance)))
211 switch (links[depth]->balance)
219 t->balance
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/audio/play/
H A Dplay.c62 static int balance; variable
90 decode_int(optarg, &balance);
91 if (balance < 0 || balance > 64)
92 errx(1, "balance must be between 0 and 63");
424 if (balance)
425 info.play.balance = balance;
466 "-b balance (0-63)\n\t"
/netbsd-6-1-5-RELEASE/gnu/dist/bc/h/
H A Dbcdefs.h155 short balance; /* For the balanced tree. */ member in struct:id_rec
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/common/avl/
H A Davl.c97 * Small arrays to translate between balance (or diff) values and child indeces.
277 * Perform a rotation to restore balance at the subtree given by depth.
287 * On input balance is the "new" balance at "node". This value is either
291 avl_rotation(avl_tree_t *tree, avl_node_t *node, int balance) argument
293 int left = !(balance < 0); /* when balance = -2, left will be 0 */
295 int left_heavy = balance >> 1;
329 * we detect this situation by noting that child's balance is not
336 * compute new balance o
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/sunos/
H A Dsunos.h139 u_char balance; member in struct:sunos_audio_prinfo
/netbsd-6-1-5-RELEASE/usr.bin/audio/record/
H A Drecord.c69 static int balance; variable
103 decode_int(optarg, &balance);
104 if (balance < 0 || balance > 63)
105 errx(1, "balance must be between 0 and 63");
275 SETINFO (balance)
771 "-b balance (0-63)\n\t"
/netbsd-6-1-5-RELEASE/bin/csh/
H A Dset.c62 static void balance(struct varent *, int, int);
487 balance(p, f, 0);
573 balance(pp, f, 1);
661 balance(struct varent *p, int f, int d) function
/netbsd-6-1-5-RELEASE/sys/dev/
H A Daudio.c3282 int gain, int balance)
3292 if (balance == AUDIO_MID_BALANCE) {
3294 } else if (balance < AUDIO_MID_BALANCE) {
3296 r = (balance * gain) / AUDIO_MID_BALANCE;
3299 l = ((AUDIO_RIGHT_BALANCE - balance) * gain)
3302 DPRINTF(("au_set_gain: gain=%d balance=%d, l=%d r=%d\n",
3303 gain, balance, l, r));
3456 /* balance should be > AUDIO_MID_BALANCE */
3461 /* balance should be < AUDIO_MID_BALANCE */
3573 u_char balance; local
3281 au_set_gain(struct audio_softc *sc, struct au_mixer_ports *ports, int gain, int balance) argument
4376 u_char balance; local
4399 u_char balance; local
4421 u_char balance; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/audio/ctl/
H A Dctl.c107 { "play.balance", &info.play.balance, UCHAR, 0 },
126 { "record.balance", &info.record.balance, UCHAR, 0 },
/netbsd-6-1-5-RELEASE/sys/sys/
H A Daudioio.h67 u_char balance; /* stereo channel balance */ member in struct:audio_prinfo
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dc-typeck.c6101 int balance;
7074 r->balance = 0;
7082 if (p->balance == 0)
7083 p->balance = -1;
7084 else if (p->balance < 0)
7086 if (r->balance < 0)
7094 p->balance = 0;
7095 r->balance = 0;
7125 p->balance = t->balance <
6075 int balance; member in struct:init_node
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dc-typeck.c4750 int balance;
5666 r->balance = 0;
5674 if (p->balance == 0)
5675 p->balance = -1;
5676 else if (p->balance < 0)
5678 if (r->balance < 0)
5686 p->balance = 0;
5687 r->balance = 0;
5717 p->balance = t->balance <
4725 int balance; member in struct:init_node
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libntp/
H A Daudio.c497 "audio: samples %d, eof %d, pause %d, error %d, waiting %d, balance %d\n",
500 info.record.waiting, info.record.balance);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/ia64/
H A Dmode1o.asm95 C the best approach, on balance. It could be done bitwise, but that would
145 C would be normal internally from say mpn/generic/perfsqr.c. On balance,
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/nslint-2.1a3/
H A Dconfig.sub223 balance)
/netbsd-6-1-5-RELEASE/usr.bin/xlint/lint1/
H A Dtree.c61 static void balance(op_t, tnode_t **, tnode_t **);
489 balance(op, &ln, &rn);
1529 balance(op_t op, tnode_t **lnp, tnode_t **rnp) function
2406 balance(NOOP, &ntn, &ctn);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/buildaux/
H A Dconfig.sub450 balance)
/netbsd-6-1-5-RELEASE/crypto/external/cpl/trousers/dist/
H A Dconfig.sub458 balance)

Completed in 467 milliseconds

1234