| /rk3399_rockchip-uboot/lib/ |
| H A D | stdlib.c | 12 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 D | sha512.c | 77 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 D | sha256.c | 71 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 D | sha1.c | 86 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 D | bin2c.c | 14 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 D | lcdc.c | 75 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 D | sdram.c | 107 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 D | Kconfig | 30 Note this size must not exceed eSRAM's total size.
|
| /rk3399_rockchip-uboot/common/ |
| H A D | image-fdt.c | 147 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 D | xyzModem.c | 490 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 D | resource_tool.c | 20 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 D | sha512.h | 42 uint64_t total[2]; /*!< The number of Bytes processed. */ member
|
| H A D | sha256.h | 13 uint32_t total[2]; member
|
| H A D | sha1.h | 33 unsigned long total[2]; /*!< number of bytes processed */ member
|
| /rk3399_rockchip-uboot/arch/arm/mach-mvebu/ |
| H A D | dram.c | 168 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 D | README.qspi | 25 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 D | Kconfig | 62 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 D | crypto_hash_cache.h | 29 void *user_data, u32 total,
|
| /rk3399_rockchip-uboot/board/ti/am57xx/ |
| H A D | Kconfig | 17 The AM57x (and DRA7xx) SoC has a total of 6 UARTs available to it.
|
| /rk3399_rockchip-uboot/board/ti/dra7xx/ |
| H A D | Kconfig | 17 The DRA7xx (and AM57x) SoC has a total of 6 UARTs available to it.
|
| /rk3399_rockchip-uboot/board/vscom/baltos/ |
| H A D | Kconfig | 20 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
|
| /rk3399_rockchip-uboot/board/tcl/sl50/ |
| H A D | Kconfig | 20 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
|
| /rk3399_rockchip-uboot/lib/zlib/ |
| H A D | inflate.h | 85 unsigned long total; /* protected copy of output count */ member
|
| /rk3399_rockchip-uboot/drivers/crypto/rockchip/ |
| H A D | crypto_hash_cache.c | 93 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 D | Kconfig | 14 asynchronuous memory devices like ASRAM, NOR and NAND memory. A total
|