Home
last modified time | relevance | path

Searched refs:tie (Results 1 - 25 of 408) sorted by relevance

12345678910>>...17

/third_party/nghttp2/src/
H A Dshrpx_log.cc616 std::tie(p, last) = copy(lf.value, p, last); in upstream_accesslog()
619 std::tie(p, last) = copy(lgsp.remote_addr, p, last); in upstream_accesslog()
622 std::tie(p, last) = copy(tstamp->time_local, p, last); in upstream_accesslog()
625 std::tie(p, last) = copy(tstamp->time_iso8601, p, last); in upstream_accesslog()
628 std::tie(p, last) = copy(method, p, last); in upstream_accesslog()
629 std::tie(p, last) = copy(' ', p, last); in upstream_accesslog()
630 std::tie(p, last) = copy_escape(path, p, last); in upstream_accesslog()
631 std::tie(p, last) = copy_l(" HTTP/", p, last); in upstream_accesslog()
632 std::tie(p, last) = copy(req.http_major, p, last); in upstream_accesslog()
634 std::tie( in upstream_accesslog()
[all...]
/third_party/skia/third_party/externals/angle2/util/
H A DEGLPlatformParameters.h59 auto tie() const in tie() function
61 return std::tie(renderer, majorVersion, minorVersion, deviceType, presentPath, in tie()
107 return a.tie() < b.tie(); in operator <()
112 return a.tie() == b.tie(); in operator ==()
117 return a.tie() != b.tie(); in operator !=()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp46 std::tie(LHSResult, RemainingExpr) = in evaluate()
56 std::tie(RHSResult, RemainingExpr) = in evaluate()
118 std::tie(Token, Remaining) = parseSymbol(Expr); in getTokenForError()
120 std::tie(Token, Remaining) = parseNumberString(Expr); in getTokenForError()
227 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalDecodeOperand()
240 std::tie(OpIdxExpr, RemainingExpr) = evalNumberExpr(RemainingExpr); in evalDecodeOperand()
295 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalNextPC()
346 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalStubOrGOTAddr()
355 std::tie(StubAddr, ErrorMsg) = Checker.getStubOrGOTAddrFor( in evalStubOrGOTAddr()
383 std::tie(SectionNam in evalSectionAddr()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/
H A DTarget.h41 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform); in operator ==()
45 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform); in operator !=()
49 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform); in operator <()
H A DInterfaceFile.h109 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets); in operator ==()
113 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets); in operator !=()
117 return std::tie(InstallName, Targets) < std::tie(O.InstallName, O.Targets); in operator <()
149 return std::tie(LHS.Kind, LHS.Name) == std::tie(RHS.Kind, RHS.Name); in isEqual()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAddressRange.h54 return std::tie(LHS.LowPC, LHS.HighPC) < std::tie(RHS.LowPC, RHS.HighPC); in operator <()
59 return std::tie(LHS.LowPC, LHS.HighPC) == std::tie(RHS.LowPC, RHS.HighPC); in operator ==()
/third_party/vk-gl-cts/external/amber/src/src/
H A Dshader_compiler_test.cc112 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
131 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
151 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
168 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
220 std::tie(r, unopt_binary) = sc.Compile(&pipeline, &unoptimized, ShaderMap()); in TEST_F()
224 std::tie(r, opt_binary) = sc.Compile(&pipeline, &optimized, ShaderMap()); in TEST_F()
241 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
260 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F()
287 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, map); in TEST_F()
312 std::tie( in TEST_F()
[all...]
/third_party/gn/src/gn/
H A Dlocation.cc29 return std::tie(line_number_, column_number_) < in operator <()
30 std::tie(other.line_number_, other.column_number_); in operator <()
35 return std::tie(line_number_, column_number_) <= in operator <=()
36 std::tie(other.line_number_, other.column_number_); in operator <=()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Ddriver_utils.cpp196 return std::tie(a.majorVersion, a.minorVersion, a.patchVersion) == in operator ==()
197 std::tie(b.majorVersion, b.minorVersion, b.patchVersion); in operator ==()
201 return std::tie(a.majorVersion, a.minorVersion, a.patchVersion) != in operator !=()
202 std::tie(b.majorVersion, b.minorVersion, b.patchVersion); in operator !=()
206 return std::tie(a.majorVersion, a.minorVersion, a.patchVersion) < in operator <()
207 std::tie(b.majorVersion, b.minorVersion, b.patchVersion); in operator <()
211 return std::tie(a.majorVersion, a.minorVersion, a.patchVersion) >= in operator >=()
212 std::tie(b.majorVersion, b.minorVersion, b.patchVersion); in operator >=()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
H A DWireMemoryTransferServiceTests.cpp336 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
388 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
417 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
466 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
490 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
536 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapRead); in TEST_F()
590 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapWrite); in TEST_F()
644 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapWrite); in TEST_F()
669 std::tie(apiBuffer, buffer) = CreateBuffer(WGPUBufferUsage_MapWrite); in TEST_F()
723 std::tie(apiBuffe in TEST_F()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dcontrol_dependence.cpp60 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) < in operator <()
61 std::tie(other.source_bb_id_, other.target_bb_id_, in operator <()
66 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) == in operator ==()
67 std::tie(other.source_bb_id_, other.target_bb_id_, in operator ==()
H A Dupgrade_memory_model.cpp140 std::tie(is_coherent, is_volatile, scope) = in UpgradeMemoryAndImages()
146 std::tie(is_coherent, is_volatile, scope) = in UpgradeMemoryAndImages()
151 std::tie(dst_coherent, dst_volatile, dst_scope) = in UpgradeMemoryAndImages()
153 std::tie(src_coherent, src_volatile, src_scope) = in UpgradeMemoryAndImages()
261 std::tie(unused_coherent, is_volatile, unused_scope) = in UpgradeAtomics()
314 std::tie(is_coherent, is_volatile) = in GetInstructionAttributes()
348 std::tie(type_coherent, type_volatile) = in TraceInstruction()
391 std::tie(operand_coherent, operand_volatile) = in TraceInstruction()
439 std::tie(remaining_coherent, remaining_volatile) = in CheckType()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dcontrol_dependence.cpp60 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) < in operator <()
61 std::tie(other.source_bb_id_, other.target_bb_id_, in operator <()
66 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) == in operator ==()
67 std::tie(other.source_bb_id_, other.target_bb_id_, in operator ==()
/third_party/spirv-tools/source/opt/
H A Dcontrol_dependence.cpp57 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) < in operator <()
58 std::tie(other.source_bb_id_, other.target_bb_id_, in operator <()
63 return std::tie(source_bb_id_, target_bb_id_, branch_target_bb_id_) == in operator ==()
64 std::tie(other.source_bb_id_, other.target_bb_id_, in operator ==()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTableBuilder.cpp211 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader)); in commit()
215 std::tie(SectionWriter, Writer) = in commit()
220 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize()); in commit()
224 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t)); in commit()
H A DPDBStringTable.cpp88 std::tie(SectionReader, Reader) = Reader.split(sizeof(PDBStringTableHeader)); in reload()
92 std::tie(SectionReader, Reader) = Reader.split(Header->ByteSize); in reload()
101 std::tie(SectionReader, Reader) = Reader.split(sizeof(uint32_t)); in reload()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dunify_const_test.cpp111 std::tie(original_without_opnames, original_opnames) = in Check()
117 std::tie(expected_without_opnames, expected_opnames) = in Check()
123 std::tie(optimized_before_strip, status) = in Check()
129 std::tie(optimized_without_opnames, optimized_opnames) = in Check()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dunify_const_test.cpp111 std::tie(original_without_opnames, original_opnames) = in Check()
117 std::tie(expected_without_opnames, expected_opnames) = in Check()
123 std::tie(optimized_before_strip, status) = in Check()
129 std::tie(optimized_without_opnames, optimized_opnames) = in Check()
/third_party/spirv-tools/test/opt/
H A Dunify_const_test.cpp111 std::tie(original_without_opnames, original_opnames) = in Check()
117 std::tie(expected_without_opnames, expected_opnames) = in Check()
123 std::tie(optimized_before_strip, status) = in Check()
129 std::tie(optimized_without_opnames, optimized_opnames) = in Check()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DGpuMemorySynchronizationTests.cpp99 std::tie(compute, bindGroup) = CreatePipelineAndBindGroupForCompute(buffer); in TEST_P()
131 std::tie(render, bindGroup) = in TEST_P()
160 std::tie(render, bindGroup0) = in TEST_P()
165 std::tie(compute, bindGroup1) = CreatePipelineAndBindGroupForCompute(buffer); in TEST_P()
197 std::tie(compute, bindGroup1) = CreatePipelineAndBindGroupForCompute(buffer); in TEST_P()
202 std::tie(render, bindGroup0) = in TEST_P()
305 std::tie(compute, computeBindGroup) = CreatePipelineAndBindGroupForCompute(); in TEST_P()
308 std::tie(render, renderBindGroup) = CreatePipelineAndBindGroupForRender(renderPass.colorFormat); in TEST_P()
341 std::tie(compute, computeBindGroup) = CreatePipelineAndBindGroupForCompute(); in TEST_P()
344 std::tie(rende in TEST_P()
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
H A DTestSuite.h45 return std::tie(a.testSuiteName, a.testName) < std::tie(b.testSuiteName, b.testName); in operator <()
50 return std::tie(a.testSuiteName, a.testName) == std::tie(b.testSuiteName, b.testName); in operator ==()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DOpenGLVersion.cpp73 return std::tie(mMajorVersion, mMinorVersion) >= std::tie(majorVersion, minorVersion); in IsAtLeast()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/
H A DAnnotations.h55 return std::tie(L.Begin, L.End) == std::tie(R.Begin, R.End); in operator ==()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A Dangle_test_configs.cpp75 return a.tie() < b.tie(); in operator <()
80 return a.tie() == b.tie(); in operator ==()
85 return a.tie() != b.tie(); in operator !=()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DVectorUtils.h70 return std::tie(ParamPos, ParamKind, LinearStepOrPos, Alignment) == in operator ==()
71 std::tie(Other.ParamPos, Other.ParamKind, Other.LinearStepOrPos, in operator ==()
88 return std::tie(VF, IsScalable, Parameters) == in operator ==()
89 std::tie(Other.VF, Other.IsScalable, Other.Parameters); in operator ==()
126 return std::tie(Shape, ScalarName, VectorName, ISA) == in operator ==()
127 std::tie(Shape, Other.ScalarName, Other.VectorName, Other.ISA); in operator ==()

Completed in 18 milliseconds

12345678910>>...17