Searched refs:symb (Results 1 - 5 of 5) sorted by relevance

/linux-master/drivers/media/dvb-frontends/
H A Dstv0900_sw.c326 u32 symb; local
332 symb = srate << 4;
333 symb /= (mclk >> 12);
335 symb = srate << 6;
336 symb /= (mclk >> 10);
338 symb = srate << 9;
339 symb /= (mclk >> 7);
342 stv0900_write_reg(intp, SFRINIT1, (symb >> 8) & 0x7f);
343 stv0900_write_reg(intp, SFRINIT1 + 1, (symb & 0xff));
350 u32 symb; local
378 u32 symb; local
1512 symb, local
[all...]
H A Dstv0910.c1014 u16 symb; local
1049 symb = muldiv32(p->symbol_rate, 65536, state->base->mclk);
1051 ((symb >> 8) & 0x7F));
1052 write_reg(state, RSTV0910_P2_SFRINIT0 + state->regoff, (symb & 0xFF));
/linux-master/tools/perf/arch/powerpc/util/
H A Dsym-handling.c14 struct symbol *symb __maybe_unused)
/linux-master/tools/perf/util/
H A Dsymbol.h231 int arch__choose_best_symbol(struct symbol *syma, struct symbol *symb);
H A Dsymbol.c131 struct symbol *symb __maybe_unused)
142 static int choose_best_symbol(struct symbol *syma, struct symbol *symb) argument
150 b = symb->end - symb->start;
158 b = symb->binding == STB_WEAK;
166 b = symb->binding == STB_GLOBAL;
174 b = prefix_underscores_count(symb->name);
182 nb = strlen(symb->name);
188 return arch__choose_best_symbol(syma, symb);

Completed in 124 milliseconds