| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| H A D | ilist.h | 73 void transferNodesFromList(ilist_callback_traits &OldList, Iterator /*first*/, in transferNodesFromList() 175 /// ilist_sentinel, which holds pointers to the first and last nodes in the 297 // [first, last) into position. 299 void transfer(iterator position, iplist_impl &L2, iterator first, iterator last) { in transfer() argument 304 this->transferNodesFromList(L2, first, last); in transfer() 306 base_list_type::splice(position, L2, first, last); in transfer() 316 iterator erase(iterator first, iterator last) { in erase() argument 317 while (first != last) in erase() 318 first = erase(first); in erase() 337 insert(iterator where, InIt first, InIt last) insert() argument 346 splice(iterator where, iplist_impl &L2, iterator first) splice() argument 351 splice(iterator where, iplist_impl &L2, iterator first, iterator last) splice() argument [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| H A D | ilist.h | 71 void transferNodesFromList(ilist_callback_traits &OldList, Iterator /*first*/, in transferNodesFromList() 163 /// ilist_sentinel, which holds pointers to the first and last nodes in the 282 // [first, last) into position. 284 void transfer(iterator position, iplist_impl &L2, iterator first, iterator last) { in transfer() argument 289 this->transferNodesFromList(L2, first, last); in transfer() 291 base_list_type::splice(position, L2, first, last); in transfer() 301 iterator erase(iterator first, iterator last) { in erase() argument 302 while (first != last) in erase() 303 first = erase(first); in erase() 322 insert(iterator where, InIt first, InIt last) insert() argument 331 splice(iterator where, iplist_impl &L2, iterator first) splice() argument 336 splice(iterator where, iplist_impl &L2, iterator first, iterator last) splice() argument [all...] |
| /third_party/skia/src/pathops/ |
| H A D | SkPathOpsTSect.cpp | 637 SkTSpan* first = fHead; in coincidentCheck() local 638 if (!first) { in coincidentCheck() 643 int consecutive = this->countConsecutiveSpans(first, &last); in coincidentCheck() 650 this->computePerpendiculars(sect2, first, last); in coincidentCheck() 654 SkTSpan* coinStart = first; in coincidentCheck() 667 } while ((first = next)); in coincidentCheck() 673 SkTSpan* first = fHead; in coincidentForce() local 680 bool deleteEmptySpans = this->updateBounded(first, last, oppFirst); in coincidentForce() 681 deleteEmptySpans |= sect2->updateBounded(oppFirst, oppLast, first); in coincidentForce() 682 this->removeSpanRange(first, las in coincidentForce() 730 computePerpendiculars(SkTSect* sect2, SkTSpan* first, SkTSpan* last) computePerpendiculars() argument 773 countConsecutiveSpans(SkTSpan* first, SkTSpan** lastPtr) const countConsecutiveSpans() argument 823 extractCoincident( SkTSect* sect2, SkTSpan* first, SkTSpan* last, SkTSpan** result) extractCoincident() argument 942 findCoincidentRun( SkTSpan* first, SkTSpan** lastPtr) findCoincidentRun() argument 1417 removeSpanRange(SkTSpan* first, SkTSpan* last) removeSpanRange() argument 1541 updateBounded(SkTSpan* first, SkTSpan* last, SkTSpan* oppFirst) updateBounded() argument [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
| H A D | NormalizerBuilder.java | 201 int first = '\u0000'; in buildDecompositionTables() 204 first = second; in buildDecompositionTables() 206 UTF16Util.codePointLength(first)); in buildDecompositionTables() 211 pair = ((long)first << 32) | second; in buildDecompositionTables() 232 char first, second; in buildDecompositionTables() 234 first = (char)(SBase + SIndex - TIndex); in buildDecompositionTables() 237 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables() 240 pair = ((long)first << 32) | second; in buildDecompositionTables() 242 decompose.put(value, String.valueOf(first) + second); in buildDecompositionTables() 424 int first in setMinimalDecomp() [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
| H A D | NormalizerBuilder.java | 200 int first = '\u0000'; in buildDecompositionTables() 203 first = second; in buildDecompositionTables() 205 UTF16Util.codePointLength(first)); in buildDecompositionTables() 210 pair = ((long)first << 32) | second; in buildDecompositionTables() 231 char first, second; in buildDecompositionTables() 233 first = (char)(SBase + SIndex - TIndex); in buildDecompositionTables() 236 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables() 239 pair = ((long)first << 32) | second; in buildDecompositionTables() 241 decompose.put(value, String.valueOf(first) + second); in buildDecompositionTables() 423 int first in setMinimalDecomp() [all...] |
| /third_party/rust/crates/codespan/codespan-reporting/examples/ |
| H A D | readme_preview.rs | 289 let mut first = true; in set_color() variables 291 fn write_first<W: Write>(first: bool, writer: &mut SvgWriter<W>) -> io::Result<bool> { in set_color() 292 if !first { in set_color() 315 first = write_first(first, self)?; in set_color() 321 first = write_first(first, self)?; in set_color() 327 first = write_first(first, self)?; in set_color() 332 first in set_color() [all...] |
| /third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
| H A D | raw_hash_map.h | 96 return insert_or_assign(std::forward<K>(k), std::forward<V>(v)).first; in insert_or_assign() 101 return insert_or_assign(std::forward<K>(k), v).first; in insert_or_assign() 106 return insert_or_assign(k, std::forward<V>(v)).first; in insert_or_assign() 111 return insert_or_assign(k, v).first; in insert_or_assign() 134 return try_emplace(std::forward<K>(k), std::forward<Args>(args)...).first; in try_emplace() 139 return try_emplace(k, std::forward<Args>(args)...).first; in try_emplace() 164 return Policy::value(&*try_emplace(std::forward<K>(key)).first); in operator []() 169 return Policy::value(&*try_emplace(key).first); in operator []() 177 this->emplace_at(res.first, std::forward<K>(k), std::forward<V>(v)); in insert_or_assign_impl() 179 Policy::value(&*this->iterator_at(res.first)) in insert_or_assign_impl() [all...] |
| /third_party/protobuf/csharp/src/Google.Protobuf/ |
| H A D | ByteArray.cs | 71 for (int first = 0, last = bytes.Length - 1; first < last; first++, last--)
in Reverse() 73 byte temp = bytes[first];
in Reverse() 74 bytes[first] = bytes[last];
in Reverse()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.cpp | 111 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops() 125 const unsigned TypeIdx = Mutation.first; in mutationIsSane() 194 << Mutation.first << ", " << Mutation.second << "\n"); in apply() 198 return {Rule.getAction(), Mutation.first, Mutation.second}; in apply() 221 LLVM_DEBUG(dbgs() << ".. the first uncovered type index: " << FirstUncovered in verifyTypeIdxsCoverage() 243 LLVM_DEBUG(dbgs() << ".. the first uncovered imm index: " << FirstUncovered in verifyImmIdxsCoverage() 302 const LLT Type = LLT2Action.first; in computeTables() 336 Opcode, TypeIdx, PointerSpecifiedActions.first, in computeTables() 344 const uint16_t ElementSize = VectorSpecifiedActions.first; in computeTables() 353 assert(BitsizeAndAction.first in computeTables() [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| H A D | PluralRanges.java | 95 StandardPlural first = null; in endSame() 101 if (first == null) { in endSame() 102 first = item; in endSame() 105 if (first != item) { in endSame() 109 return first; in endSame() 119 StandardPlural first = null; in startSame() 125 if (first == null) { in startSame() 126 first = item; in startSame() 129 if (first != item) { in startSame() 137 return first; in startSame() [all...] |
| /third_party/mesa3d/src/mesa/main/ |
| H A D | glthread_draw.c | 261 GLint first; member 278 const GLint first = cmd->first; in _mesa_unmarshal_DrawArrays() local 284 (mode, first, count, instance_count, in _mesa_unmarshal_DrawArrays() 290 draw_arrays_async(struct gl_context *ctx, GLenum mode, GLint first, in draw_arrays_async() argument 298 cmd->first = first; in draw_arrays_async() 309 GLint first; member 327 const GLint first = cmd->first; in _mesa_unmarshal_DrawArraysInstancedBaseInstance() local 354 draw_arrays_async_user(struct gl_context *ctx, GLenum mode, GLint first, GLsizei count, GLsizei instance_count, GLuint baseinstance, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) draw_arrays_async_user() argument 378 draw_arrays(GLenum mode, GLint first, GLsizei count, GLsizei instance_count, GLuint baseinstance, bool compiled_into_dlist) draw_arrays() argument 438 const GLint *first = (GLint *)variable_data; _mesa_unmarshal_MultiDrawArrays() local 463 multi_draw_arrays_async(struct gl_context *ctx, GLenum mode, const GLint *first, const GLsizei *count, GLsizei draw_count, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) multi_draw_arrays_async() argument 500 _mesa_marshal_MultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei draw_count) _mesa_marshal_MultiDrawArrays() argument 1147 _mesa_marshal_DrawArrays(GLenum mode, GLint first, GLsizei count) _mesa_marshal_DrawArrays() argument 1153 _mesa_marshal_DrawArraysInstancedARB(GLenum mode, GLint first, GLsizei count, GLsizei instance_count) _mesa_marshal_DrawArraysInstancedARB() argument 1160 _mesa_marshal_DrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count, GLsizei instance_count, GLuint baseinstance) _mesa_marshal_DrawArraysInstancedBaseInstance() argument [all...] |
| /third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
| H A D | inlined_vector.h | 138 // forward iterator range [`first`, `last`). 145 InlinedVector(ForwardIterator first, ForwardIterator last, in InlinedVector() argument 148 storage_.Initialize(IteratorValueAdapter<ForwardIterator>(first), in InlinedVector() 149 std::distance(first, last)); in InlinedVector() 153 // iterator range [`first`, `last`). 156 InlinedVector(InputIterator first, InputIterator last, in InlinedVector() argument 159 std::copy(first, last, std::back_inserter(*this)); in InlinedVector() 353 // Returns a `reference` to the first element of the inlined vector. 360 // the first element of the inlined vector. 510 // inlined vector with the range [`first`, `las 515 assign(ForwardIterator first, ForwardIterator last) assign() argument 526 assign(InputIterator first, InputIterator last) assign() argument 600 insert(const_iterator pos, ForwardIterator first, ForwardIterator last) insert() argument 620 insert(const_iterator pos, InputIterator first, InputIterator last) insert() argument [all...] |
| /third_party/musl/src/malloc/mallocng/ |
| H A D | malloc.c | 179 uint32_t first; in try_avail() local 231 first = 1 << idx; in try_avail() 233 first = mask&-mask; in try_avail() 235 m->avail_mask = mask-first; in try_avail() 236 return first; in try_avail() 358 uint32_t first = try_avail(&ctx.active[sc]); in alloc_slot() local 359 if (first) return a_ctz_32(first); in alloc_slot() 373 uint32_t mask, first; in malloc() local 415 // to be allocated at first rathe in malloc() [all...] |
| /third_party/musl/porting/linux/user/src/malloc/mallocng/ |
| H A D | malloc.c | 175 uint32_t first; in try_avail() local 228 first = 1 << idx; in try_avail() 230 first = mask&-mask; in try_avail() 232 m->avail_mask = mask-first; in try_avail() 233 return first; in try_avail() 353 uint32_t first = try_avail(&ctx.active[sc]); in alloc_slot() local 354 if (first) return a_ctz_32(first); in alloc_slot() 368 uint32_t mask, first; in malloc() local 408 // to be allocated at first rathe in malloc() [all...] |
| /third_party/skia/third_party/externals/freetype/src/cache/ |
| H A D | ftcmanag.c | 473 FTC_Node node, first; in FTC_Manager_Check() local 476 first = manager->nodes_list; in FTC_Manager_Check() 479 if ( first ) in FTC_Manager_Check() 484 node = first; in FTC_Manager_Check() 499 } while ( node != first ); in FTC_Manager_Check() 507 if ( first ) in FTC_Manager_Check() 512 node = first; in FTC_Manager_Check() 518 } while ( node != first ); in FTC_Manager_Check() 539 FTC_Node node, first; in FTC_Manager_Compress() local 545 first in FTC_Manager_Compress() 634 FTC_Node first = manager->nodes_list; FT_LOCAL_DEF() local [all...] |
| /third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
| H A D | shebang-in-only-one-dependency-project.js | 17 //// [/src/first/first_PART1.ts]
31 //// [/src/first/first_part2.ts]
35 //// [/src/first/first_part3.ts]
40 //// [/src/first/tsconfig.json]
49 "outFile": "./bin/first-output.js",
125 { "path": "../first", "prepend": true },
136 * src/first/tsconfig.json
140 [[90m12:00:08 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first [all...] |
| H A D | triple-slash-refs-in-one-project.js | 17 //// [/src/first/first_PART1.ts]
31 //// [/src/first/first_part2.ts]
35 //// [/src/first/first_part3.ts]
40 //// [/src/first/tsconfig.json]
49 "outFile": "./bin/first-output.js",
129 { "path": "../first", "prepend": true },
140 * src/first/tsconfig.json
144 [[90m12:00:09 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first [all...] |
| H A D | when-source-files-are-empty-in-the-own-file.js | 17 //// [/src/first/first_PART1.ts]
31 //// [/src/first/first_part2.ts]
35 //// [/src/first/first_part3.ts]
40 //// [/src/first/tsconfig.json]
49 "outFile": "./bin/first-output.js",
122 { "path": "../first", "prepend": true },
133 * src/first/tsconfig.json
137 [[90m12:00:08 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first [all...] |
| /third_party/python/Lib/unittest/ |
| H A D | case.py | 142 # Swallows all but first exception. If a multi-exception handler 493 The default implementation of this method returns the first line of 788 The context manager keeps a reference to the first matching 817 logging.getLogger('foo').info('first message') 819 self.assertEqual(cm.output, ['INFO:foo:first message', 835 def _getAssertEqualityFunc(self, first, second): 838 Returns: A callable accepting (first, second, msg=None) that will 839 raise a failure exception if first != second with a useful human 843 # NOTE(gregory.p.smith): I considered isinstance(first, type(second)) 852 if type(first) i [all...] |
| /third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
| H A D | ecma-builtin-string-iterator-prototype.c | 102 ecma_char_t first = ecma_string_get_char_at_pos (string_p, position); in ecma_builtin_string_iterator_prototype_object_next() local 108 if (first < LIT_UTF16_HIGH_SURROGATE_MIN || first > LIT_UTF16_HIGH_SURROGATE_MAX || (position + 1 == len)) in ecma_builtin_string_iterator_prototype_object_next() 110 result_str_p = ecma_new_ecma_string_from_code_unit (first); in ecma_builtin_string_iterator_prototype_object_next() 121 result_str_p = ecma_new_ecma_string_from_code_unit (first); in ecma_builtin_string_iterator_prototype_object_next() 126 result_str_p = ecma_new_ecma_string_from_code_units (first, second); in ecma_builtin_string_iterator_prototype_object_next()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | validationGL44_autogen.h | 22 GLuint first, 27 GLuint first, 33 GLuint first, 37 GLuint first, 41 GLuint first, 45 GLuint first,
|
| /third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
| H A D | uniform_buffer_element_descriptor.cpp | 35 const protobufs::UniformBufferElementDescriptor* first, in operator ()() 37 return first->descriptor_set() == second->descriptor_set() && in operator ()() 38 first->binding() == second->binding() && in operator ()() 39 first->index().size() == second->index().size() && in operator ()() 40 std::equal(first->index().begin(), first->index().end(), in operator ()() 34 operator ()( const protobufs::UniformBufferElementDescriptor* first, const protobufs::UniformBufferElementDescriptor* second) const operator ()() argument
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
| H A D | uniform_buffer_element_descriptor.cpp | 35 const protobufs::UniformBufferElementDescriptor* first, in operator ()() 37 return first->descriptor_set() == second->descriptor_set() && in operator ()() 38 first->binding() == second->binding() && in operator ()() 39 first->index().size() == second->index().size() && in operator ()() 40 std::equal(first->index().begin(), first->index().end(), in operator ()() 34 operator ()( const protobufs::UniformBufferElementDescriptor* first, const protobufs::UniformBufferElementDescriptor* second) const operator ()() argument
|
| /third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/ |
| H A D | stats.cc | 47 char *name = TagToString(it->first); in PrintComparison() 50 TableSizePercent(font, it->first)); in PrintComparison() 53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); in PrintComparison() 58 size_percent = subtly::TableSizePercent(new_font, it->first); in PrintComparison() 75 char *name = TagToString(it->first); in PrintStats() 78 TableSizePercent(font, it->first)); in PrintStats()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
| H A D | RemarkStringTable.cpp | 36 SerializedSize += KV.first->first().size() + 1; // +1 for the '\0' in add() 38 return {KV.first->second, KV.first->first()}; in add() 68 Strings[KV.second] = KV.first(); in serialize()
|