Searched refs:total (Results 1 – 4 of 4) sorted by relevance
163 ctx->total[0] = 0U; in mbedtls_sha256_starts_ret()164 ctx->total[1] = 0U; in mbedtls_sha256_starts_ret()263 left = ctx->total[0] & 0x3FU; in mbedtls_sha256_update_ret()266 ctx->total[0] += (uint32_t)len; in mbedtls_sha256_update_ret()267 ctx->total[0] &= 0xFFFFFFFFU; in mbedtls_sha256_update_ret()269 if (ctx->total[0] < (uint32_t)len) { in mbedtls_sha256_update_ret()270 ctx->total[1]++; in mbedtls_sha256_update_ret()317 used = ctx->total[0] & 0x3FU; in mbedtls_sha256_finish_ret()340 high = (ctx->total[0] >> 29) in mbedtls_sha256_finish_ret()341 | (ctx->total[1] << 3); in mbedtls_sha256_finish_ret()[all …]
42 uint32_t total[2]; /*!< The number of Bytes processed. */ member
323 uint16_t total; in write_sriov_cap_reg() local325 total = read_sriov_reg(vdev, PCIR_SRIOV_TOTAL_VFS); in write_sriov_cap_reg()332 if ((((uint16_t)(val & 0xFFU)) <= total) && (!is_vf_enabled(vdev))) { in write_sriov_cap_reg()
584 uint32_t total = num_pci_pdev; in init_all_dev_config() local605 if ((total + cnt) > CONFIG_MAX_PCI_DEV_NUM) { in init_all_dev_config()610 total += cnt; in init_all_dev_config()
Completed in 15 milliseconds