/third_party/mesa3d/src/gallium/frontends/clover/api/ |
H A D | memory.cpp | 119 map(std::mem_fn(&device::max_mem_alloc_size), ctx.devices()) in clCreateBufferWithProperties() 177 if (!any_of(std::mem_fn(&device::image_support), ctx.devices())) in clCreateImageWithProperties() 466 const bool system_svm = all_of(std::mem_fn(&device::has_system_svm), in clGetMemObjectInfo() 589 if (!any_of(std::mem_fn(&device::svm_support), ctx.devices())) in clSVMAlloc() 596 map(std::mem_fn(&device::max_mem_alloc_size), ctx.devices()))) in clSVMAlloc() 606 bool can_emulate = all_of(std::mem_fn(&device::has_system_svm), ctx.devices()); in clSVMAlloc() 633 if (!any_of(std::mem_fn(&device::svm_support), ctx.devices())) in clSVMFree() 636 bool can_emulate = all_of(std::mem_fn(&device::has_system_svm), ctx.devices()); in clSVMFree()
|
H A D | kernel.cpp | 379 if (!any_of(std::mem_fn(&device::svm_support), obj(d_kern).program().devices())) in clSetKernelArgSVMPointer() 397 if (!any_of(std::mem_fn(&device::svm_support), obj(d_kern).program().devices())) in clSetKernelExecInfo() 402 const bool has_system_svm = all_of(std::mem_fn(&device::has_system_svm), in clSetKernelExecInfo()
|
H A D | sampler.cpp | 34 if (!any_of(std::mem_fn(&device::image_support), ctx.devices())) in clCreateSampler()
|
/third_party/libabigail/src/ |
H A D | abg-reporter-priv.cc | 178 /// @param mem_fn the member function to stream 183 method_decl_sptr mem_fn, in represent() 186 if (!mem_fn || !is_member_function(mem_fn)) in represent() 190 dynamic_pointer_cast<method_decl>(mem_fn); in represent() 193 out << "'" << mem_fn->get_pretty_representation() << "'"; in represent() 195 if (get_member_function_is_virtual(mem_fn)) in represent() 198 ssize_t voffset = get_member_function_vtable_offset(mem_fn); in represent() 205 emit_num_value(get_member_function_vtable_offset(mem_fn), in represent() 213 && (mem_fn in represent() 182 represent(const diff_context& ctxt, method_decl_sptr mem_fn, ostream& out) represent() argument [all...] |
H A D | abg-reporter-priv.h | 133 method_decl_sptr mem_fn,
|
H A D | abg-ir.cc | 6428 /// @param mem_fn the member function to consider. 6430 /// @return true iff a @p mem_fn is virtual. 6448 /// @param mem_fn the member function to consider. 6450 /// @return true iff a @p mem_fn is virtual. 6452 get_member_function_is_virtual(const function_decl_sptr& mem_fn) in get_member_function_is_virtual() argument 6453 {return mem_fn ? get_member_function_is_virtual(*mem_fn) : false;} in get_member_function_is_virtual() 6457 /// @param mem_fn the member function to consider. 6459 /// @return true iff a @p mem_fn is virtual. 6461 get_member_function_is_virtual(const function_decl* mem_fn) in get_member_function_is_virtual() argument 20156 const method_decl* mem_fn = get_pretty_representation() local 20205 const method_decl* mem_fn = get_pretty_representation_of_declarator() local [all...] |
H A D | abg-comparison.cc | 5248 method_decl_sptr mem_fn = in ensure_lookup_tables_populated() local 5250 string name = mem_fn->get_linkage_name(); in ensure_lookup_tables_populated() 5252 name = mem_fn->get_pretty_representation(); in ensure_lookup_tables_populated() 5257 p->deleted_member_functions_[name] = mem_fn; in ensure_lookup_tables_populated() 5271 method_decl_sptr mem_fn = in ensure_lookup_tables_populated() local 5273 string name = mem_fn->get_linkage_name(); in ensure_lookup_tables_populated() 5275 name = mem_fn->get_pretty_representation(); in ensure_lookup_tables_populated() 5285 if (*j->second != *mem_fn) in ensure_lookup_tables_populated() 5288 static_pointer_cast<function_decl>(mem_fn), in ensure_lookup_tables_populated() 5293 p->inserted_member_functions_[name] = mem_fn; in ensure_lookup_tables_populated() [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/llvm/ |
H A D | invocation.cpp | 244 map(std::mem_fn(&std::string::c_str), opts); in create_compiler_instance() 440 map(std::mem_fn(&Function::getName), get_kernels(mod)); in optimize()
|
/third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/ |
H A D | common.cpp | 298 for (const auto &llvm_name : map(std::mem_fn(&Function::getName), in build_module_common()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
H A D | Profile.cpp | 360 std::mem_fn(&StackEntry::FuncId)); in profileFromTrace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopLoadElimination.cpp | 391 std::mem_fn(&StoreToLoadForwardingCandidate::getLoadPtr));
|
/third_party/ninja/src/ |
H A D | build.cc | 281 #define MEM_FN mem_fn // mem_fun was removed in C++17.
in CleanNode()
|
/third_party/node/deps/ada/ |
H A D | ada.h | 2023 // In C++11 mode, there's an issue in libc++'s std::mem_fn 2066 noexcept(std::mem_fn(f)(std::forward<Args>(args)...))) 2067 -> decltype(std::mem_fn(f)(std::forward<Args>(args)...)) { in mem_fn() function 2068 return std::mem_fn(f)(std::forward<Args>(args)...); in mem_fn()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |