Searched refs:max (Results 101 - 125 of 193) sorted by relevance

12345678

/u-boot/drivers/clk/at91/
H A Dpmc.h19 unsigned long max; member in struct:clk_range
/u-boot/tools/binman/
H A Dimage.py296 widths[i] = max(widths[i], len(item))
/u-boot/arch/mips/mach-mtmips/
H A Dddr_cal.c83 return max(fieldval - 1, initval);
/u-boot/include/
H A Dfdtdec.h865 u32 max; member in struct:timing_entry
/u-boot/test/py/tests/
H A Dtest_trace.py40 # 1,230,758 max function calls
131 max_delta = max(max_delta, timestamp - base)
/u-boot/arch/arm/mach-omap2/omap5/
H A Dfdt.c118 temp[1] = cpu_to_fdt32(max(TI_OMAP5_SECURE_BOOT_RESV_SRAM_SZ,
/u-boot/drivers/i2c/
H A Dat91_i2c.c129 /* the max length of internal address is 3 bytes */
168 div = max(0, (int)DIV_ROUND_UP(src_rate, 2 * i2c_clk) - offset);
/u-boot/arch/x86/lib/fsp/
H A Dfsp_dram.c90 mtrr_top = max(mtrr_top,
/u-boot/arch/x86/cpu/intel_common/
H A Ditss.c121 irq_start = max(start, irq_start) % IRQS_PER_IPC;
/u-boot/cmd/
H A Daxi.c253 nbytes -= max(linebytes, 1UL);
H A Dmem.c966 int max; local
969 max = sizeof(unsigned long) * 8;
970 for (k = 0; k < max; k++) {
/u-boot/test/cmd/
H A Dbdinfo.c109 ut_assert_nextline(" %s.cnt = 0x%lx / max = 0x%lx", name, rgn->cnt, rgn->max);
/u-boot/fs/btrfs/
H A Dctree.c239 * and they are item_size apart. There are 'max' items in p.
245 * slot may point to max if the key is bigger than all of the keys
249 int max, int *slot)
252 int high = max;
247 generic_bin_search(struct extent_buffer *eb, unsigned long p, int item_size, const struct btrfs_key *key, int max, int *slot) argument
/u-boot/arch/arm/cpu/armv7/
H A Dpsci.S194 ands r7, r7, r1, lsr #13 @ extract max number of the index size
196 mov r9, r7 @ create working copy of max index
/u-boot/lib/efi_loader/
H A Defi_image_loader.c240 if (regs->num >= regs->max) {
382 regs->max = num_regions;
/u-boot/drivers/video/tegra20/
H A Dtegra-dc.c93 h_dda = (win->w * 0x1000) / max(win->out_w - 1, 1U);
94 v_dda = (win->h * 0x1000) / max(win->out_h - 1, 1U);
/u-boot/arch/arm/cpu/armv8/
H A Dcache_v8.c71 max_addr = max(max_addr, mem_map[i].virt + mem_map[i].size);
216 va = max(va, (u64)gd->ram_base);
/u-boot/boot/
H A Dcedit.c709 last = max(last, i);
806 last = max(last, i);
/u-boot/arch/sandbox/cpu/
H A Dstart.c89 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
/u-boot/arch/arm/mach-nexell/
H A Dclock.c550 int max = MAX_DIVIDER & ~(align - 1); local
566 div = (div > max ? max : div);
/u-boot/drivers/pinctrl/mediatek/
H A Dpinctrl-mtk-common.c23 * @max: the maximum current of this group
31 u8 max; member in struct:mtk_drive_desc
517 if ((arg >= tb->min && arg <= tb->max) && !(arg % tb->step)) {
540 if ((arg >= tb->min && arg <= tb->max) && !(arg % tb->step)) {
/u-boot/drivers/mtd/
H A Dmtdpart.c710 int i, max = master->numeraseregions; local
716 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
723 for (; i < max && regions[i].offset < end; i++) {
/u-boot/net/
H A Dnfs.c483 const int max = ntohl(rpc_pkt->u.reply.data[1]); local
485 if (max < NFS_V1 || max > NFS_V3 || min > NFS_V3) {
487 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
496 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
/u-boot/lib/
H A Dfdtdec.c551 int max = -1; local
570 if (val > max) {
572 max = val;
576 return max;
967 result->max = result->typ;
/u-boot/drivers/mtd/nand/raw/atmel/
H A Dnand-controller.c727 max_bitflips = max(ret, max_bitflips);
1175 * NWE_SETUP = max(tCLS, tCS, tALS, tDS) - NWE_PULSE
1179 timeps = max(timeps, conf->timings.sdr.tDS_min);
1192 * NWE_HOLD = max(tCLH, tCH, tALH, tDH, tWH)
1206 * NWE_CYCLE = max(tWC, NWE_SETUP + NWE_PULSE + NWE_HOLD)
1209 ncycles = max(totalcycles, ncycles);
1231 * NRD_HOLD = max(tREH, tRHOH)
1233 timeps = max(conf->timings.sdr.tREH_min, conf->timings.sdr.tRHOH_min);
1246 * Just take the max value in this case and hope that the NAND is more
1274 * NRD_CYCLE = max(tR
[all...]

Completed in 178 milliseconds

12345678