Home
last modified time | relevance | path

Searched refs:second (Results 1 - 25 of 3306) sorted by relevance

12345678910>>...133

/third_party/curl/lib/
H A Dstrcase.c92 static int casecompare(const char *first, const char *second) in casecompare() argument
94 while(*first && *second) { in casecompare()
95 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) in casecompare()
99 second++; in casecompare()
105 return !*first == !*second; in casecompare()
109 int curl_strequal(const char *first, const char *second) in curl_strequal() argument
111 if(first && second) in curl_strequal()
113 return casecompare(first, second); in curl_strequal()
116 return (NULL == first && NULL == second); in curl_strequal()
119 static int ncasecompare(const char *first, const char *second, size_ argument
135 curl_strnequal(const char *first, const char *second, size_t max) curl_strnequal() argument
[all...]
/third_party/ninja/src/
H A Ddyndep_parser_test.cc365 EXPECT_EQ(false, i->second.restat_); in TEST_F()
366 EXPECT_EQ(0u, i->second.implicit_outputs_.size()); in TEST_F()
367 EXPECT_EQ(0u, i->second.implicit_inputs_.size()); in TEST_F()
378 EXPECT_EQ(false, i->second.restat_); in TEST_F()
379 EXPECT_EQ(0u, i->second.implicit_outputs_.size()); in TEST_F()
380 EXPECT_EQ(0u, i->second.implicit_inputs_.size()); in TEST_F()
391 EXPECT_EQ(false, i->second.restat_); in TEST_F()
392 EXPECT_EQ(0u, i->second.implicit_outputs_.size()); in TEST_F()
393 ASSERT_EQ(1u, i->second.implicit_inputs_.size()); in TEST_F()
394 EXPECT_EQ("impin", i->second in TEST_F()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUArgumentUsageInfo.cpp58 << " PrivateSegmentBuffer: " << FI.second.PrivateSegmentBuffer in print()
59 << " DispatchPtr: " << FI.second.DispatchPtr in print()
60 << " QueuePtr: " << FI.second.QueuePtr in print()
61 << " KernargSegmentPtr: " << FI.second.KernargSegmentPtr in print()
62 << " DispatchID: " << FI.second.DispatchID in print()
63 << " FlatScratchInit: " << FI.second.FlatScratchInit in print()
64 << " PrivateSegmentSize: " << FI.second.PrivateSegmentSize in print()
65 << " WorkGroupIDX: " << FI.second.WorkGroupIDX in print()
66 << " WorkGroupIDY: " << FI.second.WorkGroupIDY in print()
67 << " WorkGroupIDZ: " << FI.second in print()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp129 return flagsMatchCLOpts(KV.second); in operator ()()
135 return flagsMatchCLOpts(KV.second.getFlags()); in operator ()()
189 return OS << "(\"" << KV.first << "\", " << KV.second << ")"; in operator <<()
193 return OS << "(\"" << KV.first << "\": " << KV.second << ")"; in operator <<()
208 return OS << "(" << KV.first << ", " << KV.second << ")"; in operator <<()
256 return OS << "(" << KV.first << ", " << KV.second << ")"; in operator <<()
271 << SearchOrder.begin()->second << ")"; in operator <<()
275 OS << ", (\"" << KV.first->getName() << "\", " << KV.second << ")"; in operator <<()
285 OS << " " << *KV.first << ": " << KV.second.Aliasee << " " in operator <<()
286 << KV.second in operator <<()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_separatefields.c28 AVFrame *second; member
75 if (!s->second) { in filter_frame()
78 AVFrame *second = s->second; in filter_frame() local
80 extract_field(second, s->nb_planes, second->top_field_first); in filter_frame()
82 if (second->pts != AV_NOPTS_VALUE && in filter_frame()
84 second->pts += inpicref->pts; in filter_frame()
86 second->pts = AV_NOPTS_VALUE; in filter_frame()
88 ret = ff_filter_frame(outlink, second); in filter_frame()
[all...]
H A Dsignature_lookup.c60 static unsigned int intersection_word(const uint8_t *first, const uint8_t *second) in intersection_word() argument
64 val += av_popcount( (first[i] & second[i] ) << 24 | in intersection_word()
65 (first[i+1] & second[i+1]) << 16 | in intersection_word()
66 (first[i+2] & second[i+2]) << 8 | in intersection_word()
67 (first[i+3] & second[i+3]) ); in intersection_word()
69 val += av_popcount( (first[28] & second[28]) << 16 | in intersection_word()
70 (first[29] & second[29]) << 8 | in intersection_word()
71 (first[30] & second[30]) ); in intersection_word()
75 static unsigned int union_word(const uint8_t *first, const uint8_t *second) in union_word() argument
79 val += av_popcount( (first[i] | second[ in union_word()
90 get_l1dist(AVFilterContext *ctx, SignatureContext *sc, const uint8_t *first, const uint8_t *second) get_l1dist() argument
115 get_jaccarddist(SignatureContext *sc, CoarseSignature *first, CoarseSignature *second) get_jaccarddist() argument
140 find_next_coarsecandidate(SignatureContext *sc, CoarseSignature *secondstart, CoarseSignature **first, CoarseSignature **second, int start) find_next_coarsecandidate() argument
174 get_matching_parameters(AVFilterContext *ctx, SignatureContext *sc, FineSignature *first, FineSignature *second) get_matching_parameters() argument
533 lookup_signatures(AVFilterContext *ctx, SignatureContext *sc, StreamContext *first, StreamContext *second, int mode) lookup_signatures() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksCacheBuilder.cpp78 readJSON_VkSamplerYcbcrConversionCreateInfo(jsonReader, samplerYcbcr.second, sycCI); in exportFilesForExternalCompiler()
86 readJSON_VkSamplerCreateInfo(jsonReader, sampler.second, sCI); in exportFilesForExternalCompiler()
96 readJSON_VkShaderModuleCreateInfo(jsonReader, shader.second, smCI, spirvShader); in exportFilesForExternalCompiler()
105 if (renderPass.second.find("VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2") != std::string::npos) in exportFilesForExternalCompiler()
108 readJSON_VkRenderPassCreateInfo2(jsonReader, renderPass.second, rpCI); in exportFilesForExternalCompiler()
111 else if (renderPass.second.find("VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO") != std::string::npos) in exportFilesForExternalCompiler()
114 readJSON_VkRenderPassCreateInfo(jsonReader, renderPass.second, rpCI); in exportFilesForExternalCompiler()
125 readJSON_VkDescriptorSetLayoutCreateInfo(jsonReader, descriptorSetLayout.second, dsCI); in exportFilesForExternalCompiler()
133 readJSON_VkPipelineLayoutCreateInfo(jsonReader, pipelineLayout.second, plCI); in exportFilesForExternalCompiler()
193 for (deUint32 i = 0; i < it->second in exportFilesForExternalCompiler()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp52 // We could avoid second lookup, but it would make the code ultra ugly. in recordInline()
107 assert(Node->second->NumberOfInlines >= Node->second->NumberOfRealInlines); in dump()
108 if (Node->second->NumberOfInlines == 0) in dump()
111 if (Node->second->Imported) { in dump()
114 int(Node->second->NumberOfRealInlines > 0); in dump()
118 int(Node->second->NumberOfRealInlines > 0); in dump()
123 << (Node->second->Imported ? "imported " : "not imported ") in dump()
125 << ": #inlines = " << Node->second->NumberOfInlines in dump()
127 << Node->second in dump()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
H A DConfig.cpp368 if(attribIt->second != EGL_DONT_CARE)
372 case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribIt->second; break;
373 case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribIt->second; break;
374 case EGL_BLUE_SIZE: match = config->mBlueSize >= attribIt->second; break;
375 case EGL_GREEN_SIZE: match = config->mGreenSize >= attribIt->second; break;
376 case EGL_RED_SIZE: match = config->mRedSize >= attribIt->second; break;
377 case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribIt->second; break;
378 case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribIt->second; break;
379 case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum)attribIt->second; break;
380 case EGL_CONFIG_ID: match = config->mConfigID == attribIt->second; brea
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h78 return it->second; in FindOrDie()
88 return it->second; in FindOrDie()
98 return it->second; in FindOrDieNoPrint()
108 return it->second; in FindOrDieNoPrint()
130 return it->second; in FindWithDefault()
143 return &it->second; in FindOrNull()
155 return &it->second; in FindOrNull()
172 return it->second; in FindPtrOrNull()
187 return it->second; in FindPtrOrNull()
202 return it->second in FindLinkedPtrOrNull()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPair.java12 * A pair of objects: first and second.
15 * @param <S> second object type
19 public final S second; field in Pair
21 protected Pair(F first, S second) { in Pair() argument
23 this.second = second; in Pair()
29 * @param second must be non-null
32 public static <F, S> Pair<F, S> of(F first, S second) { in of() argument
33 if (first == null || second == null) { in of()
36 return new Pair<F, S>(first, second); in of()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DPair.java13 * A pair of objects: first and second.
16 * @param <S> second object type
21 public final S second; field in Pair
23 protected Pair(F first, S second) { in Pair() argument
25 this.second = second; in Pair()
31 * @param second must be non-null
34 public static <F, S> Pair<F, S> of(F first, S second) { in of() argument
35 if (first == null || second == null) { in of()
38 return new Pair<F, S>(first, second); in of()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DLocalizedNumberRangeFormatter.java31 * @param second
32 * The second number in the range, usually to the right in LTR locales.
37 public FormattedNumberRange formatRange(int first, int second) { in formatRange() argument
39 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second); in formatRange()
40 return formatImpl(dq1, dq2, first == second); in formatRange()
49 * @param second
50 * The second number in the range, usually to the right in LTR locales.
55 public FormattedNumberRange formatRange(double first, double second) { in formatRange() argument
57 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second); in formatRange()
60 return formatImpl(dq1, dq2, first == second); in formatRange()
76 formatRange(Number first, Number second) formatRange() argument
85 formatImpl(DecimalQuantity first, DecimalQuantity second, boolean equalBeforeRounding) formatImpl() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DLocalizedNumberRangeFormatter.java32 * @param second
33 * The second number in the range, usually to the right in LTR locales.
37 public FormattedNumberRange formatRange(int first, int second) { in formatRange() argument
39 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second); in formatRange()
40 return formatImpl(dq1, dq2, first == second); in formatRange()
49 * @param second
50 * The second number in the range, usually to the right in LTR locales.
54 public FormattedNumberRange formatRange(double first, double second) { in formatRange() argument
56 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second); in formatRange()
59 return formatImpl(dq1, dq2, first == second); in formatRange()
74 formatRange(Number first, Number second) formatRange() argument
83 formatImpl(DecimalQuantity first, DecimalQuantity second, boolean equalBeforeRounding) formatImpl() argument
[all...]
/third_party/gn/src/gn/
H A Dbuilder_record_map_unittest.cc27 EXPECT_TRUE(ret.second); in TEST()
28 EXPECT_EQ(BuilderRecord::ITEM_TARGET, ret.second->type()); in TEST()
29 EXPECT_EQ(kLabel1, ret.second->label()); in TEST()
30 EXPECT_EQ(ret.second, map.find(kLabel1)); in TEST()
33 BuilderRecord* record = ret.second; in TEST()
36 EXPECT_EQ(record, ret.second); in TEST()
41 EXPECT_TRUE(ret.second); in TEST()
43 EXPECT_EQ(BuilderRecord::ITEM_CONFIG, ret.second->type()); in TEST()
44 EXPECT_EQ(kLabel2, ret.second->label()); in TEST()
45 EXPECT_EQ(ret.second, ma in TEST()
[all...]
H A Dcommand_help.cc40 PrintShortHelp(cmd.second.help_short, kCommandLinkPrefix + cmd.first); in PrintToplevelHelp()
45 if (func.second.is_target) in PrintToplevelHelp()
46 PrintShortHelp(func.second.help_short, kFunctionLinkPrefix + func.first); in PrintToplevelHelp()
52 if (!func.second.is_target) in PrintToplevelHelp()
53 PrintShortHelp(func.second.help_short, kFunctionLinkPrefix + func.first); in PrintToplevelHelp()
60 PrintShortHelp(builtin.second.help_short, in PrintToplevelHelp()
68 PrintShortHelp(target.second.help_short, in PrintToplevelHelp()
121 PrintShortHelp(s.second.short_help); in PrintSwitchHelp()
153 PrintLongHelp(c.second.help, kCommandLinkPrefix + c.first); in PrintAllHelp()
160 if (f.second in PrintAllHelp()
[all...]
/third_party/cups-filters/filter/pdftopdf/
H A Dintervalset.cc38 if (pos->second>=it->first) { in finish()
39 pos->second=it->second; in finish()
59 return (val<it->second); in contains()
74 if (val<it->second) { in next()
87 return ((a.first>=b.first) && (a.first<b.second)) || in intersect()
88 ((b.first>=a.first) && (b.first<a.second)); in intersect()
98 if (b.second>aret.second) { in unite()
99 aret.second in unite()
[all...]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
H A DEqualityTester.cs45 public static void AssertEquality<T>(T first, T second) where T : IEquatable<T>
47 Assert.IsTrue(first.Equals(second));
48 Assert.IsTrue(first.Equals((object) second));
49 Assert.AreEqual(first.GetHashCode(), second.GetHashCode());
52 public static void AssertInequality<T>(T first, T second) where T : IEquatable<T>
54 Assert.IsFalse(first.Equals(second));
55 Assert.IsFalse(first.Equals((object) second));
58 if (first != null && second != null)
60 Assert.AreNotEqual(first.GetHashCode(), second.GetHashCode());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DCFGDiff.h51 // - second pair item is BasicBlock *, then InverseEdge = false (so it inherits
53 // - second pair item is Inverse<BasicBlock *>, then InverseEdge = true (so it
92 for (auto Child : Pair.second) { in printMap()
124 auto &EdgesForBB = It->second; in ignoreChild()
135 return make_range(It->second.begin(), It->second.end()); in getAddedChildren()
168 return !N.first->ignoreChild(BB, N.second, false); in operator ()()
182 auto InsertVec = N.first->getAddedChildren(N.second, false); in child_begin()
185 make_range<ExistingChildIterator>({succ_begin(N.second), N.first}, in child_begin()
186 {succ_end(N.second), in child_begin()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DEqualityTester.cs45 public static void AssertEquality<T>(T first, T second) where T : IEquatable<T>
47 Assert.IsTrue(first.Equals(second));
48 Assert.IsTrue(first.Equals((object) second));
49 Assert.AreEqual(first.GetHashCode(), second.GetHashCode());
52 public static void AssertInequality<T>(T first, T second, bool checkHashcode = true) where T : IEquatable<T>
54 Assert.IsFalse(first.Equals(second));
55 Assert.IsFalse(first.Equals((object) second));
59 if (checkHashcode && first != null && second != null)
61 Assert.AreNotEqual(first.GetHashCode(), second.GetHashCode());
/third_party/protobuf/js/experimental/runtime/testing/
H A Djasmine_protobuf.js18 * @param {*} second
21 const byteStringEquality = (first, second) => {
22 if (second instanceof ByteString) {
23 return second.equals(first);
35 * @param {*} second
38 const arrayBufferCustomEquality = (first, second) => {
39 if (first instanceof ArrayBuffer && second instanceof ArrayBuffer) {
40 return arrayBufferEqual(first, second);
51 * @param {*} second
54 const bufferDecoderCustomEquality = (first, second)
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dcivil_time_test.cc47 static_assert(css.second() == 12, "Normal.second"); in TEST()
72 static_assert(css.second() == 0, "Conversion.second"); in TEST()
84 static_assert(cs.second() == 12, "Normalized.second"); in TEST()
94 static_assert(cs.second() == 1, "SecondOverflow.second"); in TEST()
104 static_assert(cs.second() == 59, "SecondUnderflow.second"); in TEST()
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A Diomapper.cpp92 if (at != target->end() && at->second.id == ent.id) in visitSymbol()
93 at->second.live = at->second.live || ! traverseAll; // update live state in visitSymbol()
133 if (at->second.id != ent.id) in visitSymbol()
136 if (at->second.newBinding != -1) in visitSymbol()
137 base->getWritableType().getQualifier().layoutBinding = at->second.newBinding; in visitSymbol()
138 if (at->second.newSet != -1) in visitSymbol()
139 base->getWritableType().getQualifier().layoutSet = at->second.newSet; in visitSymbol()
140 if (at->second.newLocation != -1) in visitSymbol()
141 base->getWritableType().getQualifier().layoutLocation = at->second in visitSymbol()
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
H A Dmutator_cache.cc32 return entries_.front().second.get(); in Get()
39 it->second->second = std::move(value); in Put()
48 assert(pair.second && "The key must be unique"); in Put()
58 auto result = std::move(it->second->second); in Remove()
59 entries_.erase(it->second); in Remove()
70 auto entry = std::move(*it->second); in UpdateUsage()
71 entries_.erase(it->second); in UpdateUsage()
73 it->second in UpdateUsage()
[all...]
/third_party/libabigail/src/
H A Dabg-ir-priv.h362 {return abigail::hashing::combine_hashes(p.first, p.second);} in operator ()()
490 // comparison activated, and the second time with structural
541 /// @param second the second sub-type that has been compared. Its
544 /// @param r the result of comparing @p first and @p second. This
546 /// @p first and @p second.
549 cache_type_comparison_result(T& first, T& second, bool r) in cache_type_comparison_result()
555 && !is_recursive_type(&second) in cache_type_comparison_result()
557 && !is_type(&second)->priv_->depends_on_recursive_type()))) in cache_type_comparison_result()
561 reinterpret_cast<uint64_t>(&second)), in cache_type_comparison_result()
[all...]

Completed in 13 milliseconds

12345678910>>...133