/third_party/astc-encoder/Source/ |
H A D | astcenc_mathlib.h | 133 return std::fabs(v); in fabs() 308 return std::floor(v); in flt_rd() 373 return 1.0f / std::sqrt(v); in rsqrt() 385 return std::sqrt(v); in sqrt()
|
/third_party/gn/src/gn/ |
H A D | rust_values_generator.cc | 47 std::string(Target::GetStringForOutputType( in Run() 78 target_->rust_values().crate_name() = std::move(value->string_value()); in FillCrateName() 141 std::string to_find = in FillCrateRoot() 186 target_->rust_values().aliased_deps().emplace(std::move(dep_label), in FillAliasedDeps()
|
H A D | substitution_type.cc | 14 const std::vector<SubstitutionTypes*> AllSubstitutions = { 122 std::vector<const Substitution*>* vect) const { in FillVector() 192 bool EnsureValidSubstitutions(const std::vector<const Substitution*>& types, in EnsureValidSubstitutions() 199 "The substitution " + std::string(type->name) + in EnsureValidSubstitutions()
|
/third_party/node/src/crypto/ |
H A D | crypto_scrypt.cc | 25 pass(std::move(other.pass)), 26 salt(std::move(other.salt)), 36 return *new (this) ScryptConfig(std::move(other)); 137 *out = std::move(buf).release(); in DeriveBits()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | frame-states.h | 58 friend std::ostream& operator<<(std::ostream&, 170 std::ostream& operator<<(std::ostream&, FrameStateInfo const&);
|
/third_party/node/deps/v8/src/compiler-dispatcher/ |
H A D | optimizing-compile-dispatcher.cc | 117 std::unique_ptr<TurbofanCompilationJob> job; in FlushOutputQueue() 132 std::unique_ptr<TurbofanCompilationJob> job( in FlushInputQueue() 185 std::unique_ptr<TurbofanCompilationJob> job; in InstallOptimizedFunctions() 230 std::make_unique<CompileTask>(isolate_, this)); in QueueForOptimization()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-scope-iterator.cc | 16 std::unique_ptr<debug::ScopeIterator> debug::ScopeIterator::CreateForFunction( in CreateForFunction() 32 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForFunction() 36 std::unique_ptr<debug::ScopeIterator> 42 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForGeneratorObject()
|
/third_party/node/deps/v8/src/base/ |
H A D | page-allocator.cc | 80 std::unique_ptr<::v8::PageAllocator::SharedMemoryMapping> RemapTo( 83 return std::make_unique<SharedMemoryMapping>(allocator_, new_address, 106 std::unique_ptr<v8::PageAllocator::SharedMemory> 118 std::make_unique<v8::base::SharedMemory>(this, ptr, size); in AllocateSharedPages()
|
/third_party/node/deps/v8/include/cppgc/internal/ |
H A D | pointer-policies.h | 148 using IsStrongPersistent = std::true_type; 153 using IsStrongPersistent = std::false_type; 158 using IsStrongPersistent = std::true_type; 164 using IsStrongPersistent = std::false_type;
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-aix.cc | 62 if (std::isnan(time_ms)) return ""; in LocalTimezone() 88 std::vector<OS::SharedLibraryAddress> OS::GetSharedLibraryAddresses() { in GetSharedLibraryAddresses() 89 std::vector<SharedLibraryAddress> result; in GetSharedLibraryAddresses() 132 std::vector<OS::MemoryRange> OS::GetFreeMemoryRangesWithin( in GetFreeMemoryRangesWithin()
|
/third_party/node/deps/v8/src/baseline/ |
H A D | baseline-compiler.h | 38 DCHECK_LE(pc_diff, std::numeric_limits<uint32_t>::max()); in AddPosition() 50 std::vector<byte> bytes_; 119 max_call_args_ = std::max(max_call_args_, max_call_args); in UpdateMaxCallArgs() 126 Register output, std::function<void(Label*, Label::Distance)> jump_func);
|
/third_party/node/deps/v8/src/heap/ |
H A D | list.h | 20 List(List&& other) V8_NOEXCEPT : front_(std::exchange(other.front_, nullptr)), 21 back_(std::exchange(other.back_, nullptr)) {} in exchange() 23 front_ = std::exchange(other.front_, nullptr); 24 back_ = std::exchange(other.back_, nullptr);
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_mem.h | 60 static auto from_string(std::istream& is, ValueFactory& value_factory) -> Pointer; 72 void do_print(std::ostream& os) const override; 81 std::bitset<8> m_tex_flags; 182 void do_print(std::ostream& os) const override;
|
/third_party/rust/crates/cxx/src/ |
H A D | lib.rs | 54 //! please, such as Rust's `String` or C++'s `std::string`, Rust's `Box` or 55 //! C++'s `std::unique_ptr`, Rust's `Vec` or C++'s `std::vector`, etc in any 254 //! .flag_if_supported("-std=c++11") 336 //! <tr><td><a href="struct.CxxString.html">CxxString</a></td><td>std::string</td><td><sup><i>cannot be passed by value</i></sup></td></tr> 338 //! <tr><td><a href="struct.UniquePtr.html">UniquePtr<T></a></td><td>std::unique_ptr<T></td><td><sup><i>cannot hold opaque Rust type</i></sup></td></tr> 339 //! <tr><td><a href="struct.SharedPtr.html">SharedPtr<T></a></td><td>std::shared_ptr<T></td><td><sup><i>cannot hold opaque Rust type</i></sup></td></tr> 340 //! <tr><td>[T; N]</td><td>std::array<T, N></td><td><sup><i>cannot hold opaque C++ type</i></sup></td></tr> 342 //! <tr><td><a href="struct.CxxVector.html">CxxVector<T></a></td><td>std::vector<T></td><td><sup><i>cannot be passed by value, cannot hold opaque Rust type</i></sup></td></tr> 362 //! <tr><td><sup><i>tbd</i></sup></td><td>std [all...] |
/third_party/rust/crates/codespan/codespan/src/ |
H A D | file.rs | 4 use std::ffi::{OsStr, OsString}; 5 use std::num::NonZeroU32; 36 /// [`Cow<'_, str>`]: std::borrow::Cow 37 /// [`Rc<str>`]: std::rc::Rc 38 /// [`Arc<str>`]: std::sync::Arc 234 use std::path::PathBuf; in name() 251 ) -> Result<std::ops::Range<usize>, Error> { in line_range() 303 use std::cmp::Ordering; in line_start() 386 std::iter::once(0).chain(source.match_indices('\n').map(|(i, _)| i + 1)) in line_starts() 414 use std in line_starts() [all...] |
/third_party/rust/crates/libc/ci/ |
H A D | style.rs | 31 use std::env; 32 use std::fs; 33 use std::io::prelude::*; 34 use std::path::Path;
|
/third_party/rust/crates/codespan/codespan-reporting/examples/ |
H A D | custom_files.rs | 15 use std::ops::Range; 45 use std::ops::Range; 60 use std::cmp::Ordering; in line_start() 99 use std::convert::TryFrom; in add()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/ |
H A D | vktGeometryVaryingGeometryShaderTests.cpp | 54 using std::string; 126 std::ostringstream src; in initPrograms() 158 std::ostringstream src; in initPrograms() 238 std::ostringstream src; in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/ |
H A D | vktGeometryVaryingGeometryShaderTests.cpp | 54 using std::string; 127 std::ostringstream src; in initPrograms() 159 std::ostringstream src; in initPrograms() 239 std::ostringstream src; in initPrograms()
|
/third_party/skia/third_party/externals/angle2/samples/multiple_draw_buffers/ |
H A D | MultipleDrawBuffers.cpp | 48 std::cerr << "Unable to load glDrawBuffers[EXT] entry point."; 52 std::stringstream vsStream; 55 std::stringstream fsStream; 58 std::stringstream copyFsStream;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/cgl/ |
H A D | DisplayCGL.h | 95 WorkerContext *createWorkerContext(std::string *infoLog); 117 std::shared_ptr<RendererGL> mRenderer; 121 std::unordered_set<std::thread::id> mThreadsWithCurrentContext;
|
/third_party/skia/third_party/externals/angle2/samples/tri_fan_microbench/ |
H A D | TriFanMicroBench.cpp | 168 std::cout << "Total draw time using TRIANGLE_FAN: " << mFanTotalTime << "ms (" 170 << std::endl; 171 std::cout << "Total draw time using TRIANGLES: " << mTriTotalTime << "ms (" 173 << std::endl;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Renderbuffer.h | 80 void setLabel(const Context *context, const std::string &label) override; 81 const std::string &getLabel() const override; 173 std::unique_ptr<rx::RenderbufferImpl> mImplementation; 175 std::string mLabel;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.cpp | 107 unsigned ByteSize = std::numeric_limits<uint32_t>::max(); in getChildDeclContext() 119 std::numeric_limits<uint64_t>::max()); in getChildDeclContext() 139 std::string File; in getChildDeclContext() 187 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
H A D | Range.cpp | 29 Range.End = std::max(Range.End, It2[-1].End); in insert() 33 It[-1].End = std::max(It[-1].End, Range.End); in insert() 39 auto It = std::partition_point( in contains() 48 auto It = std::partition_point( in contains()
|