Home
last modified time | relevance | path

Searched refs:entry (Results 1151 - 1175 of 2384) sorted by relevance

1...<<41424344454647484950>>...96

/third_party/rust/crates/clap/clap_complete/src/
H A Ddynamic.rs507 for entry in std::fs::read_dir(&root) in complete_path()
513 let raw_file_name = clap_lex::RawOsString::new(entry.file_name()); in complete_path()
518 if entry.metadata().map(|m| m.is_dir()).unwrap_or(false) { in complete_path()
519 let path = entry.path(); in complete_path()
524 let path = entry.path(); in complete_path()
/third_party/python/Tools/c-analyzer/c_common/
H A Dfsutil.py401 entry = pwd.getpwuid(uid)
402 username = entry.pw_name
405 entry = pwd.getpwnam(username)
406 uid = entry.pw_uid
409 gid = entry.pw_gid
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
H A Dfiltration.py403 for entry in json_data["resourceFilters"]:
404 if "files" in entry:
405 file_filter = Filter.create_from_json(entry["files"], io)
408 for category in entry["categories"]:
416 filter_info.add_rules(file_filter, entry["rules"])
/third_party/skia/src/sksl/ir/
H A DSkSLFunctionDeclaration.cpp241 const Symbol* entry = symbols[name]; in find_existing_declaration() local
243 if (entry) { in find_existing_declaration()
245 switch (entry->kind()) { in find_existing_declaration()
247 functions = entry->as<UnresolvedFunction>().functions(); in find_existing_declaration()
250 functions.push_back(&entry->as<FunctionDeclaration>()); in find_existing_declaration()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h42 /// This class represents an entry in the slot index list held in the
112 SlotIndex(IndexListEntry *entry, unsigned slot) in SlotIndex() argument
113 : lie(entry, slot) {} in SlotIndex()
119 "Attempt to access deleted list-entry."); in listEntry()
335 IndexListEntry *entry = in createEntry() local
339 new (entry) IndexListEntry(mi, index); in createEntry()
341 return entry; in createEntry()
560 // Insert a new list entry for MI. in insertMachineInstrInMaps()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddbus_usb_linux.c2935 usbos_list_entry_t *entry; in dbus_usbos_thread_init() local
2947 entry = MALLOC(usbos_info->pub->osh, sizeof(usbos_list_entry_t)); in dbus_usbos_thread_init()
2948 if (entry) { in dbus_usbos_thread_init()
2950 list_add_tail((struct list_head*) entry, &usbos_info->usbos_free_list); in dbus_usbos_thread_init()
2974 usbos_list_entry_t *entry; in dbus_usbos_thread_deinit() local
2987 entry = list_entry(cur, struct usbos_list_entry, list); in dbus_usbos_thread_deinit()
2988 /* detach this entry from the list and then free the entry */ in dbus_usbos_thread_deinit()
2991 MFREE(usbos_info->pub->osh, entry, sizeof(usbos_list_entry_t)); in dbus_usbos_thread_deinit()
2997 entry in dbus_usbos_thread_deinit()
3014 usbos_list_entry_t *entry; dbus_usbos_thread_func() local
3086 usbos_list_entry_t *entry; dbus_usbos_dispatch_schedule() local
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dpngread.c2146 png_uint_16p entry = png_voidcast(png_uint_16p, display->colormap); in png_create_colormap_entry() local
2148 entry += ip * PNG_IMAGE_SAMPLE_CHANNELS(image->format); in png_create_colormap_entry()
2157 entry[afirst ? 0 : 3] = (png_uint_16)alpha; in png_create_colormap_entry()
2173 entry[afirst + (2 ^ bgr)] = (png_uint_16)blue; in png_create_colormap_entry()
2174 entry[afirst + 1] = (png_uint_16)green; in png_create_colormap_entry()
2175 entry[afirst + bgr] = (png_uint_16)red; in png_create_colormap_entry()
2179 entry[1 ^ afirst] = (png_uint_16)alpha; in png_create_colormap_entry()
2191 entry[afirst] = (png_uint_16)green; in png_create_colormap_entry()
2201 png_bytep entry = png_voidcast(png_bytep, display->colormap); in png_create_colormap_entry() local
2203 entry in png_create_colormap_entry()
3279 unsigned int entry; png_image_read_and_map() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dscan.c882 * for adding the wildcard scan entry. in wpa_set_scan_ssids()
936 /* add the wildcard scan entry */ in wpa_set_ssids_from_scan_req()
940 /* replacing last entry when over max ssids */ in wpa_set_ssids_from_scan_req()
1992 * @res: Scan result entry
2025 * @res: Scan result entry
2052 * @res: Scan result entry
2087 * @res: Scan result entry
2516 const struct minsnr_bitrate_entry *prev, *entry = table; in max_rate() local
2518 while ((entry->minsnr != -1) && in max_rate()
2519 (snr >= entry in max_rate()
2559 const struct minsnr_bitrate_entry *prev, *entry = table; max_he_rate() local
[all...]
/third_party/curl/lib/
H A Dasyn-ares.c444 * 'entry' MUST be non-NULL.
450 struct Curl_dns_entry **entry) in Curl_resolver_wait_resolv()
456 DEBUGASSERT(entry); in Curl_resolver_wait_resolv()
457 *entry = NULL; /* clear on entry */ in Curl_resolver_wait_resolv()
495 result = Curl_resolver_is_resolved(data, entry); in Curl_resolver_wait_resolv()
520 /* Operation complete, if the lookup was successful we now have the entry in Curl_resolver_wait_resolv()
522 if(entry) in Curl_resolver_wait_resolv()
523 *entry = data->state.async.dns; in Curl_resolver_wait_resolv()
612 no IPv6 entry fo in query_completed_cb()
449 Curl_resolver_wait_resolv(struct Curl_easy *data, struct Curl_dns_entry **entry) Curl_resolver_wait_resolv() argument
[all...]
/third_party/alsa-lib/src/control/
H A Dnamehint.c86 const char *entry) in hint_list_add_custom()
92 assert(entry); in hint_list_add_custom()
94 sep = strchr(entry, '|'); in hint_list_add_custom()
96 return hint_list_add(list, entry, NULL); in hint_list_add_custom()
98 name = strndup(entry, sep - entry); in hint_list_add_custom()
227 /* if the specified device doesn't exist, skip this entry */ in get_dev_name()
660 /* add an empty entry if nothing has been added yet; the caller in snd_device_name_hint()
85 hint_list_add_custom(struct hint_list *list, const char *entry) hint_list_add_custom() argument
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateIntervalInfo.java1184 for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) { in getPatterns()
1185 result.put(entry.getKey(), new LinkedHashSet<>(entry.getValue().keySet())); in getPatterns()
1198 for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) { in getRawPatterns()
1199 result.put(entry.getKey(), new LinkedHashMap<>(entry.getValue())); in getRawPatterns()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDateIntervalInfo.java1150 for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) { in getPatterns()
1151 result.put(entry.getKey(), new LinkedHashSet<>(entry.getValue().keySet())); in getPatterns()
1165 for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) { in getRawPatterns()
1166 result.put(entry.getKey(), new LinkedHashMap<>(entry.getValue())); in getRawPatterns()
/third_party/mesa3d/src/broadcom/simulator/
H A Dv3d_simulator.c170 struct hash_entry *entry = _mesa_hash_table_search(sim_state.fd_map, in v3d_get_simulator_file_for_fd() local
172 return entry ? entry->data : NULL; in v3d_get_simulator_file_for_fd()
352 struct hash_entry *entry = in v3d_get_simulator_bo() local
356 return entry ? entry->data : NULL; in v3d_get_simulator_bo()
/third_party/lz4/programs/
H A Dutil.h559 struct dirent * entry;
570 while ((entry = readdir(dir)) != NULL) {
573 if (strcmp (entry->d_name, "..") == 0 ||
574 strcmp (entry->d_name, ".") == 0) continue;
575 fnameLength = strlen(entry->d_name);
580 memcpy(path+dirLength+1, entry->d_name, fnameLength);
/third_party/node/deps/v8/src/heap/
H A Dscavenger-inl.h34 bool Scavenger::PromotionList::Local::Pop(struct PromotionListEntry* entry) { in Pop() argument
37 entry->heap_object = regular_object.first; in Pop()
38 entry->size = regular_object.second; in Pop()
39 entry->map = entry->heap_object.map(); in Pop()
42 return large_object_promotion_list_local_.Pop(entry); in Pop()
/third_party/node/deps/v8/src/inspector/
H A Dv8-inspector-impl.cc489 v8::MaybeLocal<v8::Value> entry = map->Get(m_isolate, exception); in associateExceptionData() local
491 if (entry.IsEmpty() || !entry.ToLocalChecked()->IsObject()) { in associateExceptionData()
497 object = entry.ToLocalChecked().As<v8::Object>(); in associateExceptionData()
516 auto entry = map->Get(m_isolate, exception); in getAssociatedExceptionData() local
518 if (!entry.ToLocal(&object) || !object->IsObject()) in getAssociatedExceptionData()
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_simulator.c120 struct hash_entry *entry = _mesa_hash_table_search(sim_state.fd_map, in vc4_get_simulator_file_for_fd() local
122 return entry ? entry->data : NULL; in vc4_get_simulator_file_for_fd()
222 struct hash_entry *entry = in vc4_get_simulator_bo() local
226 return entry ? entry->data : NULL; in vc4_get_simulator_bo()
/third_party/pcre2/pcre2/src/
H A Dpcre2_printint.c448 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() local
450 print_custring(f, entry); in pcre2_printint()
465 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() local
467 print_custring(f, entry); in pcre2_printint()
635 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() local
637 print_custring(f, entry); in pcre2_printint()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp162 for (auto entry : FuncOffsetTable) { in writeFuncOffsetTable()
163 writeNameIdx(entry.first); in writeFuncOffsetTable()
164 encodeULEB128(entry.second, OS); in writeFuncOffsetTable()
344 for (auto entry : FuncOffsetTable) { in writeFuncOffsetTable()
345 writeNameIdx(entry.first); in writeFuncOffsetTable()
346 encodeULEB128(entry.second, OS); in writeFuncOffsetTable()
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
H A Dspirv_builder.c1212 struct hash_entry *entry; in get_type_def() local
1214 entry = _mesa_hash_table_search(b->types, &key); in get_type_def()
1215 if (entry) in get_type_def()
1216 return ((struct spirv_type *)entry->data)->type; in get_type_def()
1239 entry = _mesa_hash_table_insert(b->types, type, type); in get_type_def()
1240 assert(entry); in get_type_def()
1242 return ((struct spirv_type *)entry->data)->type; in get_type_def()
1434 struct hash_entry *entry; in get_const_def() local
1436 entry = _mesa_hash_table_search(b->consts, &key); in get_const_def()
1437 if (entry) in get_const_def()
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-array-builder.cc71 // first entry). in Parameter()
605 size_t entry) { in LoadConstantPoolEntry()
606 OutputLdaConstant(entry); in LoadConstantPoolEntry()
626 size_t entry = GetConstantPoolEntry(value); in LoadLiteral() local
627 OutputLdaConstant(entry); in LoadLiteral()
634 size_t entry = GetConstantPoolEntry(raw_string); in LoadLiteral() local
635 OutputLdaConstant(entry); in LoadLiteral()
640 size_t entry = GetConstantPoolEntry(scope); in LoadLiteral() local
641 OutputLdaConstant(entry); in LoadLiteral()
646 size_t entry in LoadLiteral() local
604 LoadConstantPoolEntry( size_t entry) LoadConstantPoolEntry() argument
961 size_t entry = GetConstantPoolEntry(scope); CreateBlockContext() local
1312 size_t entry = GetConstantPoolEntry(name); ThrowReferenceErrorIfHole() local
1566 SetDeferredConstantPoolEntry(size_t entry, Handle<Object> object) SetDeferredConstantPoolEntry() argument
[all...]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DJsonFormat.java973 for (Map.Entry<FieldDescriptor, Object> entry : fields.entrySet()) { in printValue()
974 printSingleFieldValue(entry.getKey(), entry.getValue()); in printValue()
1098 Message entry = (Message) element; in printMapFieldValue()
1099 Object entryKey = entry.getField(keyField); in printMapFieldValue()
1107 Message entry = (Message) element; in printMapFieldValue()
1108 Object entryKey = entry.getField(keyField); in printMapFieldValue()
1109 Object entryValue = entry.getField(valueField); in printMapFieldValue()
1487 for (Map.Entry<String, JsonElement> entry : object.entrySet()) { in mergeMessage()
1488 if (skipTypeUrl && entry in mergeMessage()
[all...]
/third_party/libabigail/tools/
H A Dabipkgdiff.cc1858 /// While walking a file directory, check if a directory entry is a
1863 /// @param entry the directory entry to consider.
1867 /// @param whitelists out parameter. If @p entry is the whitelist we
1870 maybe_collect_kabi_whitelists(const FTSENT *entry, in maybe_collect_kabi_whitelists() argument
1874 if (entry == NULL in maybe_collect_kabi_whitelists()
1875 || (entry->fts_info != FTS_F && entry->fts_info != FTS_SL) in maybe_collect_kabi_whitelists()
1876 || entry->fts_info == FTS_ERR in maybe_collect_kabi_whitelists()
1877 || entry in maybe_collect_kabi_whitelists()
2229 maybe_update_package_content(const FTSENT *entry, options &opts, const string& file_name_to_look_for, unordered_set<string>& paths) maybe_update_package_content() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/startup/
H A Dmain.c32 hi_void (*entry)(hi_void) = (hi_void*)(kaddr); in boot_kernel()
33 entry(); in boot_kernel()
85 /* the entry of C. */
/third_party/curl/tests/libtest/
H A Dlib1915.c30 struct entry { struct
35 static const struct entry preload_hosts[] = {

Completed in 39 milliseconds

1...<<41424344454647484950>>...96