Searched refs:total (Results 1 - 25 of 49) sorted by relevance

12

/u-boot/scripts/
H A Dbin2c.c14 int ch, total = 0; local
23 total++;
25 if (total % 16 == 0)
33 argv[1], total);
H A Dstyle.py77 total = 0
83 total += count
105 total += count
108 if total or imports:
/u-boot/drivers/core/
H A Ddump.c290 int total, total_delta; local
331 printf("%-16s %5x %6x %5s %5s %6x (%d)\n", "Attached total",
340 total = stats->total_size;
341 total -= total_delta;
342 printf("With tags: %x (%d)\n", total, total);
345 total -= sizeof(void *) * 3 * stats->dev_count;
346 printf("- singly-linked: %x (%d)\n", total, total);
349 total
[all...]
/u-boot/include/u-boot/
H A Dsha256.h13 uint32_t total[2]; member in struct:__anon467
H A Dsha1.h32 unsigned long total[2]; /*!< number of bytes processed */ member in struct:__anon466
/u-boot/arch/x86/cpu/tangier/
H A Dsdram.c110 int type, total = 0; local
137 if (total == E820MAX)
139 entries[total].addr = start;
140 entries[total].size = size;
141 entries[total].type = type;
143 total++;
146 return total;
/u-boot/arch/arm/mach-imx/
H A Dspl_imx_romapi.c171 ulong total = sector + count; local
173 if (total > *p)
174 *p = total;
242 int total = get_container_size((ulong)img_hdr, NULL); local
244 if (total < 0) {
249 return total;
265 int total; local
344 total = img_total_size(phdr);
345 total += 3;
346 total
[all...]
/u-boot/drivers/video/sunxi/
H A Dlcdc.c77 int bp, clk_delay, total, val; local
96 total = mode->hactive.typ + mode->hfront_porch.typ + bp;
97 writel(SUNXI_LCDC_TCON0_TIMING_H_TOTAL(total) |
101 total = mode->vactive.typ + mode->vfront_porch.typ + bp;
102 writel(SUNXI_LCDC_TCON0_TIMING_V_TOTAL(total) |
154 int bp, clk_delay, total, val, yres; local
179 total = mode->hactive.typ + mode->hfront_porch.typ + bp;
180 writel(SUNXI_LCDC_TCON1_TIMING_H_TOTAL(total) |
184 total = mode->vactive.typ + mode->vfront_porch.typ + bp;
186 total *
[all...]
/u-boot/lib/zlib/
H A Dinflate.h85 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
/u-boot/drivers/crypto/aspeed/
H A Daspeed_hace.c48 uint64_t total[2]; member in struct:aspeed_hace_ctx
173 left = hace_ctx->total[0] & (hace_ctx->blk_size - 1);
176 hace_ctx->total[0] += ilen;
177 if (hace_ctx->total[0] < ilen)
178 hace_ctx->total[1]++;
221 ibits_h = (hace_ctx->total[0] >> 61) | (hace_ctx->total[1] << 3);
224 ibits_l = (hace_ctx->total[0] << 3);
227 last = hace_ctx->total[0] & (hace_ctx->blk_size - 1);
/u-boot/drivers/mmc/
H A Dowl_mmc.c134 unsigned int total; local
141 total = data->blocksize * data->blocks;
143 if (total < 512)
144 writel(total, priv->reg_base + OWL_REG_SD_BUF_SIZE);
155 OWL_REG_SD_DAT, buf, total); local
156 invalidate_dcache_range(buf, buf + total);
160 OWL_REG_SD_DAT, total);
161 flush_dcache_range(buf, buf + total);
/u-boot/lib/
H A Dsha256.c44 ctx->total[0] = 0;
45 ctx->total[1] = 0;
207 left = ctx->total[0] & 0x3F;
210 ctx->total[0] += length;
211 ctx->total[0] &= 0xFFFFFFFF;
213 if (ctx->total[0] < length)
214 ctx->total[1]++;
245 high = ((ctx->total[0] >> 29)
246 | (ctx->total[1] << 3));
247 low = (ctx->total[
[all...]
H A Dsha1.c57 ctx->total[0] = 0;
58 ctx->total[1] = 0;
245 left = ctx->total[0] & 0x3F;
248 ctx->total[0] += ilen;
249 ctx->total[0] &= 0xFFFFFFFF;
251 if (ctx->total[0] < (unsigned long) ilen)
252 ctx->total[1]++;
287 high = (ctx->total[0] >> 29)
288 | (ctx->total[1] << 3);
289 low = (ctx->total[
[all...]
/u-boot/drivers/block/
H A Dblkmap.c311 lbaint_t cnt, total = 0; local
321 total += cnt;
324 return total;
344 lbaint_t cnt, total = 0; local
354 total += cnt;
357 return total;
/u-boot/common/
H A DxyzModem.c519 int stat, total, len; local
522 total = 0;
537 return total;
626 return total;
638 total += len;
643 return total;
/u-boot/test/py/tests/
H A Dtest_trace.py266 total = 0
273 total += count
274 return total
/u-boot/arch/arm/mach-mvebu/
H A Ddram.c171 u64 total; local
189 total = (u64)size;
190 total_mem += (u32)(total / (1 << 30));
/u-boot/lib/efi_loader/
H A Defi_bootmgr.c1106 efi_uintn_t count, num, total; local
1129 total = num;
1131 ret = efi_bootmgr_enumerate_boot_options(opt, total, handles, &num, false);
1135 total = num;
1143 ret = efi_bootmgr_delete_invalid_boot_option(opt, total);
1148 for (i = 0; i < total; i++) {
1177 for (i = 0; i < total; i++)
/u-boot/boot/
H A Dimage-fdt.c103 int i, total, ret; local
112 total = fdt_num_mem_rsv(fdt_blob);
113 for (i = 0; i < total; i++) {
/u-boot/cmd/
H A Dload.c613 int total = 0; local
616 total += *buffer++;
618 return (int) ((total + ((total >> 6) & 0x03)) & 0x3f);
/u-boot/lib/zstd/common/
H A Dentropy_common.c303 /* get last non-null symbol weight (implied, total must be 2^n) */
308 { U32 const total = 1 << tableLog; local
309 U32 const rest = total - weightTotal;
/u-boot/test/dm/
H A Dcore.c605 int total; local
626 /* Check total number of devices */
627 total = NODE_COUNT * (3 + NODE_COUNT);
628 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_BIND]);
636 * This should have probed the child and top node also, for a total
651 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
687 int total; local
708 /* Check total number of devices */
709 total = NODE_COUNT * (3 + NODE_COUNT);
710 ut_asserteq(total, dm_testdrv_op_coun
[all...]
/u-boot/drivers/video/
H A Dstb_truetype.h642 // and v_oversample=1. The total number of pixels required is
702 // less than the total fonts. If an error occurs, -1 is returned.
3227 // the rest of the line is filled based on the total height of the line segment in this pixel
4020 unsigned int total; local
4023 total = 0;
4029 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4031 pixels[i] = (unsigned char) (total / 2);
4036 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4038 pixels[i] = (unsigned char) (total / 3);
4043 total
4082 unsigned int total; local
[all...]
/u-boot/scripts/kconfig/
H A Dnconf.gui.c179 int total = 1; local
186 total++;
187 return total;
/u-boot/drivers/serial/
H A Dusbtty.c842 int total = 0; local
865 total += popped;
878 return total;

Completed in 181 milliseconds

12