Home
last modified time | relevance | path

Searched refs:constcast (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/test/Analysis/
Dglobals.cpp40 int * const constcast = const_cast<int * const>((int*)sizeof(int)); variable
43 *(constcast - 1) = 0; // expected-warning{{Dereference of null pointer}} in cast1()
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dcppcoreguidelines-pro-type-const-cast.rst12 https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-constcast.
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dcppcoreguidelines-pro-type-cstyle-cast.cpp10 void constcast() { in constcast() function
/external/libpng/contrib/tools/
Dpngfix.c76 # define PNGZ_MSG_CAST(s) constcast(char*,s)
77 # define PNGZ_INPUT_CAST(b) constcast(png_bytep,b)
92 # define constcast(type, value) const_cast<type>(value) macro
99 # define constcast(type, value) ((type)(value)) macro