Home
last modified time | relevance | path

Searched refs:std (Results 12351 - 12375 of 20229) sorted by relevance

1...<<491492493494495496497498499500>>...810

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.h243 std::pair<unsigned, unsigned>
245 ArrayRef<std::pair<unsigned, const char *>>
247 ArrayRef<std::pair<unsigned, const char *>>
249 ArrayRef<std::pair<MachineMemOperand::Flags, const char *>>
255 std::vector<outliner::Candidate> &RepeatedSequenceLocs) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp118 DenseMap<unsigned, std::pair<unsigned, unsigned> > PeepholeDoubleRegsMap; in runOnMachineFunction()
131 NextI = std::next(I); in runOnMachineFunction()
180 std::make_pair(*&SrcReg, Hexagon::isub_hi); in runOnMachineFunction()
221 DenseMap<unsigned, std::pair<unsigned, unsigned> >::iterator DI = in runOnMachineFunction()
224 std::pair<unsigned,unsigned> PeepholeSrc = DI->second; in runOnMachineFunction()
/third_party/skia/tools/skiaserve/
H A DRequest.cpp114 bounds = SkIRect::MakeWH(std::min(bounds.width(), maxRTSize), in getBounds()
115 std::min(bounds.height(), maxRTSize)); in getBounds()
123 bounds = SkIRect::MakeWH(std::min(bounds.width(), kMaxWidth), in getBounds()
124 std::min(bounds.height(), kMaxHeight)); in getBounds()
214 fDebugCanvas = std::make_unique<DebugCanvas>(bounds.width(), bounds.height()); in initPictureFromStream()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h221 using SizeOffsetType = std::pair<APInt, APInt>;
237 return std::make_pair(APInt(), APInt()); in unknown()
280 using SizeOffsetEvalType = std::pair<Value *, Value *>;
287 using WeakEvalType = std::pair<WeakTrackingVH, WeakTrackingVH>;
306 return std::make_pair(nullptr, nullptr); in unknown()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DLiveIntervals.h92 SmallVector<std::pair<unsigned, unsigned>, 8> RegMaskBlocks;
263 RegMaskBlocks.push_back(std::make_pair(RegMaskSlots.size(), 0)); in insertMBBInMaps()
356 std::pair<unsigned, unsigned> P = RegMaskBlocks[MBBNum]; in getRegMaskSlotsInBlock()
367 std::pair<unsigned, unsigned> P = RegMaskBlocks[MBBNum]; in getRegMaskBitsInBlock()
474 using ShrinkToUsesWorkList = SmallVector<std::pair<SlotIndex, VNInfo*>, 16>;
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectsource.h159 const std::string ReadFieldValueAsString(
260 static std::unordered_map<std::string, TypeRenderer>* renderers_;
263 static TypeRenderer* FindTypeRenderer(const std::string& type_url);
277 std::pair<int64, int32> ReadSecondsAndNanos(
/third_party/rust/crates/clap/src/error/
H A Dmod.rs10 use std::{
51 /// [`Result`]: std::result::Result
61 phantom: std::marker::PhantomData<F>,
86 pub fn raw(kind: ErrorKind, message: impl std::fmt::Display) -> Self { in raw()
765 impl<F: ErrorFormatter> std::fmt::Debug for Error<F> {
766 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { in fmt()
802 std::mem::swap(s, &mut message); in format()
/third_party/skia/modules/skottie/src/effects/
H A DMotionBlurEffect.cpp51 return sk_sp<MotionBlurEffect>(new MotionBlurEffect(std::move(animator), in Make()
52 std::move(child), in Make()
60 : INHERITED({std::move(child)}) in MotionBlurEffect()
61 , fAnimator(std::move(animator))
113 std::vector<uint64_t> accum(info.width() * info.height()); in renderToRaster8888Pow2Samples()
/third_party/rust/crates/regex/regex-syntax/src/
H A Dutf8.rs85 use std::char;
86 use std::fmt;
87 use std::iter::FusedIterator;
88 use std::slice;
458 use std::char;
/third_party/rust/crates/rust-openssl/openssl-sys/build/
H A Dmain.rs9 use std::collections::HashSet;
10 use std::env;
11 use std::ffi::OsString;
12 use std::path::{Path, PathBuf};
64 std::process::exit(0); in check_ssl_kind()
/third_party/rust/crates/nix/src/sys/
H A Devent.rs9 use std::convert::TryInto;
10 use std::mem;
11 use std::os::unix::io::RawFd;
12 use std::ptr;
339 use std::mem; in test_struct_kevent()
/third_party/rust/crates/nix/src/
H A Dtime.rs13 use std::mem::MaybeUninit;
217 impl std::fmt::Display for ClockId {
218 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { in fmt()
219 std::fmt::Display::fmt(&self.0, f) in fmt()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dpkey.rs34 //! use std::str;
60 use std::convert::{TryFrom, TryInto};
61 use std::ffi::CString;
62 use std::fmt;
63 use std::mem;
64 use std::ptr;
507 /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
535 /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
563 /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
589 /// # fn main() -> Result<(), Box<dyn std
[all...]
/third_party/rust/crates/syn/src/
H A Derror.rs9 use std::fmt::{self, Debug, Display};
10 use std::slice;
11 use std::vec;
14 pub type Result<T> = std::result::Result<T, Error>;
25 /// [`compile_error!`]: std::compile_error!
114 // Cannot use std::ops::Range<Span> because that does not implement Copy,
223 /// [`compile_error!`]: std::compile_error!
234 /// [`compile_error!`]: std::compile_error!
403 impl std::error::Error for Error {}
/third_party/rust/crates/regex/src/
H A Dinput.rs1 use std::char;
2 use std::cmp::Ordering;
3 use std::fmt;
4 use std::ops;
5 use std::u32;
/third_party/rust/crates/rustix/tests/path/
H A Darg.rs6 use std::borrow::Cow;
7 use std::ffi::{OsStr, OsString};
8 use std::path::{Component, Components, Iter, Path, PathBuf};
13 use std::borrow::Borrow; in test_arg()
145 use std::borrow::Borrow; in test_invalid()
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_add_bit_instruction_synonym.cpp25 : message_(std::move(message)) {} in TransformationAddBitInstructionSynonym()
29 const std::vector<uint32_t>& fresh_ids) { in TransformationAddBitInstructionSynonym()
209 std::vector<uint32_t> extracted_bit_instructions(width); in AddOpBitwiseOrOpNotSynonym()
291 std::unordered_set<uint32_t>
293 std::unordered_set<uint32_t> result; in GetFreshIds()
H A Dtransformation_add_synonym.cpp27 : message_(std::move(message)) {} in TransformationAddSynonym()
109 insert_before->InsertBefore(std::move(new_instruction)); in Apply()
205 std::unique_ptr<opt::Instruction>
299 std::vector<uint32_t>(vector->element_count(), scalar_one_id), in MaybeGetConstantId()
334 std::unordered_set<uint32_t> TransformationAddSynonym::GetFreshIds() const { in GetFreshIds()
H A Dtransformation_replace_boolean_constant_with_constant_binary.cpp34 if (!std::isfinite(lhs) || !std::isfinite(rhs)) { in float_binop_evaluates_to()
117 : message_(std::move(message)) {} in TransformationReplaceBooleanConstantWithConstantBinary()
306 std::move(binary_instruction)); in ApplyWithResult()
324 std::unordered_set<uint32_t>
/third_party/spirv-tools/source/opt/
H A Dcombine_access_chains.cpp100 std::vector<uint32_t> element_indices; in GetIndexedType()
126 std::vector<Operand>* new_operands) { in CombineIndices()
175 std::vector<Operand>* new_operands) { in CreateNewInputOperands()
251 std::vector<Operand> new_operands; in CombineAccessChain()
256 inst->SetInOperands(std::move(new_operands)); in CombineAccessChain()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderFragDataTests.cpp49 using std::string;
64 static bool isExtensionSupported (const glu::RenderContext& renderCtx, const std::string& extension) in isExtensionSupported()
254 std::string extensionString; in iterate()
393 std::vector<tcu::TestNode*> negativeCases = library.loadShaderFile("shaders/fragdata.test"); in init()
395 for (std::vector<tcu::TestNode*>::iterator i = negativeCases.begin(); i != negativeCases.end(); i++) in init()
/third_party/vk-gl-cts/modules/glshared/
H A DglsRandomUniformBlockCase.cpp29 using std::string;
30 using std::vector;
123 static std::string genName (char first, char last, int ndx) in genName()
125 std::string str = ""; in genName()
145 std::string name = genName('a', 'z', m_uniformNdx); in generateUniform()
H A DglsShaderConstExprTests.cpp75 std::vector<tcu::TestNode*> createTests (tcu::TestContext& testContext, in createTests()
83 using std::string; in createTests()
84 using std::vector; in createTests()
123 std::map<string, string> shaderTemplateParams; in createTests()
140 std::map<string, string> expressionTemplateParams; in createTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureFilteringAnisotropyTests.cpp39 using std::string;
40 using std::vector;
41 using std::max;
42 using std::min;
180 std::vector<util::Program> programs; in initPrograms()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdePoolArray.cpp311 DE_TEST_ASSERT(std::distance(arr.begin(), arr.end()) == 128); in iteratorTest()
313 std::vector<int> vecCopy(arr.size()); in iteratorTest()
314 std::copy(arr.begin(), arr.end(), vecCopy.begin()); in iteratorTest()
318 std::fill(arr.begin(), arr.end(), -1); in iteratorTest()
322 std::copy(vecCopy.begin(), vecCopy.end(), arr.begin()); in iteratorTest()

Completed in 25 milliseconds

1...<<491492493494495496497498499500>>...810