/third_party/node/deps/uvwasi/src/ |
H A D | path_resolver.c | 41 char* next; in uvwasi__normalize_path() local 52 for (cur = path; cur != NULL; cur = next + 1) { in uvwasi__normalize_path() 53 next = uvwasi__strchr_slash(cur); in uvwasi__normalize_path() 54 cur_len = (next == NULL) ? strlen(cur) : (size_t) (next - cur); in uvwasi__normalize_path() 57 if (ptr == normalized_path && next != NULL && is_absolute) { in uvwasi__normalize_path() 108 if (next == NULL) in uvwasi__normalize_path()
|
/third_party/rust/crates/clang-sys/src/ |
H A D | support.rs | 50 /// systems, `xcodebuild -find clang` will next be queried. Last, the 85 if let Some(line) = path.lines().next() { in find() 92 if let Some(line) = path.lines().next() { in find() 147 if let Some(path) = glob::glob(&pattern).ok()?.filter_map(|p| p.ok()).next() { in find() 210 let mut numbers = output[start..].split_whitespace().next()?.split('.'); in parse_version() 211 let major = numbers.next().and_then(parse_version_number)?; in parse_version() 212 let minor = numbers.next().and_then(parse_version_number)?; in parse_version() 213 let subminor = numbers.next().and_then(parse_version_number).unwrap_or(0); in parse_version()
|
/third_party/openssl/crypto/bn/ |
H A D | bn_ctx.c | 28 struct bignum_pool_item *prev, *next; member 94 item = item->next; in ctxdbg() 171 pool = pool->next; in BN_CTX_free() 309 p->current = p->head->next; in BN_POOL_finish() 335 item->next = NULL; in BN_POOL_get() 340 p->tail->next = item; in BN_POOL_get() 353 p->current = p->current->next; in BN_POOL_get()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | daemon.c | 405 for (pos = daemon->sessions_head; NULL != pos; pos = pos->next) in SPDYF_get_timeout() 451 for (pos = daemon->sessions_head; NULL != pos; pos = pos->next) in SPDYF_get_fdset() 477 struct SPDY_Session *next; in SPDYF_run() local 504 next = daemon->sessions_head; in SPDYF_run() 505 while (NULL != (pos = next)) in SPDYF_run() 507 next = pos->next; in SPDYF_run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | StackMapParser.h | 31 AccessorIterator& operator++() { A = A.next(); return *this; } in operator ++() 76 FunctionAccessor next() const { in next() function in llvm::StackMapParser::FunctionAccessor 96 ConstantAccessor next() const { in next() function in llvm::StackMapParser::ConstantAccessor 153 LocationAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::LocationAccessor 185 LiveOutAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::LiveOutAccessor 285 RecordAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::RecordAccessor 406 // look at the last record and use the 'next' method. in records_end() 409 return record_iterator(getRecord(getNumRecords() - 1).next()); in records_end()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CrashRecoveryContext.cpp | 107 i = tmp->next; in ~CrashRecoveryContext() 156 cleanup->next = head; in registerCleanup() 165 head = cleanup->next; in unregisterCleanup() 170 cleanup->prev->next = cleanup->next; in unregisterCleanup() 171 if (cleanup->next) in unregisterCleanup() 172 cleanup->next->prev = cleanup->prev; in unregisterCleanup()
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_symtab.c | 185 prev = curr, curr = curr->next) { in cil_complex_symtab_insert() 214 node->next = prev->next; in cil_complex_symtab_insert() 215 prev->next = node; in cil_complex_symtab_insert() 217 node->next = symtab->htable[hash]; in cil_complex_symtab_insert() 234 for (curr = symtab->htable[hash]; curr != NULL; curr = curr->next) { in cil_complex_symtab_search() 279 curr = curr->next; in cil_complex_symtab_destroy()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | http_server.c | 22 struct http_request *next; member 105 p->next = r->next; in http_request_deinit() 107 srv->requests = r->next; in http_request_deinit() 112 r = r->next; in http_request_deinit() 126 req = req->next; in http_request_free_all() 222 req->next = srv->requests; in http_server_cb()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | http_server.c | 22 struct http_request *next; member 105 p->next = r->next; in http_request_deinit() 107 srv->requests = r->next; in http_request_deinit() 112 r = r->next; in http_request_deinit() 126 req = req->next; in http_request_free_all() 222 req->next = srv->requests; in http_server_cb()
|
/third_party/ffmpeg/libavformat/ |
H A D | oggenc.c | 71 struct OGGPageList *next; member 149 static int ogg_compare_granule(AVFormatContext *s, OGGPage *next, OGGPage *page) in ogg_compare_granule() argument 151 AVStream *st2 = s->streams[next->stream_index]; in ogg_compare_granule() 155 if (next->granule == -1 || page->granule == -1) in ogg_compare_granule() 158 next_granule = av_rescale_q(ogg_granule_to_timestamp(st2->priv_data, next->granule), in ogg_compare_granule() 191 p = &(*p)->next; in ogg_buffer_page() 193 l->next = *p; in ogg_buffer_page() 256 int64_t next = av_rescale_q(ogg_granule_to_timestamp(oggstream, page->granule), in ogg_buffer_data() local 263 (ogg->pref_duration > 0 && next - start >= ogg->pref_duration)) { in ogg_buffer_data() 452 OGGPageList *next, * in ogg_write_pages() local 741 OGGPageList *next = p->next; ogg_free() local [all...] |
H A D | ftp.c | 977 static int ftp_parse_entry_nlst(char *line, AVIODirEntry *next) in ftp_parse_entry_nlst() argument 979 next->name = av_strdup(line); in ftp_parse_entry_nlst() 983 static int ftp_parse_entry_mlsd(char *mlsd, AVIODirEntry *next) in ftp_parse_entry_mlsd() argument 991 next->name = av_strdup(&fact[1]); in ftp_parse_entry_mlsd() 1001 next->type = AVIO_ENTRY_DIRECTORY; in ftp_parse_entry_mlsd() 1003 next->type = AVIO_ENTRY_FILE; in ftp_parse_entry_mlsd() 1005 next->type = AVIO_ENTRY_SYMBOLIC_LINK; in ftp_parse_entry_mlsd() 1007 next->modification_timestamp = ftp_parse_date(value); in ftp_parse_entry_mlsd() 1009 next->filemode = strtoumax(value, NULL, 8); in ftp_parse_entry_mlsd() 1011 next in ftp_parse_entry_mlsd() 1023 ftp_parse_entry(URLContext *h, char *line, AVIODirEntry *next) ftp_parse_entry() argument 1038 ftp_read_dir(URLContext *h, AVIODirEntry **next) ftp_read_dir() argument [all...] |
/third_party/toybox/toys/posix/ |
H A D | find.c | 56 or "+" (next argument after "{}") to collect and run with multiple files. 80 struct execdir_data *next; member 88 char *next, *prev; // layout compatible with struct double_list member 131 for (dl = bb->names; dl; dl = dl->next) newargs[pos++] = dl->data; in flush_exec() 181 for (dl = TT.argdata; dl; dl = dl->next) { in execdir() 194 aa->execdir = bb->next; in execdir() 202 bb->next = aa->execdir; in execdir() 315 else active = 0; // decision has been made until next ")" in do_find() 468 void *next, *prev; in do_find() member 573 // Add next nam in do_find() 598 char *fmt, *ff, next[32], buf[64], ch; do_find() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap_fast_pac.c | 80 pac = pac->next; in eap_fast_get_pac() 99 *pac_root = pac->next; in eap_fast_remove_pac() 101 prev->next = pac->next; in eap_fast_remove_pac() 108 pac = pac->next; in eap_fast_remove_pac() 172 pac->next = *pac_root; in eap_fast_add_pac() 318 while (end->next) in eap_fast_parse_end() 319 end = end->next; in eap_fast_parse_end() 320 end->next = *pac; in eap_fast_parse_end() 648 pac = pac->next; in eap_fast_save_pac() [all...] |
H A D | eap_teap_pac.c | 80 pac = pac->next; in eap_teap_get_pac() 99 *pac_root = pac->next; in eap_teap_remove_pac() 101 prev->next = pac->next; in eap_teap_remove_pac() 108 pac = pac->next; in eap_teap_remove_pac() 172 pac->next = *pac_root; in eap_teap_add_pac() 321 while (end->next) in eap_teap_parse_end() 322 end = end->next; in eap_teap_parse_end() 323 end->next = *pac; in eap_teap_parse_end() 652 pac = pac->next; in eap_teap_save_pac() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p_sd.c | 64 for (q = p2p->sd_queries; q; q = q->next) { in p2p_pending_sd_req() 132 prev->next = q->next; in p2p_unlink_sd_query() 134 p2p->sd_queries = q->next; in p2p_unlink_sd_query() 142 q = q->next; in p2p_unlink_sd_query() 164 q = q->next; in p2p_free_sd_queries() 333 const u8 *next; in p2p_rx_gas_initial_req() local 370 next = pos + slen; in p2p_rx_gas_initial_req() 379 pos = next; in p2p_rx_gas_initial_req() 487 const u8 *next; in p2p_rx_gas_initial_resp() local 699 const u8 *next; p2p_rx_gas_comeback_resp() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap_fast_pac.c | 80 pac = pac->next; in eap_fast_get_pac() 99 *pac_root = pac->next; in eap_fast_remove_pac() 101 prev->next = pac->next; in eap_fast_remove_pac() 108 pac = pac->next; in eap_fast_remove_pac() 172 pac->next = *pac_root; in eap_fast_add_pac() 318 while (end->next) in eap_fast_parse_end() 319 end = end->next; in eap_fast_parse_end() 320 end->next = *pac; in eap_fast_parse_end() 648 pac = pac->next; in eap_fast_save_pac() [all...] |
H A D | eap_teap_pac.c | 80 pac = pac->next; in eap_teap_get_pac() 99 *pac_root = pac->next; in eap_teap_remove_pac() 101 prev->next = pac->next; in eap_teap_remove_pac() 108 pac = pac->next; in eap_teap_remove_pac() 172 pac->next = *pac_root; in eap_teap_add_pac() 321 while (end->next) in eap_teap_parse_end() 322 end = end->next; in eap_teap_parse_end() 323 end->next = *pac; in eap_teap_parse_end() 652 pac = pac->next; in eap_teap_save_pac() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p_sd.c | 64 for (q = p2p->sd_queries; q; q = q->next) { in p2p_pending_sd_req() 132 prev->next = q->next; in p2p_unlink_sd_query() 134 p2p->sd_queries = q->next; in p2p_unlink_sd_query() 142 q = q->next; in p2p_unlink_sd_query() 164 q = q->next; in p2p_free_sd_queries() 333 const u8 *next; in p2p_rx_gas_initial_req() local 370 next = pos + slen; in p2p_rx_gas_initial_req() 379 pos = next; in p2p_rx_gas_initial_req() 487 const u8 *next; in p2p_rx_gas_initial_resp() local 699 const u8 *next; p2p_rx_gas_comeback_resp() local [all...] |
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/download/ |
H A D | downloader.cpp | 787 bool Downloader::HandleContentRange(HeaderInfo* info, char* key, char* next, size_t size, size_t nitems) in HandleContentRange() argument 791 char* token = strtok_s(nullptr, ":", &next); in HandleContentRange() 809 bool Downloader::HandleContentType(HeaderInfo* info, char* key, char* next, size_t size, size_t nitems) in HandleContentType() argument 812 char* token = strtok_s(nullptr, ":", &next); in HandleContentType() 822 bool Downloader::HandleContentEncode(HeaderInfo* info, char* key, char* next, size_t size, size_t nitems) in HandleContentEncode() argument 826 char* token = strtok_s(nullptr, ":", &next); in HandleContentEncode() 834 bool Downloader::HandleContentLength(HeaderInfo* info, char* key, char* next, Downloader* mediaDownloader) in HandleContentLength() argument 839 FALSE_RETURN_V(next != nullptr, false); in HandleContentLength() 840 char* token = strtok_s(nullptr, ":", &next); in HandleContentLength() 853 bool Downloader::HandleRange(HeaderInfo* info, char* key, char* next, size_ argument 885 char* next = nullptr; RxHeaderData() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_curves.c | 41 struct keypoint *next; member 145 static struct keypoint *make_point(double x, double y, struct keypoint *next) in make_point() argument 153 point->next = next; in make_point() 186 last->next = point; in parse_points_str() 191 if (*points && !(*points)->next) { in parse_points_str() 206 d = d->next; in get_nb_points() 255 for (point = points; point; point = point->next) { in interpolate() 266 const double yc = point->next->y; in interpolate() 267 const double yn = point->next in interpolate() 691 struct keypoint *next = point->next; config_input() local [all...] |
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | util.c | 955 tmp = i->next; in list_free() 965 for (i = list->first; i; i = i->next) in list_item_count() 975 for (i = list->first; i; i = i->next) in list_copy() 991 item->next = list->first; in list_prepend() 992 list->first->next = item; in list_prepend() 996 item->next = NULL; in list_prepend() 1010 item->next = NULL; in list_append() 1014 list->last->next = item; in list_append() 1029 item->prev->next = item->next; in list_remove() [all...] |
/third_party/skia/src/pathops/ |
H A D | SkOpAngle.cpp | 412 } while (!oSpan->final() && (oSpan = oSpan->upCast()->next())); in computeSector() 414 ? checkEnd->upCast()->next() : nullptr in computeSector() 419 : checkEnd ? checkEnd->upCast()->next() : fEnd->segment()->tail(); in computeSector() 592 // Larger changes (like changing the constant in the next block) cause other in endsIntersect() 733 // OPTIMIZE: return where insertion succeeded. Then, start next insertion on opposite side 753 SkOpAngle* next = fNext; in insert() local 754 if (next->fNext == this) { in insert() 757 angle->fNext = next; in insert() 759 next->fNext = angle; in insert() 768 SkASSERT(last->fNext == next); in insert() 825 const SkOpAngle* next = this; loopCount() local 844 SkOpAngle* next = working->fNext; merge() local 946 SkOpAngle* next = last->fNext; previous() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_sim_db.c | 31 struct eap_sim_pseudonym *next; member 37 struct eap_sim_db_pending *next; member 385 prev->next = entry->next; in eap_sim_db_get_pending() 387 data->pending = entry->next; in eap_sim_db_get_pending() 391 entry = entry->next; in eap_sim_db_get_pending() 400 entry->next = data->pending; in eap_sim_db_add_pending() 421 *pp = entry->next; in eap_sim_db_del_pending() 425 pp = &(*pp)->next; in eap_sim_db_del_pending() 842 p = p->next; in eap_sim_db_deinit() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_sim_db.c | 31 struct eap_sim_pseudonym *next; member 37 struct eap_sim_db_pending *next; member 385 prev->next = entry->next; in eap_sim_db_get_pending() 387 data->pending = entry->next; in eap_sim_db_get_pending() 391 entry = entry->next; in eap_sim_db_get_pending() 400 entry->next = data->pending; in eap_sim_db_add_pending() 421 *pp = entry->next; in eap_sim_db_del_pending() 425 pp = &(*pp)->next; in eap_sim_db_del_pending() 842 p = p->next; in eap_sim_db_deinit() [all...] |
/base/security/access_token/interfaces/innerkits/nativetoken/src/ |
H A D | nativetoken.c | 164 tmp->next = g_tokenListHead->next; in GetTokenList() 165 g_tokenListHead->next = tmp; in GetTokenList() 228 g_tokenListHead->next = NULL; in AtlibInit() 237 if (g_tokenListHead->next == NULL) { in AtlibInit() 270 NativeTokenList *tokenNode = g_tokenListHead->next; in IsTokenUniqueIdExist() 276 tokenNode = tokenNode->next; in IsTokenUniqueIdExist() 510 tokenNode->next = g_tokenListHead->next; in AddNewTokenToListAndFile() 511 g_tokenListHead->next in AddNewTokenToListAndFile() [all...] |