/third_party/rust/crates/proc-macro2/src/ |
H A D | fallback.rs | 815 let first = chars.next().unwrap(); in validate_ident() 983 while let Some(ch) = chars.next() { in string() 988 .starts_with(|next| '0' <= next && next <= '7') in string() 1023 while let Some(&b) = bytes.next() { in byte_string()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_linux.c | 609 u8 pkey[8], next, tmp; in des_encrypt() local 621 next = 0; in des_encrypt() 624 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 625 next = tmp << (7 - i); in des_encrypt() 627 pkey[i] = next | 1; in des_encrypt()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_linux.c | 609 u8 pkey[8], next, tmp; in des_encrypt() local 621 next = 0; in des_encrypt() 624 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 625 next = tmp << (7 - i); in des_encrypt() 627 pkey[i] = next | 1; in des_encrypt()
|
/third_party/vulkan-loader/loader/ |
H A D | unknown_ext_chain_gas_x86.S | 25 # jump to the next function in the call chain 60 cmp qword ptr [rax + (DISPATCH_OFFSET_ICD_TERM + (PTR_SIZE * \num))], 0 # Check if the next function in the chain is NULL 63 jmp [rax + (DISPATCH_OFFSET_ICD_TERM + (PTR_SIZE * \num))] # Jump to the next function in the chain 113 cmp dword ptr [eax + (DISPATCH_OFFSET_ICD_TERM + (PTR_SIZE * \num))], 0 # Check if the next function in the chain is NULL 117 jmp [eax + (DISPATCH_OFFSET_ICD_TERM + (PTR_SIZE * \num))] # Jump to the next function in the chain
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_lowering_nvc0.cpp | 331 Instruction *next; in visit() local 332 for (Instruction *i = bb->getEntry(); i; i = next) { in visit() 333 next = i->next; in visit() 441 findFirstUsesBB(minGPR, maxGPR, texi->next, texi, uses, visited); in findFirstUses() 462 for (Instruction *insn = start; insn != bb->getExit(); insn = insn->next) { in findFirstUsesBB() 487 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in findFirstUsesBB() 519 for (ArrayList::Iterator i = fn->allBBlocks.iterator(); !i.end(); i.next()) { in insertTextureBarriers() 610 for (bi->reset(); !bi->end(); bi->next()) { in insertTextureBarriers() 615 for (Instruction *i = bb->getFirst(); i; i = i->next) { in insertTextureBarriers() 661 Instruction *next; insertTextureBarriers() local 834 Instruction *i, *next; visit() local [all...] |
/third_party/backends/backend/ |
H A D | apple.c | 483 for (dev = first_dev; dev; dev = dev->next) in attach() 609 dev->next = first_dev; in attach() 1914 Apple_Device *dev, *next; in sane_exit() local 1916 for (dev = first_dev; dev; dev = next) in sane_exit() 1918 next = dev->next; in sane_exit() 1943 for (dev = first_dev; i < num_devices; dev = dev->next) in sane_get_devices() 1961 for (dev = first_dev; dev; dev = dev->next) in sane_open() 1992 s->next = first_handle; in sane_open() 2006 for (s = first_handle; s; s = s->next) in sane_close() [all...] |
H A D | snapscan-usb.c | 446 bqe->next=NULL; in enqueue_bq() 449 bqtail->next=bqe; in enqueue_bq() 471 bqhead = bqhead->next; in dequeue_bq()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 154 for (UnicodeSetIterator it = new UnicodeSetIterator(testSet); it.next();) { in TestPropertyAccess() 398 * the backslash to generically escape the next character. */ in unescapeAt() 689 if (!iset.next() || iset.codepoint != UnicodeSetIterator.IS_STRING) { in TestAPI() 690 errln("FAIL: UnicodeSetIterator.next/IS_STRING"); in TestAPI() 792 log(myiter.next().toString() + " "); in TestAPI() 1549 for (UnicodeSetIterator it = new UnicodeSetIterator(set1); it.next();) { in TestGenerics() 2283 while (it.next()) { in copyWithIterator() 2487 assertFalse("", it.next()); in TestIteration() 2864 assertTrue("set iterator.next()", sit.next()); in TestEmptyString() [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_dfa_match.c | 325 struct RWS_anchor *next; member 400 workspace block. If there's an existing next block, use it; otherwise get a new 418 if (rws->next != NULL) in more_workspace() 420 new = rws->next; in more_workspace() 441 new->next = NULL; in more_workspace() 443 rws->next = new; in more_workspace() 857 on with the next opcode. For repeating opcodes, also add the repeat in internal_dfa_match() 987 /* These opcodes inspect the next subject character, and sometimes in internal_dfa_match() 1161 /* Check the next character by Unicode property. We will get here only in internal_dfa_match() 2948 /* For each successful matched substring, set up the next stat in internal_dfa_match() 4052 RWS_anchor *next = rws->next; pcre2_dfa_match() local [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | GeneratedMessageV3.java | 1167 // a way to get the next element without advancing the iterator. 1171 private Map.Entry<FieldDescriptor, Object> next; field in GeneratedMessageV3.ExtendableMessage.ExtensionWriter 1176 next = iter.next(); in ExtensionWriter() 1183 while (next != null && next.getKey().getNumber() < end) { in writeUntil() 1184 FieldDescriptor descriptor = next.getKey(); in writeUntil() 1188 if (next instanceof LazyField.LazyEntry<?>) { in writeUntil() 1190 ((LazyField.LazyEntry<?>) next).getField().toByteString()); in writeUntil() 1193 (Message) next in writeUntil() [all...] |
H A D | GeneratedMessage.java | 999 // a way to get the next element without advancing the iterator. 1003 private Map.Entry<FieldDescriptor, Object> next; field in GeneratedMessage.ExtendableMessage.ExtensionWriter 1008 next = iter.next(); in ExtensionWriter() 1015 while (next != null && next.getKey().getNumber() < end) { in writeUntil() 1016 FieldDescriptor descriptor = next.getKey(); in writeUntil() 1020 if (next instanceof LazyField.LazyEntry<?>) { in writeUntil() 1022 ((LazyField.LazyEntry<?>) next).getField().toByteString()); in writeUntil() 1025 (Message) next in writeUntil() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | ffv1enc.c | 771 char *next; in encode_init() local 780 s->rc_stat[j][i] = strtol(p, &next, 0); in encode_init() 781 if (next == p) { in encode_init() 787 p = next; in encode_init() 793 s->rc_stat2[i][j][k][m] = strtol(p, &next, 0); in encode_init() 794 if (next == p) { in encode_init() 801 p = next; in encode_init() 804 gob_count = strtol(p, &next, 0); in encode_init() 805 if (next == p || gob_count <= 0) { in encode_init() 810 p = next; in encode_init() [all...] |
H A D | g722enc.c | 191 struct TrellisNode *next[2]; in g722_encode_trellis() local 195 next[j] = c->node_buf[j] + frontier*(i & 1); in g722_encode_trellis() 234 node = nodes_next[index][pos] = next[index]++;\ in g722_encode_trellis()
|
/third_party/curl/src/ |
H A D | tool_getparam.c | 487 {"next", ARG_NONE, ':', C_NEXT}, 650 /* next less trivial: cert_parameter starts 'pkcs11:' and thus in parse_cert_parameter() 827 /* now that getstr has copied the contents of nextarg, wipe the next in cleanarg() 1576 config->url_get = config->url_get->next; in getparameter() 1891 case C_NEXT: /* --next */ in getparameter() 2440 config->url_out = config->url_out->next; in getparameter() 2570 config->url_ul = config->url_ul->next; in getparameter() 2798 /* Allocate the next config */ in parse_args() 2799 config->next = malloc(sizeof(struct OperationConfig)); in parse_args() 2800 if(config->next) { in parse_args() [all...] |
H A D | tool_paramhlp.c | 53 last->next = node; in new_getout() 624 for(; head; head = head->next) { in inlist() 636 bool last = (config->next ? FALSE : TRUE); in get_args()
|
/third_party/FreeBSD/sys/dev/usb/ |
H A D | usb_generic.c | 499 /* setup size for next transfer */ in ugen_isoc_read_callback() 1813 struct usb_device *next = NULL; in ugen_get_port_path() local 1823 next = udev; in ugen_get_port_path() 1824 while (next->parent_hub != NULL) { in ugen_get_port_path() 1826 next = next->parent_hub; in ugen_get_port_path() 1837 next = udev; in ugen_get_port_path() 1838 while (next->parent_hub != NULL) { in ugen_get_port_path() 1839 dpp->udp_port_no[--nlevel] = next->port_no; in ugen_get_port_path() 1840 next in ugen_get_port_path() [all...] |
/third_party/skia/third_party/externals/brotli/research/ |
H A D | brotlidump.py | 238 bits = next(b for (b,s) in self.decodeTable.items() if s==index) 1473 newSymbol = next(lengthIter) 1497 symbol = next(alphabetIter) 1509 startSymbol = next(alphabetIter) 1510 endSymbol = next(alphabetIter) 1523 endSymbol = next(alphabetIter) 1542 startSymbol = next(alphabetIter) 1543 endSymbol = next(alphabetIter) 1552 endSymbol = next(alphabetIter) 1561 symbol = next(alphabetIte [all...] |
/third_party/skia/third_party/externals/freetype/src/bdf/ |
H A D | bdflib.c | 1299 _bdf_line_func_t* next; in _bdf_parse_glyphs() local 1310 next = (_bdf_line_func_t *)call_data; in _bdf_parse_glyphs() 1395 *next = _bdf_parse_end; in _bdf_parse_glyphs() 1516 /* Allocate the next unencoded glyph. */ in _bdf_parse_glyphs() 1620 /* Expect the SWIDTH (scalable width) field next. */ in _bdf_parse_glyphs() 1633 /* Expect the DWIDTH (device width) field next. */ in _bdf_parse_glyphs() 1658 /* Expect the BBX field next. */ in _bdf_parse_glyphs() 1778 _bdf_line_func_t* next; in _bdf_parse_properties() local 1788 next = (_bdf_line_func_t *)call_data; in _bdf_parse_properties() 1825 *next in _bdf_parse_properties() 1881 _bdf_line_func_t* next; _bdf_parse_start() local [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | tcp.h | 239 struct _sack_seq *next; member 248 struct tcp_sack_fast_rxmited *next; member 302 type *next; /* for the linked list */ \ 423 u32_t rcv_nxt; /* next seqno expected */ 459 u32_t snd_nxt; /* next new seqno to be sent */ 463 u32_t snd_lbb; /* Sequence number of next byte to be buffered. */ 806 * -> Reschedule next PTO.
|
/drivers/peripheral/user_auth/hdi_service/database/src/ |
H A D | idm_file_manager.c | 59 temp = temp->next; in StreamWriteEnrolledInfo() 86 temp = temp->next; in StreamWriteCredentialList() 141 temp = temp->next; in WriteUserInfo()
|
/third_party/elfutils/libelf/ |
H A D | elf_getdata.c | 1 /* Return the next data element from the section after possibly converting it. 389 /* Align the offset to the next power of two. Uses algorithm from in __libelf_set_rawdata_wrlock() 531 runp = runp->next; in __elf_getdata_rdlock() 534 /* Return the data for the next data record. */ in __elf_getdata_rdlock() 535 result = runp->next ? &runp->next->data.d : NULL; in __elf_getdata_rdlock()
|
/third_party/ffmpeg/libavformat/ |
H A D | libssh.c | 335 static int libssh_read_dir(URLContext *h, AVIODirEntry **next) in libssh_read_dir() argument 341 *next = entry = ff_alloc_dir_entry(); in libssh_read_dir() 350 av_freep(next); in libssh_read_dir()
|
/third_party/alsa-lib/src/timer/ |
H A D | timer.c | 82 snd_config_iterator_t i, next; in snd_timer_open_conf() local 118 snd_config_for_each(i, next, type_conf) { in snd_timer_open_conf() 253 snd_async_handler_t *h = list_entry(timer->async_handlers.next, snd_async_handler_t, hlist); in snd_timer_close()
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationDummyTest.java | 434 // Get the next funny character to be tested, and set up the in TestJB1401() 475 ceX = ceiX.next(); in TestJB1401() 476 ceY = ceiY.next(); in TestJB1401() 477 ceZ = ceiZ.next(); in TestJB1401() 479 errln("ERROR: CollationElementIterator.next failed for iteration " + j); in TestJB1401()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Trie2.java | 299 rangeFromOther = otherIter.next(); in equals() 338 * or save the range in some other way, before advancing to the next iteration step. 452 * Trie2EnumRange r = i.next(); 569 public Trie2.CharSequenceValues next() { in next() method in Trie2.CharSequenceIterator 877 * The main next() function for Trie2 iterators 881 public Range next() { in next() method in Trie2.Trie2Iterator 987 // The starting code point for the next range to be returned.
|