Searched refs:factor (Results 1 - 9 of 9) sorted by relevance

/u-boot/arch/arm/mach-omap2/
H A Dutils.c14 static void do_cancel_out(u32 *num, u32 *den, u32 factor) argument
17 if (((*num)/factor*factor == (*num)) &&
18 ((*den)/factor*factor == (*den))) {
19 (*num) /= factor;
20 (*den) /= factor;
/u-boot/arch/arm/cpu/armv7/
H A Dcache_v7_asm.S52 ARM( orr r11, r10, r4, lsl r5 ) @ factor way and cache number into r11
54 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
55 ARM( orr r11, r11, r9, lsl r2 ) @ factor index number into r11
57 THUMB( orr r11, r11, r6 ) @ factor index number into r11
122 ARM( orr r11, r10, r4, lsl r5 ) @ factor way and cache number into r11
124 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
125 ARM( orr r11, r11, r9, lsl r2 ) @ factor index number into r11
127 THUMB( orr r11, r11, r6 ) @ factor index number into r11
H A Dpsci.S198 orr r11, r10, r4, lsl r5 @ factor way and cache number into r11
199 orr r11, r11, r9, lsl r2 @ factor index number into r11
/u-boot/arch/powerpc/cpu/mpc8xx/
H A Dcpu.c238 ulong oscclk, factor, pll; local
249 * factor is calculated as follows:
254 * factor = -----------------
258 factor = (PLPRCR_val(MFI) + PLPRCR_val(MFN) / (PLPRCR_val(MFD) + 1)) /
261 oscclk = gd->cpu_clk / factor;
264 factor > 2)
/u-boot/drivers/clk/
H A DMakefile11 obj-$(CONFIG_$(SPL_TPL_)CLK_CCF) += clk-fixed-factor.o
/u-boot/fs/ubifs/
H A Dbudget.c636 int divisor, factor, f; local
652 factor = UBIFS_BLOCK_SIZE;
655 free *= factor;
/u-boot/fs/btrfs/
H A Dvolumes.c1068 int factor = map->num_stripes / map->sub_stripes; local
1070 stripe_index = stripe_nr % factor;
1078 stripe_nr = stripe_nr / factor;
/u-boot/drivers/net/
H A Dsja1105.c1531 bool enabled, int factor)
1540 if (enabled && factor != 1 && factor != 10)
1546 idiv.idiv = factor - 1; /* Divide by 1 or 10 */
1530 sja1105_cgu_idiv_config(struct sja1105_private *priv, int port, bool enabled, int factor) argument
/u-boot/tools/buildman/
H A Dkconfiglib.py2238 # Initialize to 1 instead of 0 to factor out code from _parse_block()
3389 # and_expr: factor ['&&' and_expr]
3390 # factor: <symbol> ['='/'!='/'<'/... <symbol>]
3391 # '!' factor
3395 # (no ||), and of the 'and_expr: factor' case as a single-operand AND
3419 factor = self._parse_factor(transform_m)
3421 # Return 'factor' directly if we have a "single-operand" AND.
3424 return factor if not self._check_token(_T_AND) else \
3425 (AND, factor, self._parse_and_expr(transform_m))

Completed in 198 milliseconds