/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | COFFEmitter.cpp | 68 for (std::vector<COFFYAML::Section>::iterator i = Obj.Sections.begin(), in parseSections() 78 std::copy(Name.begin(), Name.end(), Sec.Header.Name); in parseSections() 82 std::string str = utostr(Index); in parseSections() 88 std::copy(str.begin(), str.end(), Sec.Header.Name + 1); in parseSections() 107 for (std::vector<COFFYAML::Symbol>::iterator i = Obj.Symbols.begin(), in parseSymbols() 116 std::copy(Name.begin(), Name.end(), Sym.Header.Name); in parseSymbols() 155 std::string StringTable; 187 std::vector<DebugSubsectionRecordBuilder> Builders; in toDebugS() 192 Builders.push_back(std::move(B)); in toDebugS() 281 for (std in layoutCOFF() [all...] |
H A D | MachOEmitter.cpp | 45 std::vector<MachOYAML::BindOpcode> &BindOpcodes); 191 std::vector<uint8_t> FillData; in ZeroFillBytes() 197 std::vector<uint32_t> FillData; in Fill() 325 raw_ostream &OS, std::vector<MachOYAML::BindOpcode> &BindOpcodes) { in writeBindOpcodes() 389 typedef std::pair<uint64_t, writeHandler> writeOperation; in writeLinkEditData() 390 std::vector<writeOperation> WriteQueue; in writeLinkEditData() 399 std::make_pair(SymtabCmd->symoff, &MachOWriter::writeNameList)); in writeLinkEditData() 401 std::make_pair(SymtabCmd->stroff, &MachOWriter::writeStringTable)); in writeLinkEditData() 405 WriteQueue.push_back(std::make_pair(DyldInfoOnlyCmd->rebase_off, in writeLinkEditData() 407 WriteQueue.push_back(std in writeLinkEditData() [all...] |
/third_party/skia/src/gpu/vk/ |
H A D | GrVkOpsRenderPass.cpp | 328 std::move(fCurrentSecondaryCommandBuffer)); in submit() 333 fGpu->submitSecondaryCommandBuffer(std::move(fCurrentSecondaryCommandBuffer)); in submit() 378 fFramebuffer = std::move(framebuffer); in set() 479 void GrVkOpsRenderPass::onClear(const GrScissorState& scissor, std::array<float, 4> color) { in onClear() 602 fGpu->submitSecondaryCommandBuffer(std::move(fCurrentSecondaryCommandBuffer)); in inlineUpload() 714 return fCurrentPipelineState->setAndBindInputAttachment(fGpu, std::move(ds), in onBindTextures() 746 currCmdBuf->bindInputBuffer(fGpu, binding++, std::move(vertexBuffer)); in onBindBuffers() 751 currCmdBuf->bindInputBuffer(fGpu, binding++, std::move(instanceBuffer)); in onBindBuffers() 756 currCmdBuf->bindIndexBuffer(fGpu, std::move(indexBuffer)); in onBindBuffers() 801 uint32_t currDrawCount = std in onDrawIndirect() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | GlobalsModRef.cpp | 409 std::vector<Value *> AllocRelatedValues; in AnalyzeIndirectGlobalMemory() 475 const std::vector<CallGraphNode *> &SCC = *I; in CollectSCCMembership() 493 const std::vector<CallGraphNode *> &SCC = *I; in AnalyzeCallGraph() 952 std::function<const TargetLibraryInfo &(Function &F)> GetTLI) in GlobalsAAResult() 953 : AAResultBase(), DL(DL), GetTLI(std::move(GetTLI)) {} in GlobalsAAResult() 956 : AAResultBase(std::move(Arg)), DL(Arg.DL), GetTLI(std::move(Arg.GetTLI)), in GlobalsAAResult() 957 NonAddressTakenGlobals(std::move(Arg.NonAddressTakenGlobals)), in GlobalsAAResult() 958 IndirectGlobals(std::move(Arg.IndirectGlobals)), in GlobalsAAResult() 959 AllocsForIndirectGlobals(std in GlobalsAAResult() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPromoteAlloca.cpp | 93 std::pair<Value *, Value *> getLocalSizeYZ(IRBuilder<> &Builder); 100 std::vector<Value*> &WorkList) const; 182 std::pair<Value *, Value *> 199 return std::make_pair(LocalSizeY, LocalSizeZ); in getLocalSizeYZ() 267 return std::make_pair(Y, LoadZU); in getLocalSizeYZ() 307 const std::map<GetElementPtrInst *, Value *> &GEPIdx) { in calculateVectorIndex() 384 std::map<GetElementPtrInst*, Value*> GEPVectorIdx; in tryPromoteAllocaToVector() 385 std::vector<Value*> WorkList; in tryPromoteAllocaToVector() 526 std::vector<Value*> &WorkList) const { in collectUsesWithPtrTypes() 691 OccupancyHint = std in hasSufficientLocalMem() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfo.cpp | 265 while (std::next(FirstUncondOrIndirectBr) != MBB.end()) { in analyzeBranch() 266 std::next(FirstUncondOrIndirectBr)->eraseFromParent(); in analyzeBranch() 293 if (NumTerminators == 2 && std::prev(I)->getDesc().isConditionalBranch() && in analyzeBranch() 295 parseCondBranch(*std::prev(I), TBB, Cond); in analyzeBranch() 606 int LowOffset = std::min(OffsetA, OffsetB); in areMemAccessesTriviallyDisjoint() 607 int HighOffset = std::max(OffsetA, OffsetB); in areMemAccessesTriviallyDisjoint() 616 std::pair<unsigned, unsigned> 619 return std::make_pair(TF & Mask, TF & ~Mask); in decomposeMachineOperandsTargetFlags() 622 ArrayRef<std::pair<unsigned, const char *>> 625 static const std in getSerializableDirectMachineOperandTargetFlags() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | ConstantHoisting.cpp | 261 std::pair<SetVector<BasicBlock *>, BlockFrequency>; in findBestInsertionSet() 376 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 424 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 563 if (!OptForSize || std::distance(S,E) > 100) { in maximizeConstantsInRange() 639 RebasedConstantInfo(std::move(ConstCand->Uses), Offset, ConstTy)); in findAndMakeBaseConstant() 641 ConstInfoVec.push_back(std::move(ConstInfo)); in findAndMakeBaseConstant() 666 for (auto CC = std::next(ConstCandVec.begin()), E = ConstCandVec.end(); in findBaseConstants() 849 using RebasedUse = std in emitBaseConstants() [all...] |
/third_party/vixl/test/ |
H A D | test-pool-manager.cc | 44 static int Random() { return static_cast<int>(std::abs(mrand48())); } in Random() 54 log2Size = std::min(log2Size, limit); in RandomObjectAlignment() 104 for (std::vector<ForwardReference<int32_t> *>::iterator iter = 137 std::vector<ForwardReference<int32_t> *> references_; 166 std::max(reference_alignment, GetPoolObjectAlignment()); 181 for (std::vector<ForwardReference<int32_t> *>::iterator iter = 201 for (std::vector<ForwardReference<int32_t> *>::const_iterator iter = 213 for (std::vector<ForwardReference<int32_t> *>::const_iterator iter = 239 std::vector<ForwardReference<int32_t> *> references_; 371 std in TEST() [all...] |
/third_party/rust/crates/rustix/tests/net/ |
H A D | connect_bind_send.rs | 5 use std::net::{IpAddr, Ipv4Addr, SocketAddr}; 9 fn net_v4_connect_any() -> std::io::Result<()> { in net_v4_connect_any() 41 fn net_v6_connect_any() -> std::io::Result<()> { in net_v6_connect_any() 80 fn net_v4_connect() -> std::io::Result<()> { in net_v4_connect() 116 fn net_v6_connect() -> std::io::Result<()> { in net_v6_connect() 159 fn net_v4_bind_any() -> std::io::Result<()> { in net_v4_bind_any() 191 fn net_v6_bind_any() -> std::io::Result<()> { in net_v6_bind_any() 230 fn net_v4_sendto() -> std::io::Result<()> { in net_v4_sendto() 268 fn net_v6_sendto() -> std::io::Result<()> { in net_v6_sendto() 313 fn net_v4_sendto_any() -> std [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fProgramStateQueryTests.cpp | 39 using std::string; 40 using std::map; 72 static std::string specializeShader(Context& context, const char* code) in specializeShader() 79 std::map<std::string, std::string> specializationMap = in specializeShader() 376 const std::string vStr = specializeShader(m_context, vtxTemplate.c_str()); in iterate() 377 const std::string fStr = specializeShader(m_context, fragTemplate.c_str()); in iterate() 847 FOR_EACH_INT_VERIFIER(new ProgramSeparableCase (m_context, verifier, (std::string("program_separable_") + verifierSuffix).c_str(), "Test PROGRAM_SEPARABLE")); in init() 848 FOR_EACH_VEC_VERIFIER(new ComputeWorkGroupSizeCase (m_context, verifier, (std in init() [all...] |
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglQuerySurfaceTests.cpp | 270 const std::string name = eglu::getSurfaceAttribName(pbufferAttribs[ndx]); in checkNonPbufferAttributes() 702 std::vector<NamedFilterList> filterLists; in init() 705 for (std::vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init() 717 std::vector<NamedFilterList> filterLists; in init() 720 for (std::vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init() 732 std::vector<NamedFilterList> filterLists; in init() 735 for (std::vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init() 753 std::vector<NamedFilterList> filterLists; in init() 756 for (std::vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init() 768 std in init() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | angletypes.cpp | 638 return std::abs(width) < std::numeric_limits<float>::epsilon() && 639 std::abs(height) < std::numeric_limits<float>::epsilon(); 684 int x = std::max(minSourceX, minClipX); 685 int y = std::max(minSourceY, minClipY); 686 int width = std::min(maxSourceX, maxClipX) - x; 687 int height = std::min(maxSourceY, maxClipY) - y; 732 int x0 = std::min(rect1.x0(), rect2.x0()); 733 int y0 = std [all...] |
/third_party/glslang/SPIRV/ |
H A D | disassemble.h | 49 void Disassemble(std::ostream& out, const std::vector<unsigned int>&);
|
/third_party/icu/icu4c/source/test/fuzzer/ |
H A D | locale_util.cpp | 10 std::string MakeZeroTerminatedInput(const uint8_t *data, int32_t size) { in MakeZeroTerminatedInput() 11 return size == 0 ? "" : std::string(reinterpret_cast<const char *>(data), size); in MakeZeroTerminatedInput()
|
/third_party/icu/icu4c/source/common/ |
H A D | utypeinfo.h | 15 // Windows header <typeinfo> does not define 'exception' in 'std' namespace. 25 using std::exception; 28 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364 namespace
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
H A D | test23-first-tu.cc | 8 using std::cout; 9 using std::string;
|
H A D | test23-second-tu.cc | 9 using std::cout; 10 using std::string;
|
/third_party/json/docs/mkdocs/docs/integration/vcpkg/ |
H A D | example.cpp | 8 std::cout << json::meta() << std::endl; in main()
|
/third_party/json/docs/mkdocs/docs/integration/conan/ |
H A D | example.cpp | 8 std::cout << json::meta() << std::endl; in main()
|
/third_party/json/docs/examples/ |
H A D | meta.cpp | 10 std::cout << std::setw(4) << json::meta() << '\n'; in main()
|
H A D | nlohmann_json_version.cpp | 8 std::cout << "JSON for Modern C++ version " in main() 11 << NLOHMANN_JSON_VERSION_PATCH << std::endl; in main()
|
H A D | operator_ltlt__json_pointer.cpp | 12 std::cout << ptr << std::endl; in main()
|
/third_party/ninja/src/ |
H A D | version.h | 25 void ParseVersion(const std::string& version, int* major, int* minor); 29 void CheckNinjaVersion(const std::string& required_version);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | utypeinfo.h | 15 // Windows header <typeinfo> does not define 'exception' in 'std' namespace. 25 using std::exception; 28 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364 namespace
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/ |
H A D | abi_variadic_function.rs | 10 pub fn b(arg1: ::std::os::raw::c_char, ...) -> ::std::os::raw::c_char; in b()
|