/third_party/python/Lib/lib2to3/ |
H A D | fixer_util.py | 205 next = getattr(obj, attr) 206 while next: 207 yield next 208 next = getattr(next, attr)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertSkips.cpp | 161 // If the exec mask is non-zero, skip the next two instructions in skipIfDead() 329 MachineBasicBlock::iterator InsPt = std::next(MI.getIterator()); in skipMaskBranch() 385 auto M = std::next(A); in optimizeVccBranch() 447 NextBB = std::next(BI); in runOnMachineFunction() 464 Next = std::next(I); in runOnMachineFunction() 475 // Optimize out branches to the next block. in runOnMachineFunction() 495 NextBB = std::next(BI); in runOnMachineFunction()
|
/third_party/python/Lib/test/ |
H A D | test_enumerate.py | 78 next(it) 104 self.assertRaises(StopIteration, next, e) 109 self.assertRaises(StopIteration, next, e) 114 self.assertRaises(StopIteration, next, e) 160 self.assertTrue(gc.is_tracked(next(it)))
|
/third_party/skia/include/private/ |
H A D | SkTHash.h | 78 // The pointers returned by set() and find() are valid only until the next call to set(). 102 index = this->next(index); in find() 133 index = this->next(index); in remove() 256 index = this->next(index); in uncheckedSet() 295 index = this->next(index); in removeSlot() 312 int next(int index) const { in next() function in SkTHashTable 425 // N.B. The pointers returned by set() and find() are valid only until the next call to set(). 512 // This pointer remains valid until the next call to add().
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_gnutls.c | 51 u8 pkey[8], next, tmp; in des_encrypt() local 55 next = 0; in des_encrypt() 58 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 59 next = tmp << (7 - i); in des_encrypt() 61 pkey[i] = next | 1; in des_encrypt()
|
H A D | crypto_nettle.c | 32 u8 pkey[8], next, tmp; in des_encrypt() local 36 next = 0; in des_encrypt() 39 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 40 next = tmp << (7 - i); in des_encrypt() 42 pkey[i] = next | 1; in des_encrypt()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_gnutls.c | 51 u8 pkey[8], next, tmp; in des_encrypt() local 55 next = 0; in des_encrypt() 58 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 59 next = tmp << (7 - i); in des_encrypt() 61 pkey[i] = next | 1; in des_encrypt()
|
H A D | crypto_nettle.c | 32 u8 pkey[8], next, tmp; in des_encrypt() local 36 next = 0; in des_encrypt() 39 pkey[i] = (tmp >> i) | next | 1; in des_encrypt() 40 next = tmp << (7 - i); in des_encrypt() 42 pkey[i] = next | 1; in des_encrypt()
|
/third_party/vulkan-loader/loader/ |
H A D | vk_loader_platform.h | 498 char *current, *next; in loader_platform_dirname() local 502 for (current = path; *current != '\0'; current = next) { in loader_platform_dirname() 503 next = strchr(current, DIRECTORY_SYMBOL); in loader_platform_dirname() 504 if (next == NULL) { in loader_platform_dirname() 509 next++; in loader_platform_dirname()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | wps_registrar.c | 115 struct wps_pbc_session *next; member 128 pbc = pbc->next; in wps_free_pbc_sessions() 135 struct wps_registrar_device *next; member 285 dev = dev->next; in wps_free_devices() 297 for (dev = reg->devices; dev; dev = dev->next) { in wps_device_get() 334 d->next = reg->devices; in wps_device_store() 358 prev->next = pbc->next; in wps_registrar_add_pbc_session() 360 reg->pbc_sessions = pbc->next; in wps_registrar_add_pbc_session() 364 pbc = pbc->next; in wps_registrar_add_pbc_session() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | wps_registrar.c | 116 struct wps_pbc_session *next; member 129 pbc = pbc->next; in wps_free_pbc_sessions() 136 struct wps_registrar_device *next; member 286 dev = dev->next; in wps_free_devices() 298 for (dev = reg->devices; dev; dev = dev->next) { in wps_device_get() 335 d->next = reg->devices; in wps_device_store() 359 prev->next = pbc->next; in wps_registrar_add_pbc_session() 361 reg->pbc_sessions = pbc->next; in wps_registrar_add_pbc_session() 365 pbc = pbc->next; in wps_registrar_add_pbc_session() [all...] |
/third_party/eudev/src/libudev/ |
H A D | libudev-device.c | 502 char *next; in udev_device_add_property_from_string_parse() local 506 next = strchr(slink, ' '); in udev_device_add_property_from_string_parse() 507 while (next != NULL) { in udev_device_add_property_from_string_parse() 508 next[0] = '\0'; in udev_device_add_property_from_string_parse() 510 slink = &next[1]; in udev_device_add_property_from_string_parse() 511 next = strchr(slink, ' '); in udev_device_add_property_from_string_parse() 517 char *next; in udev_device_add_property_from_string_parse() local 520 next = strchr(tags, ':'); in udev_device_add_property_from_string_parse() 521 if (next != NULL) { in udev_device_add_property_from_string_parse() 522 next in udev_device_add_property_from_string_parse() [all...] |
/third_party/curl/lib/vquic/ |
H A D | curl_osslq.c | 290 struct curltime reconnect_at; /* time the next attempt should start */ 449 Curl_cf_socket_peek(cf->next, data, NULL, NULL, in cf_osslq_ssl_err() 586 for(sdata = data->multi->easyp; sdata; sdata = sdata->next) { in cf_osslq_get_qstream() 1064 Curl_cf_socket_peek(cf->next, data, &ctx->q.sockfd, in cf_osslq_ctx_start() 1304 for(sdata = data->multi->easyp; sdata; sdata = sdata->next) { in cf_progress_ingress() 1331 for(sdata = data->multi->easyp; sdata; sdata = sdata->next) { in cf_osslq_check_and_unblock() 1535 if(!cf->next->connected) { in cf_osslq_connect() 1536 result = Curl_conn_cf_connect(cf->next, data, blocking, done); in cf_osslq_connect() 1546 /* Not time yet to attempt the next connect */ in cf_osslq_connect() 1625 Curl_cf_socket_peek(cf->next, dat in cf_osslq_connect() [all...] |
/third_party/curl/lib/vtls/ |
H A D | vtls.c | 773 curl_socket_t sock = Curl_conn_cf_get_socket(cf->next, data); in Curl_ssl_adjust_pollset() 1051 * and look for next begin in Curl_pin_peer_pubkey() 1629 if(cf->next) in ssl_cf_close() 1630 cf->next->cft->do_close(cf->next, data); in ssl_cf_close() 1655 result = cf->next->cft->do_connect(cf->next, data, blocking, done); in ssl_cf_connect() 1693 result = cf->next->cft->has_data_pending(cf->next, data); in ssl_cf_data_pending() 1808 return cf->next in ssl_cf_query() [all...] |
/third_party/backends/backend/ |
H A D | p5.c | 87 * the result returned must stay consistent until next call. 248 while (device->next) in sane_get_devices() 251 device = device->next; in sane_get_devices() 289 /* go to next detected device */ in sane_get_devices() 290 device = device->next; in sane_get_devices() 355 device = device->next; in sane_open() 418 session->next = sessions; in sane_open() 969 /* at each bit to see we must go to the next byte */ in compute_parameters() 1309 /* copy extra lines needed for lds in next buffer */ in sane_read() 1402 for (session = sessions; session; session = session->next) in sane_close() 1480 struct P5_Session *session, *next; sane_exit() local [all...] |
/third_party/libwebsockets/plugins/ssh-base/ |
H A D | sshd.c | 445 state_get_string_alloc(struct per_session_data__sshd *pss, int next) in state_get_string_alloc() argument 448 pss->state_after_string = (char)next; in state_get_string_alloc() 452 state_get_string(struct per_session_data__sshd *pss, int next) in state_get_string() argument 455 pss->state_after_string = (char)next; in state_get_string() 459 state_get_u32(struct per_session_data__sshd *pss, int next) in state_get_u32() argument 462 pss->state_after_string = (char)next; in state_get_u32() 473 ch = ch->next; in ssh_get_server_ch() 488 ch = ch->next; 505 *ppch = ch->next; in ssh_destroy_channel() 512 } lws_end_foreach_llp(ppch, next); in ssh_destroy_channel() [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | Demo.java | 389 String source = (String) sources.next(); in initMenus() 393 String target = (String) targets.next(); in initMenus() 403 String variant = (String) variants.next(); in initMenus() 539 int pos = brkItr.next(); in printBreaks() 551 char ch = ci.next(); in printIteration() 673 while (it.next()) { in genTestFile() 685 int end = sentenceBreak.next(); in genTestFile() 901 while (it.next()) { in closeUnicodeSet() 918 while (it.next()) { in closeUnicodeSet() 923 String trial = ci.next(); in closeUnicodeSet() [all...] |
/third_party/skia/third_party/externals/freetype/src/raster/ |
H A D | ftraster.c | 349 PProfile link; /* link to next profile (various purposes) */ 361 PProfile next; /* next profile in same contour, used */ member 638 ras.cProfile->next = (PProfile)0; in New_Profile() 730 oldProfile->next = ras.cProfile; in End_Profile() 2026 /* close the `next profile in contour' linked list */ in Convert_Glyph() 2028 lastProfile->next = ras.gProfile; in Convert_Glyph() 2135 PProfile *old, current, next; in Sort() local 2155 next = current->link; in Sort() 2157 while ( next ) in Sort() [all...] |
/third_party/python/Objects/ |
H A D | obmalloc.c | 1005 struct pool_header *nextpool; /* next pool of this size class */ 1024 /* Pool-aligned pointer to the next pool to be carved off. */ 1099 that the next allocation for its size class will reuse the freed block. 1105 Empty pools have no inherent size class: the next time a malloc finds 1127 blocks. The offset from the pool_header to the start of "the next" virgin 1221 This means that the next allocation will come from a heavily used arena, 1503 * the next ideal arena. The tail_lo and tail_hi members correspond to 1528 * for the next arena. Note that it might be in different MAP_TOP in arena_map_mark_used() 1636 /* Take the next available arena object off the head of the list. */ in new_arena() 1801 poolp next; in pymalloc_pool_extend() local 1908 poolp next = usedpools[size + size]; /* == prev */ allocate_from_new_pool() local 2037 poolp next = usedpools[size + size]; insert_to_usedpool() local 2050 poolp next = pool->nextpool; insert_to_freepool() local [all...] |
/third_party/selinux/libsepol/src/ |
H A D | services.c | 309 for (e = constraint->expr; e; e = e->next) { in get_class_info() 441 for (e = constraint->expr; e; e = e->next) { in constraint_expr_eval_reason() 990 constraint = constraint->next; in context_struct_compute_av() 1007 for (ra = policydb->role_allow; ra; ra = ra->next) { in context_struct_compute_av() 1084 constraint = constraint->next; in sepol_validate_transition_reason_buffer() 1433 roletr = roletr->next) { in sepol_compute_sid() 1870 c = c->next; in sepol_fs_sid() 1913 c = c->next; in sepol_ibpkey_sid() 1949 c = c->next; in sepol_ibendport_sid() 1987 c = c->next; in sepol_port_sid() [all...] |
/third_party/alsa-lib/src/ |
H A D | conf.c | 469 struct filedesc *next; member 546 for (fd1 = fd; fd1; fd1 = fd1->next) { in add_include_path() 664 current = current->next; in input_stdio_open() 766 if (fd->next) { in get_char() 769 input->current = fd->next; in get_char() 854 fd->next = input->current; in get_char_skip_comments() 1168 snd_config_iterator_t i, next; in _snd_config_search() local 1169 snd_config_for_each(i, next, config) { in _snd_config_search() 1678 snd_config_iterator_t i, next; in _snd_config_save_children() local 1680 snd_config_for_each(i, next, confi in _snd_config_save_children() 1740 snd_config_iterator_t i, next; snd_config_substitute() local 1841 snd_config_iterator_t i, next; snd_config_is_array() local 1910 snd_config_iterator_t i, next; snd_config_set_id() local 2144 snd_config_iterator_t i, next; snd_config_add() local 2182 snd_config_iterator_t i, next; snd_config_add_after() local 2223 snd_config_iterator_t i, next; snd_config_add_before() local 3983 snd_config_iterator_t i, next; snd_config_hooks_call() local 4056 snd_config_iterator_t i, next; snd_config_hooks() local 4263 snd_config_iterator_t i, next; snd_config_hook_load() local 4896 snd_config_iterator_t i, next; snd_config_walk() local 5142 snd_config_iterator_t i, next; _snd_config_evaluate() local 5482 snd_config_iterator_t i, next; parse_args() local [all...] |
/third_party/curl/lib/ |
H A D | formdata.c | 113 (*last_post)->next = post; in AddHttpPost() 244 forms++; /* advance this to next entry */ in FormAdd() 252 /* This is not array-state, get next option. This gets an 'int' with in FormAdd() 748 struct curl_httppost *next; in curl_formfree() local 755 next = form->next; /* the following form line */ in curl_formfree() 769 form = next; in curl_formfree() 837 for(; !result && post; post = post->next) { in Curl_getformdata()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CodeMangler.java | 246 Map.Entry e = (Map.Entry)iter.next(); in CodeMangler() 320 private State next; in processFile() 333 emit = next != null ? next.emit : true; in processFile() 343 ret.next = this; in processFile() 350 return next; in processFile()
|
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-ws-proxy/ |
H A D | protocol_lws_minimal_dbus_ws_proxy.c | 27 * Since all bets are off what happens next, and in which world, after you 437 lws_dll2_remove(&wsctx->ctx.next); in destroy_dbus_server_conn() 509 lws_dll2_add_head(&conn_wspctx->ctx.next, &wspctx->ctx.owner); in new_conn() 529 vhd->dctx.ctx.next.prev = NULL; in create_dbus_listener() 530 vhd->dctx.ctx.next.next = NULL; in create_dbus_listener() 616 struct lws_dbus_ctx, next); in destroy_dbus_server_listener()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | node.h | 182 ZoneUsePtr next; member 613 next_ = current_ ? static_cast<Node::Use*>(current_->next) : nullptr; in operator ++() 624 next_(current_ ? static_cast<Node::Use*>(current_->next) : nullptr) {} in iterator() 661 current_ = current_->next; in operator ++() 664 next_ = current_ ? current_->next : nullptr; in operator ++() 678 next_(current_ ? current_->next : nullptr) in const_iterator()
|