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

123

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/cx25840/
H A Dcx25840-audio.c257 /* balance is 7 bit, 0 to -96dB */
260 int balance = cx25840_read(client, 0x8d5) & 0x7f; local
263 balance = 0x80 - balance;
265 balance = 0x80 + balance;
266 return balance << 8;
269 static void set_balance(struct i2c_client *client, int balance) argument
271 int bal = balance >> 8;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/
H A Dwm8739.c60 u16 balance; member in struct:wm8739_state
115 ctrl->value = state->balance;
139 state->balance = ctrl->value;
147 work_l = (min(65536 - state->balance, 32768) * state->volume) / 32768;
148 work_r = (min(state->balance, (u16)32768) * state->volume) / 32768;
292 state->balance = 32768;
H A Dtda7432.c4 * Handles audio functions: volume, balance, tone, loudness
26 * change balance only if flaged to
28 * Revision: 0.5 - Fixed odd balance problem
97 * The TDA7432 controls basic audio functions like volume, balance,
375 * V4L balance is 0 to 65535, middle is 32768
383 /* right is attenuated, balance shifted left */
384 va->balance = (32768 - 1057*(t->rf));
386 /* left is attenuated, balance shifted right */
387 va->balance = (32768 + 1057*(t->lf));
436 if (va->balance < 3276
[all...]
H A Dtda9875.c297 va->balance=(32768*min(left,right))/
299 va->balance=(left<right)?
300 (65535-va->balance) : va->balance;
314 left = (min(65536 - va->balance,32768) *
316 right = (min(va->balance,(__u16)32768) *
344 //printk("tda9875 bal:%04x vol:%04x bass:%04x treble:%04x\n",va->balance,va->volume,va->bass,va->treble);
H A Dtvmixer.c140 va.balance = (32768*min(left,right)) / (va.volume ? va.volume : 1);
141 va.balance = (left<right) ? (65535-va.balance) : va.balance;
148 left = (min(65536 - va.balance,32768) *
150 right = (min(va.balance,(u16)32768) *
H A Dmsp3400-driver.h88 int balance, loudness; member in struct:msp_state
H A Dmsp3400-driver.c310 bal = (u8)((state->balance / 256) - 128);
315 v4l_dbg(1, msp_debug, client, "balance=%d bass=%d treble=%d loudness=%d\n",
316 state->balance, state->bass, state->treble, state->loudness);
405 ctrl->value = state->balance;
440 state->balance = 32768;
470 state->balance = ctrl->value;
526 va->balance = state->volume ? state->balance : 32768;
544 state->balance = va->balance;
[all...]
H A Dtvaudio.c1625 va->balance = (32768*min(chip->left,chip->right))/
1628 va->balance = 32768;
1649 chip->left = (min(65536 - va->balance,32768) *
1651 chip->right = (min(va->balance,(__u16)32768) *
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dkwset.c57 char balance; /* Difference in depths of subtrees. */ member in struct:tree
187 link->balance = 0;
195 /* Back up the tree fixing the balance flags. */
196 while (depth && !links[depth]->balance)
199 --links[depth]->balance;
201 ++links[depth]->balance;
206 if (depth && ((dirs[depth] == L && --links[depth]->balance)
207 || (dirs[depth] == R && ++links[depth]->balance)))
209 switch (links[depth]->balance)
217 t->balance
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/
H A Dex_tpcb.c109 u_int32_t balance; member in struct:_defrec
299 u_int32_t balance, idnum, oflags; local
305 balance = 500000;
321 populate(dbp, idnum, balance, accounts, "account");
350 populate(dbp, idnum, balance, branches, "branch");
379 populate(dbp, idnum, balance, tellers, "teller");
410 populate(dbp, start_id, balance, nrecs, msg)
412 u_int32_t start_id, balance;
430 drec.balance = balance;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/
H A DTpcbExample.cpp103 u_int32_t balance; member in struct:Defrec
277 u_int32_t balance, idnum; local
282 balance = 500000;
294 populateTable(dbp, idnum, balance, accounts, "account");
322 populateTable(dbp, idnum, balance, branches, "branch");
351 populateTable(dbp, idnum, balance, tellers, "teller");
381 u_int32_t start_id, u_int32_t balance,
392 drec.balance = balance;
588 rec.balance
380 populateTable(Db *dbp, u_int32_t start_id, u_int32_t balance, int nrecs, const char *msg) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
H A DTpcbExample.cpp10 u_int32_t balance; member in struct:Defrec
83 u_int32_t balance, idnum; local
88 balance = 500000;
106 populateTable(dbp, idnum, balance, accounts, "account")) != 0)
137 if ((err = populateTable(dbp, idnum, balance, branches, "branch")) != 0)
169 if ((err = populateTable(dbp, idnum, balance, tellers, "teller")) != 0)
208 u_int32_t start_id, u_int32_t balance,
224 drec.balance = balance;
420 rec.balance
207 populateTable(DB *dbp, u_int32_t start_id, u_int32_t balance, int nrecs, const char *msg) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/sound/
H A Dainstr_gf1.h78 unsigned char balance; member in struct:gf1_wave
157 __u8 balance; member in struct:gf1_xwave
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/
H A DTpcbExample.java123 int balance, idnum;
129 balance = 500000;
145 populateTable(dbp, idnum, balance, h_nelem, "account");
180 populateTable(dbp, idnum, balance, h_nelem, "branch");
215 populateTable(dbp, idnum, balance, h_nelem, "teller");
251 int start_id, int balance, int nrecs, String msg) {
262 drec.set_balance(balance);
700 // u_int32_t balance;
250 populateTable(Database dbp, int start_id, int balance, int nrecs, String msg) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/core/seq/instr/
H A Dainstr_gf1.c82 wp->balance = xp.balance;
223 xp.balance = wp->balance;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dqueries.c250 char balance[ 60 ]; local
255 sprintf( balance, "$%1.2f\n", printer->p_balance );
256 append( out, balance, strlen( balance ));
H A Dlp.c324 char balance[ 22 ]; local
331 cost, balance );
333 printer->p_balance = atof( balance ) + atof( cost );
389 char balance[ 22 ]; local
451 printer->p_srvid, cost, balance )) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/pvrusb2/
H A Dpvrusb2-hdw-internal.h314 VCREATE_DATA(balance);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/ubiqx/
H A Dubi_BinTree.h93 * Also, the balance and gender fields of the node were declared as
104 * Added the AVL field 'balance' to the ubi_btNode structure. This means
345 * balance - only used by the AVL tree module. This field indicates
346 * the height balance at a given node. See ubi_AVLtree for
355 char balance; member in struct:ubi_btNodeStruct
H A Dubi_BinTree.c91 * Also, the balance and gender fields of the node were declared as
102 * Added the AVL field 'balance' to the ubi_btNode structure. This means
535 NodePtr->balance = ubi_trEQUAL;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dvideodev.h115 __u16 balance; /* Stereo balance */ member in struct:video_audio
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dwavpack.c212 int balance = (sl[1] - sl[0] + br[1] + 1) >> 1; local
213 if(balance > br[0]){
216 }else if(-balance > br[0]){
220 br[1] = br[0] + balance;
221 br[0] = br[0] - balance;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/dvb/ttpci/
H A Dav7110_av.c283 int err, vol, val, balance = 0; local
313 balance = ((volright - volleft) * 127) / vol;
314 msp_writereg(av7110, MSP_WR_DSP, 0x0001, balance << 8);
323 balance = ((volright - volleft) * 127) / vol;
324 msp_writereg(av7110, MSP_WR_DSP, 0x0001, balance << 8);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-q.c97 static int balance (struct ohci_hcd *ohci, int interval, int load) function
239 branch = balance (ohci, ed->interval, ed->load);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/kernel/
H A Dsched.c1259 * balance conservatively.
1379 * sched_balance_self: balance the current task (running on cpu) in domains
2230 * 2) too many balance attempts have failed.
2371 * should be moved to restore balance via the imbalance parameter.
2376 cpumask_t *cpus, int *balance)
2448 if (local_group && balance_cpu != this_cpu && balance) {
2449 *balance = 0;
2478 * balance.
2485 * no need to do power savings balance at this domain
2702 int *balance)
2374 find_busiest_group(struct sched_domain *sd, int this_cpu, unsigned long *imbalance, enum idle_type idle, int *sd_idle, cpumask_t *cpus, int *balance) argument
2700 load_balance(int this_cpu, struct rq *this_rq, struct sched_domain *sd, enum idle_type idle, int *balance) argument
3125 int balance = 1; local
[all...]

Completed in 387 milliseconds

123