Searched refs:to_int (Results 1 – 10 of 10) sorted by relevance
/llvm-project/clang/test/SemaCXX/ |
H A D | cxx2c-delete-with-message.cpp | 256 TO<double, int> to_int; in operators() local 257 …+to_int; // expected-error {{overload resolution selected deleted operator '+': deleted (TO<T, int… in operators() 258 …to_int->x; // expected-error {{overload resolution selected deleted operator '->': deleted (TO<T, … in operators() 259 …to_int - to_int; // expected-error {{overload resolution selected deleted operator '-': deleted (T… in operators() 260 …to_int[to_int]; // expected-error {{overload resolution selected deleted operator '[]': deleted (T… in operators() 261 …to_int(to_int); // expected-error {{call to deleted function call operator in type 'TO<double, int… in operators() 262 …if (to_int) {} // expected-error {{attempt to use a deleted function: deleted (TO<T, int>, operato… in operators() 263 …static_cast<bool>(to_int); // expected-error {{static_cast from 'TO<double, int>' to 'bool' uses d… in operators()
|
H A D | deprecated.cpp | 49 int k = to_int(n); // no-warning in stuff()
|
/llvm-project/compiler-rt/test/msan/ |
H A D | vector_cvt.cpp | 7 int to_int(double &v) { in to_int() function 22 int x = to_int(*p); in main()
|
/llvm-project/llvm/bindings/ocaml/executionengine/ |
H A D | llvm_executionengine.ml | 57 if Nativeint.to_int vptr <> 0 then 64 if Nativeint.to_int fptr <> 0 then
|
/llvm-project/clang/test/SemaCXX/Inputs/ |
H A D | register.h | 5 #define to_int(x) ({ register int n = (x); n; }) macro
|
/llvm-project/lldb/examples/python/templates/ |
H A D | parsed_cmd.py | 137 def to_int(in_value): 156 lldb.eArgTypeOffset : to_int, 78 def to_int(in_value): global() function
|
/llvm-project/llvm/bindings/ocaml/llvm/ |
H A D | llvm.ml | 107 let to_int index = function 860 llvm_add_function_attr f a (AttrIndex.to_int i) 862 llvm_function_attrs f (AttrIndex.to_int i) 864 llvm_remove_enum_function_attr f k (AttrIndex.to_int i) 866 llvm_remove_string_function_attr f k (AttrIndex.to_int i) 1058 llvm_add_call_site_attr f a (AttrIndex.to_int i) 1060 llvm_call_site_attrs f (AttrIndex.to_int i) 1062 llvm_remove_enum_call_site_attr f k (AttrIndex.to_int i) 1064 llvm_remove_string_call_site_attr f k (AttrIndex.to_int i)
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/ |
H A D | implicit-bool-conversion.cpp | 520 int to_int(bool x) { return int{x}; } in boo() 506 int to_int(bool x) { return int{x}; } to_int() function
|
/llvm-project/libcxx/test/std/algorithms/ |
H A D | robust_against_proxy_iterators_lifetime_bugs.pass.cpp | 641 constexpr int to_int(int x) { return x; } 642 int to_int(LifetimeIterator::Value x) { return x.i_; } in rand_gen() 650 auto is_neg = [](const T& val) { return to_int(val) < 0; }; in test() 639 constexpr int to_int(int x) { return x; } to_int() function 640 int to_int(LifetimeIterator::Value x) { return x.i_; } to_int() function
|
/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64InstrInfo.td | 5011 multiclass FPToIntegerPats<SDNode to_int, SDNode to_int_sat, SDNode round, string INST> { 5012 def : Pat<(i32 (to_int (round f32:$Rn))), 5014 def : Pat<(i64 (to_int (round f32:$Rn))), 5016 def : Pat<(i32 (to_int (round f64:$Rn))), 5018 def : Pat<(i64 (to_int (round f64:$Rn))),
|