// Provide the shared memory capacity. This function takes the team_size
// as an argument, which allows team_size dependent allocations.
- size_t
+ std::size_t
team_shmem_size(int /*team_size*/) const
{
return SharedViewValues::shmem_size(Functor::n_q_points,
o << " <DataArray type=\"Int32\" Name=\"connectivity\" format=\""
<< ascii_or_binary << "\">\n";
- std::vector<int32_t> cells;
+ std::vector<std::int32_t> cells;
Assert(dim <= 3, ExcNotImplemented());
unsigned int first_vertex_of_patch = 0;
o << " <DataArray type=\"Int32\" Name=\"offsets\" format=\""
<< ascii_or_binary << "\">\n";
- std::vector<int32_t> offsets;
+ std::vector<std::int32_t> offsets;
offsets.reserve(n_cells);
// std::uint8_t might be an alias to unsigned char which is then not
if (deal_ii_with_zlib &&
(flags.compression_level != CompressionLevel::plain_text))
{
- std::vector<uint8_t> cell_types_uint8_t(cell_types.size());
+ std::vector<std::uint8_t> cell_types_uint8_t(cell_types.size());
for (unsigned int i = 0; i < cell_types.size(); ++i)
cell_types_uint8_t[i] = static_cast<std::uint8_t>(cell_types[i]);
else
demangled_stacktrace_entry += functionname;
- free(p);
+ std::free(p);
#else
break;
}
- free(stacktrace); // free(nullptr) is allowed
+ std::free(stacktrace); // free(nullptr) is allowed
stacktrace = nullptr;
}
// flag.
std::vector<char *> argv_new;
for (auto *const arg : make_array_view(&argv[0], &argv[0] + argc))
- if (strcmp(arg, "--help") != 0)
+ if (std::strcmp(arg, "--help") != 0)
argv_new.push_back(arg);
std::stringstream threads_flag;
if (debug > 1)
deallog << "PathSearch[" << cls << "] trying " << real_name
<< std::endl;
- FILE *fp = fopen(real_name.c_str(), open_mode);
+ std::FILE *fp = std::fopen(real_name.c_str(), open_mode);
if (fp != nullptr)
{
if (debug > 0)
deallog << "PathSearch[" << cls << "] opened " << real_name
<< std::endl;
- fclose(fp);
+ std::fclose(fp);
return real_name;
}
}
if (debug > 1)
deallog << "PathSearch[" << cls << "] trying " << real_name
<< std::endl;
- FILE *fp = fopen(real_name.c_str(), open_mode);
+ std::FILE *fp = std::fopen(real_name.c_str(), open_mode);
if (fp != nullptr)
{
if (debug > 0)
deallog << "PathSearch[" << cls << "] opened " << real_name
<< std::endl;
- fclose(fp);
+ std::fclose(fp);
return real_name;
}
}
const double s = p[1];
const double t = p[2];
- if (fabs(t - 1.0) > 1.0e-14)
+ if (std::fabs(t - 1.0) > 1.0e-14)
{
ration = (r * s * t) / (1.0 - t);
}
double rationds;
double rationdt;
- if (fabs(t - 1.0) > 1.0e-14)
+ if (std::fabs(t - 1.0) > 1.0e-14)
{
rationdr = s * t / (1.0 - t);
rationds = r * t / (1.0 - t);
, n_child_indices(n_child_indices)
{
Assert(n_child_indices < child_indices.size(), ExcInternalError());
- memcpy(child_indices.data(), id, n_child_indices);
+ std::memcpy(child_indices.data(), id, n_child_indices);
}
const double theta = 2 * numbers::PI / number_points;
// first point is leading edge then counterclockwise
for (unsigned int i = 0; i < number_points; ++i)
- circle_points.emplace_back(center[0] - radius * cos(i * theta),
- center[1] - radius * sin(i * theta));
+ circle_points.emplace_back(center[0] - radius * std::cos(i * theta),
+ center[1] -
+ radius * std::sin(i * theta));
return circle_points;
}
const std::complex<double> zeta(chi, eta);
const std::complex<double> z = zeta + 1. / zeta;
- joukowski_points[i] = {real(z), imag(z)};
+ joukowski_points[i] = {std::real(z), std::imag(z)};
}
return joukowski_points;
}
blocked = false;
// convert the string to upper case
- std::transform(header.begin(), header.end(), header.begin(), ::toupper);
+ std::transform(header.begin(),
+ header.end(),
+ header.begin(),
+ static_cast<int (*)(int)>(std::toupper));
// replace all tabs, commas, newlines by
// whitespaces
std::transform(type_name_2.begin(),
type_name_2.end(),
type_name_2.begin(),
- [](unsigned char c) { return std::toupper(c); });
+ static_cast<int (*)(int)>(std::toupper));
const std::string numbers = "0123456789";
type_name_2.erase(std::find_first_of(type_name_2.begin(),
type_name_2.end(),
std::string tmp;
for (const char c : s)
{
- if (isdigit(c) != 0)
+ if (std::isdigit(c) != 0)
{
tmp += c;
}
while (std::getline(input_stream, line))
{
cont:
- std::transform(line.begin(), line.end(), line.begin(), ::toupper);
+ std::transform(line.begin(),
+ line.end(),
+ line.begin(),
+ static_cast<int (*)(int)>(std::toupper));
if (line.compare("*HEADING") == 0 || line.compare(0, 2, "**") == 0 ||
line.compare(0, 5, "*PART") == 0)
std::transform(line.begin(),
line.end(),
line.begin(),
- ::toupper);
+ static_cast<int (*)(int)>(std::toupper));
// Surface can be created from ELSET, or directly from cells
// If elsets_list contains a key with specific name - refers
if (cell->is_active())
{
while (current_cell_idx >=
- std::floor(static_cast<uint_least64_t>(n_active_cells) *
+ std::floor(static_cast<std::uint_least64_t>(n_active_cells) *
(current_proc_idx + 1) / n_partitions))
++current_proc_idx;
cell->set_subdomain_id(current_proc_idx);