/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash_forgetful_chain_inc.h | 40 uint16_t next; in FN() local 144 banks[bank].slots[idx].next = head[key]; in Store() 254 slot = banks[bank].slots[last].next; in FindLongestMatch()
|
/third_party/skia/third_party/externals/brotli/research/ |
H A D | dictionary_generator.cc | 52 size_t next = (10 * result) + (str[i] - '0'); in readInt() local 53 if (next <= result) { in readInt() 56 result = next; in readInt()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | SwapChainD3D12.cpp | 98 DawnSwapChainNextTexture next = {}; in GetNextTextureImpl() local 99 DawnSwapChainError error = im.GetNextTexture(im.userData, &next); in GetNextTextureImpl() 105 ComPtr<ID3D12Resource> d3d12Texture = static_cast<ID3D12Resource*>(next.texture.ptr); in GetNextTextureImpl() 338 // Synchronously wait until previous operations on the next swapchain buffer are finished. in GetCurrentTextureViewImpl()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-face.cc | 283 hb_face_t::plan_node_t *next = node->next; in hb_face_destroy() local 286 node = next; in hb_face_destroy()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | simple_ilist.h | 36 /// takes an iterator or iterator range and returns the next one, and \a 209 auto Next = std::next(I); in eraseAndDispose() 240 splice(I, L2, Node, std::next(Node)); in splice() 290 if (empty() || std::next(begin()) == end()) in sort()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | R600EmitClauseMarkers.cpp | 328 auto next = MakeALUClause(MBB, I); variable 329 assert(next != I); 330 I = next;
|
H A D | SIModeRegister.cpp | 340 for (P = std::next(P); P != E; P = std::next(P)) { in processBlockPhase2() 352 S != E; S = std::next(S)) { in processBlockPhase2()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFMISimplifyPatchable.cpp | 100 NextI = std::next(I); in checkADDrr() 158 NextI = std::next(I); in processCandidate() 184 NextI = std::next(I); in processDstReg()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZPostRewrite.cpp | 178 MF.insert(std::next(MachineFunction::iterator(MBB)), RestMBB); in expandCondMove() 186 MF.insert(std::next(MachineFunction::iterator(MBB)), MoveMBB); in expandCondMove() 255 MachineBasicBlock::iterator NMBBI = std::next(MBBI); in selectMBB()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLateEHPrepare.cpp | 198 MBB.erase(std::next(MI.getIterator()), MBB.end()); in removeUnnecessaryUnreachables() 300 MF.insert(std::next(MachineFunction::iterator(EHPad)), ElseMBB); in addExceptionExtraction() 301 MF.insert(std::next(MachineFunction::iterator(ElseMBB)), ThenMBB); in addExceptionExtraction()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | ucharstrie.h | 195 * Equivalent to reset().next(uchar). 221 UStringTrieResult next(int32_t uchar); 239 * result=next(c); 247 UStringTrieResult next(ConstChar16Ptr s, int32_t length); 251 * current()/first()/next() returned USTRINGTRIE_INTERMEDIATE_VALUE or USTRINGTRIE_FINAL_VALUE. 283 * That is, each char16_t c for which it would be next(c)!=USTRINGTRIE_NO_MATCH now. 284 * @param out Each next char16_t is appended to this object. 342 * Finds the next (string, value) pair if there is one. 355 UBool next(UErrorCode &errorCode); 358 * @return The string for the last successful next() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | simple_ilist.h | 40 /// takes an iterator or iterator range and returns the next one, and \a 213 auto Next = std::next(I); in eraseAndDispose() 244 splice(I, L2, Node, std::next(Node)); in splice() 294 if (empty() || std::next(begin()) == end()) in sort()
|
/third_party/toybox/toys/lsb/ |
H A D | mount.c | 304 for (o = TT.optlist; o; o = o->next) comma_collate(&opts, o->arg); in mount_main() 336 for (mm = remount ? remount : mtl; mm; mm = (remount ? mm->prev : mm->next)) in mount_main() 364 for (mmm = mtl2; mmm; mmm = mmm->next) in mount_main()
|
/third_party/rust/crates/rust-openssl/openssl-sys/build/ |
H A D | main.rs | 341 let major = it.next().unwrap().parse::<u64>().unwrap(); in parse_new_version() 342 let minor = it.next().unwrap().parse::<u64>().unwrap(); in parse_new_version() 343 let patch = it.next().unwrap().parse::<u64>().unwrap(); in parse_new_version()
|
/third_party/rust/crates/syn/src/ |
H A D | error.rs | 194 let start = iter.next().map_or_else(Span::call_site, |t| t.span()); in new_spanned() 429 fn next(&mut self) -> Option<Self::Item> { in next() functions 431 messages: vec![self.messages.next()?], in next() 454 fn next(&mut self) -> Option<Self::Item> { in next() functions 456 messages: vec![self.messages.next()?.clone()], in next()
|
/third_party/vulkan-loader/loader/ |
H A D | loader_common.h | 210 struct loader_device *next; member 228 struct loader_icd_term *next; member 277 struct loader_instance *next; member
|
/test/xts/device_attest_lite/services/core/network/ |
H A D | attest_network.c | 152 head = head->next; in BuildCoapMsg() 221 head = head->next; in ConnectNetWork() 596 char* next = NULL; in SplitBySymbol() local 597 char* pNext = (char*)strtok_s(tempSrc, separator, &next); in SplitBySymbol() 623 pNext = (char*)strtok_s(NULL, separator, &next); in SplitBySymbol() 674 head = head->next; in BuildUriOption() 1031 char *next = NULL; in ParseNetworkInfosConfig() local 1032 char *pNext = strtok_s(inputData, ";", &next); in ParseNetworkInfosConfig() 1043 pNext = strtok_s(NULL, ";", &next); in ParseNetworkInfosConfig()
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_filter.c | 332 for (cur = inputs; cur; cur = cur->next) in init_complex_filtergraph() 343 cur = cur->next; in init_complex_filtergraph() 344 ofilter->out_tmp->next = NULL; in init_complex_filtergraph() 1050 if (simple && (!inputs || inputs->next || !outputs || outputs->next)) { in configure_filtergraph() 1055 } else if (outputs->next) { in configure_filtergraph() 1062 } else if (inputs->next) { in configure_filtergraph() 1076 for (cur = inputs, i = 0; cur; cur = cur->next, i++) in configure_filtergraph() 1084 for (cur = outputs, i = 0; cur; cur = cur->next, i++) in configure_filtergraph()
|
/third_party/backends/backend/ |
H A D | ibm.c | 117 for (dev = first_dev; dev; dev = dev->next) in attach() 138 /* next line by mf */ in attach() 334 dev->next = first_dev; in attach() 585 Ibm_Device *dev, *next; in sane_exit() local 588 for (dev = first_dev; dev; dev = next) in sane_exit() 590 next = dev->next; in sane_exit() 614 for (dev = first_dev; dev; dev = dev->next) in sane_get_devices() 634 for (dev = first_dev; dev; dev = dev->next) in sane_open() 665 s->next in sane_open() [all...] |
H A D | ricoh.c | 113 for (dev = first_dev; dev; dev = dev->next) in attach() 297 dev->next = first_dev; in attach() 531 Ricoh_Device *dev, *next; in sane_exit() local 534 for (dev = first_dev; dev; dev = next) in sane_exit() 536 next = dev->next; in sane_exit() 565 for (dev = first_dev; dev; dev = dev->next) in sane_get_devices() 585 for (dev = first_dev; dev; dev = dev->next) in sane_open() 616 s->next = first_handle; in sane_open()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | CollationBuilder.java | 664 // Insert the new root node before the next stronger node, in findOrInsertWeakNode() 665 // or before the next root node with the same strength and a larger weight. in findOrInsertWeakNode() 684 // Skip the next node. in findOrInsertWeakNode() 706 // Insert the new node before the next one with a strength at least as strong. in insertTailoredNodeAfter() 712 // Skip the next node which has a weaker (larger) strength than the new one. in insertTailoredNodeAfter() 721 * The node's previous and next indexes must not be set yet. 873 String str = stringIter.next(); in addOnlyClosure() 882 String prefix = prefixIter.next(); in addOnlyClosure() 887 String str = stringIter.next(); in addOnlyClosure() 920 while(iter.next()) { in addTailComposites() 1448 nodeFromNextIndex(int next) nodeFromNextIndex() argument 1487 changeNodeNextIndex(long node, int next) changeNodeNextIndex() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | CollationBuilder.java | 668 // Insert the new root node before the next stronger node, in findOrInsertWeakNode() 669 // or before the next root node with the same strength and a larger weight. in findOrInsertWeakNode() 688 // Skip the next node. in findOrInsertWeakNode() 710 // Insert the new node before the next one with a strength at least as strong. in insertTailoredNodeAfter() 716 // Skip the next node which has a weaker (larger) strength than the new one. in insertTailoredNodeAfter() 725 * The node's previous and next indexes must not be set yet. 877 String str = stringIter.next(); in addOnlyClosure() 886 String prefix = prefixIter.next(); in addOnlyClosure() 891 String str = stringIter.next(); in addOnlyClosure() 924 while(iter.next()) { in addTailComposites() 1452 nodeFromNextIndex(int next) nodeFromNextIndex() argument 1491 changeNodeNextIndex(long node, int next) changeNodeNextIndex() argument [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_schedule_instructions.cpp | 11 * The above copyright notice and this permission notice (including the next 1110 schedule_node *next = (schedule_node *)n->next; in add_barrier_deps() local 1121 if (next) { in add_barrier_deps() 1122 while (!next->is_tail_sentinel()) { in add_barrier_deps() 1123 add_dep(n, next, 0); in add_barrier_deps() 1124 if (is_scheduling_barrier(next->inst)) in add_barrier_deps() 1126 next = (schedule_node *)next->next; in add_barrier_deps() [all...] |
/third_party/lwip/src/core/ |
H A D | dns.c | 458 entry->next = local_hostlist_dynamic; in dns_init_local() 485 entry = entry->next; in dns_local_iterate() 531 entry = entry->next; in dns_lookup_local() 570 last_entry->next = entry->next; in dns_local_removehost() 572 local_hostlist_dynamic = entry->next; in dns_local_removehost() 575 entry = entry->next; in dns_local_removehost() 580 entry = entry->next; in dns_local_removehost() 613 entry->next = local_hostlist_dynamic; in dns_local_addhost() 1184 /* wait longer for the next retr in dns_check_entry() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveDebugVariables.cpp | 163 UserValue *next = nullptr; ///< Next value in equivalence class, or null. member in __anon24031::UserValue 202 /// Return the next UserValue in the equivalence class. 203 UserValue *getNext() const { return next; } in getNext() 223 while (End->next) { in merge() 225 End = End->next; in merge() 228 End->next = L1->next; in merge() 229 L1->next = L2; in merge() 766 // Limited by the next def. in extendDef() 897 // the next de in computeIntervals() [all...] |