Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 86) sorted by relevance

1234

/rk3399_rockchip-uboot/lib/
H A Dstdlib.c12 long total; in atol() local
23 total = 0; in atol()
26 total = 10 * total + (c - '0'); in atol()
31 return -total; in atol()
33 return total; in atol()
H A Dsha512.c77 ctx->total[0] = 0; in __sha512_starts()
78 ctx->total[1] = 0; in __sha512_starts()
245 left = (unsigned int)(ctx->total[0] & 0x7F); in sha512_update()
248 ctx->total[0] += (uint64_t)ilen; in sha512_update()
250 if (ctx->total[0] < (uint64_t)ilen) in sha512_update()
251 ctx->total[1]++; in sha512_update()
290 used = ctx->total[0] & 0x7F; in sha512_finish()
310 high = (ctx->total[0] >> 61) in sha512_finish()
311 | (ctx->total[1] << 3); in sha512_finish()
312 low = (ctx->total[0] << 3); in sha512_finish()
H A Dsha256.c71 ctx->total[0] = 0; in sha256_starts()
72 ctx->total[1] = 0; in sha256_starts()
242 left = ctx->total[0] & 0x3F; in sha256_update()
245 ctx->total[0] += length; in sha256_update()
246 ctx->total[0] &= 0xFFFFFFFF; in sha256_update()
248 if (ctx->total[0] < length) in sha256_update()
249 ctx->total[1]++; in sha256_update()
292 high = ((ctx->total[0] >> 29) in sha256_finish()
293 | (ctx->total[1] << 3)); in sha256_finish()
294 low = (ctx->total[0] << 3); in sha256_finish()
[all …]
H A Dsha1.c86 ctx->total[0] = 0; in sha1_starts()
87 ctx->total[1] = 0; in sha1_starts()
281 left = ctx->total[0] & 0x3F; in sha1_update()
284 ctx->total[0] += ilen; in sha1_update()
285 ctx->total[0] &= 0xFFFFFFFF; in sha1_update()
287 if (ctx->total[0] < (unsigned long) ilen) in sha1_update()
288 ctx->total[1]++; in sha1_update()
335 high = (ctx->total[0] >> 29) in sha1_finish()
336 | (ctx->total[1] << 3); in sha1_finish()
337 low = (ctx->total[0] << 3); in sha1_finish()
[all …]
/rk3399_rockchip-uboot/scripts/
H A Dbin2c.c14 int ch, total = 0; in main() local
23 total++; in main()
25 if (total % 16 == 0) in main()
33 argv[1], total); in main()
/rk3399_rockchip-uboot/drivers/video/sunxi/
H A Dlcdc.c75 int bp, clk_delay, total, val; in lcdc_tcon0_mode_set() local
94 total = mode->hactive.typ + mode->hfront_porch.typ + bp; in lcdc_tcon0_mode_set()
95 writel(SUNXI_LCDC_TCON0_TIMING_H_TOTAL(total) | in lcdc_tcon0_mode_set()
99 total = mode->vactive.typ + mode->vfront_porch.typ + bp; in lcdc_tcon0_mode_set()
100 writel(SUNXI_LCDC_TCON0_TIMING_V_TOTAL(total) | in lcdc_tcon0_mode_set()
152 int bp, clk_delay, total, val, yres; in lcdc_tcon1_mode_set() local
177 total = mode->hactive.typ + mode->hfront_porch.typ + bp; in lcdc_tcon1_mode_set()
178 writel(SUNXI_LCDC_TCON1_TIMING_H_TOTAL(total) | in lcdc_tcon1_mode_set()
182 total = mode->vactive.typ + mode->vfront_porch.typ + bp; in lcdc_tcon1_mode_set()
184 total *= 2; in lcdc_tcon1_mode_set()
[all …]
/rk3399_rockchip-uboot/arch/x86/cpu/tangier/
H A Dsdram.c107 int type, total = 0; in sfi_setup_e820() local
134 if (total == E820MAX) in sfi_setup_e820()
136 entries[total].addr = start; in sfi_setup_e820()
137 entries[total].size = size; in sfi_setup_e820()
138 entries[total].type = type; in sfi_setup_e820()
140 total++; in sfi_setup_e820()
143 return total; in sfi_setup_e820()
H A DKconfig30 Note this size must not exceed eSRAM's total size.
/rk3399_rockchip-uboot/common/
H A Dimage-fdt.c147 int i, total; in boot_fdt_add_mem_rsv_regions() local
156 total = fdt_num_mem_rsv(fdt_blob); in boot_fdt_add_mem_rsv_regions()
157 for (i = 0; i < total; i++) { in boot_fdt_add_mem_rsv_regions()
178 int i, total; in boot_fdt_add_sysmem_rsv_regions() local
193 total = fdt_num_mem_rsv(fdt_blob); in boot_fdt_add_sysmem_rsv_regions()
194 for (i = 0; i < total; i++) { in boot_fdt_add_sysmem_rsv_regions()
H A DxyzModem.c490 int stat, total, len; in xyzModem_stream_read() local
493 total = 0; in xyzModem_stream_read()
585 return total; in xyzModem_stream_read()
597 total += len; in xyzModem_stream_read()
602 return total; in xyzModem_stream_read()
/rk3399_rockchip-uboot/tools/rockchip/
H A Dresource_tool.c20 unsigned long total[2]; /*!< number of bytes processed */ member
52 ctx->total[0] = 0; in sha1_starts()
53 ctx->total[1] = 0; in sha1_starts()
233 left = ctx->total[0] & 0x3F; in sha1_update()
236 ctx->total[0] += ilen; in sha1_update()
237 ctx->total[0] &= 0xFFFFFFFF; in sha1_update()
239 if (ctx->total[0] < (unsigned long) ilen) in sha1_update()
240 ctx->total[1]++; in sha1_update()
278 high = (ctx->total[0] >> 29) in sha1_finish()
279 | (ctx->total[1] << 3); in sha1_finish()
[all …]
/rk3399_rockchip-uboot/include/u-boot/
H A Dsha512.h42 uint64_t total[2]; /*!< The number of Bytes processed. */ member
H A Dsha256.h13 uint32_t total[2]; member
H A Dsha1.h33 unsigned long total[2]; /*!< number of bytes processed */ member
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/
H A Ddram.c168 u64 total; in dram_ecc_scrubbing() local
186 total = (u64)size + 1; in dram_ecc_scrubbing()
187 total_mem += (u32)(total / (1 << 30)); in dram_ecc_scrubbing()
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/doc/
H A DREADME.qspi25 SF: Detected S25FL256S_64K with page size 256 Bytes, erase size 64 KiB, total 32 MiB
36 SF: Detected S25FL256S_64K with page size 256 Bytes, erase size 64 KiB, total 32 MiB
/rk3399_rockchip-uboot/drivers/pci/
H A DKconfig62 Tegra. Tegra20 has 2 root ports with a total of 4 lanes, Tegra30 has
63 3 root ports with a total of 6 lanes and Tegra124 has 2 root ports
64 with a total of 5 lanes. Some boards require this for Ethernet
/rk3399_rockchip-uboot/include/rockchip/
H A Dcrypto_hash_cache.h29 void *user_data, u32 total,
/rk3399_rockchip-uboot/board/ti/am57xx/
H A DKconfig17 The AM57x (and DRA7xx) SoC has a total of 6 UARTs available to it.
/rk3399_rockchip-uboot/board/ti/dra7xx/
H A DKconfig17 The DRA7xx (and AM57x) SoC has a total of 6 UARTs available to it.
/rk3399_rockchip-uboot/board/vscom/baltos/
H A DKconfig20 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
/rk3399_rockchip-uboot/board/tcl/sl50/
H A DKconfig20 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
/rk3399_rockchip-uboot/lib/zlib/
H A Dinflate.h85 unsigned long total; /* protected copy of output count */ member
/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Dcrypto_hash_cache.c93 void *user_data, u32 total, in crypto_hash_cache_alloc() argument
111 hash_cache->left_len = total; in crypto_hash_cache_alloc()
/rk3399_rockchip-uboot/drivers/memory/
H A DKconfig14 asynchronuous memory devices like ASRAM, NOR and NAND memory. A total

1234