/third_party/mesa3d/src/gallium/winsys/virgl/drm/ |
H A D | virgl_drm_winsys.c | 58 /* Gets a pointer to the virgl_hw_res containing the pointed to cache entry. */ 419 struct virgl_resource_cache_entry *entry; in virgl_drm_winsys_resource_cache_create() local 437 entry = virgl_resource_cache_remove_compatible(&qdws->cache, params); in virgl_drm_winsys_resource_cache_create() 438 if (entry) { in virgl_drm_winsys_resource_cache_create() 439 res = cache_entry_container_res(entry); in virgl_drm_winsys_resource_cache_create() 1139 virgl_drm_resource_cache_entry_is_busy(struct virgl_resource_cache_entry *entry, in virgl_drm_resource_cache_entry_is_busy() argument 1143 struct virgl_hw_res *res = cache_entry_container_res(entry); in virgl_drm_resource_cache_entry_is_busy() 1149 virgl_drm_resource_cache_entry_release(struct virgl_resource_cache_entry *entry, in virgl_drm_resource_cache_entry_release() argument 1153 struct virgl_hw_res *res = cache_entry_container_res(entry); in virgl_drm_resource_cache_entry_release()
|
/third_party/libinput/test/ |
H A D | test-utils.c | 65 ARRAY_FOR_EACH(ai, entry) { in START_TEST() 66 ck_assert_int_eq(*entry, iexpected); in START_TEST() 72 ARRAY_FOR_EACH(ac, entry) { in START_TEST() 73 ck_assert_int_eq(*entry, cexpected); in START_TEST() 83 ARRAY_FOR_EACH(as, entry) { in START_TEST() 84 ck_assert_int_eq(entry->a, sexpected.a); in START_TEST() 85 ck_assert_int_eq(entry->b, sexpected.b); in START_TEST() 86 ck_assert_ptr_eq(entry->ptr, sexpected.ptr); in START_TEST()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_bufmgr.c | 193 struct hash_entry *entry = _mesa_hash_table_search(ht, &key); in find_and_ref_external_bo() local 194 struct crocus_bo *bo = entry ? entry->data : NULL; in find_and_ref_external_bo() 606 struct hash_entry *entry; in bo_close() local 609 entry = _mesa_hash_table_search(bufmgr->name_table, &bo->global_name); in bo_close() 610 _mesa_hash_table_remove(bufmgr->name_table, entry); in bo_close() 613 entry = _mesa_hash_table_search(bufmgr->handle_table, &bo->gem_handle); in bo_close() 614 _mesa_hash_table_remove(bufmgr->handle_table, entry); in bo_close()
|
/third_party/python/Modules/ |
H A D | _tracemalloc.c | 342 _Py_hashtable_entry_t *entry; in tracemalloc_get_frame() local 343 entry = _Py_hashtable_get_entry(tracemalloc_filenames, filename); in tracemalloc_get_frame() 344 if (entry != NULL) { in tracemalloc_get_frame() 345 filename = (PyObject *)entry->key; in tracemalloc_get_frame() 428 _Py_hashtable_entry_t *entry; in traceback_new() local 442 entry = _Py_hashtable_get_entry(tracemalloc_tracebacks, traceback); in traceback_new() 443 if (entry != NULL) { in traceback_new() 444 traceback = (traceback_t *)entry->key; in traceback_new() 641 This case is very unlikely: a hash entry has just been in tracemalloc_realloc() 642 released, so the hash table should have at least one free entry in tracemalloc_realloc() [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/resourcemanager/src/ |
H A D | resource_manager_test.cpp | 554 DistributedKv::Entry entry; in HWTEST_F() local 555 entry.key = "strBase"; in HWTEST_F() 556 entry.value = "strBase"; in HWTEST_F() 557 insertRecords.push_back(entry); in HWTEST_F() 571 DistributedKv::Entry entry; in HWTEST_F() local 572 entry.key = "strBase"; in HWTEST_F() 573 entry.value = "strBase"; in HWTEST_F() 574 updateRecords.push_back(entry); in HWTEST_F() 782 DistributedKv::Entry entry; in HWTEST_F() local 783 entry in HWTEST_F() [all...] |
/third_party/nghttp2/src/ |
H A D | shrpx_http2_session.cc | 1709 std::array<nghttp2_settings_entry, 5> entry; in connection_made() local 1711 entry[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS; in connection_made() 1712 entry[0].value = http2conf.downstream.max_concurrent_streams; in connection_made() 1714 entry[1].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE; in connection_made() 1715 entry[1].value = http2conf.downstream.window_size; in connection_made() 1717 entry[2].settings_id = NGHTTP2_SETTINGS_NO_RFC7540_PRIORITIES; in connection_made() 1718 entry[2].value = 1; in connection_made() 1721 entry[nentry].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH; in connection_made() 1722 entry[nentry].value = 0; in connection_made() 1728 entry[nentr in connection_made() [all...] |
/third_party/libinput/tools/ |
H A D | libinput-record.c | 1647 iprintf(fp, I_NONE, "]\n"); /* last entry, no comma */ in print_bits_props() 1724 struct udev_list_entry *entry; in print_udev_properties() local 1742 entry = udev_device_get_properties_list_entry(udev_device); in print_udev_properties() 1743 while (entry) { in print_udev_properties() 1746 key = udev_list_entry_get_name(entry); in print_udev_properties() 1753 value = udev_list_entry_get_value(entry); in print_udev_properties() 1757 entry = udev_list_entry_get_next(entry); in print_udev_properties() 2517 struct dirent *entry; in init_hidraw() local 2527 while ((entry in init_hidraw() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | heap-refs.cc | 975 RefsMap::Entry* entry = refs_->Lookup(object.address()); in TryGetOrCreateData() local 976 if (entry != nullptr) return entry->value; in TryGetOrCreateData() 979 entry = refs_->LookupOrInsert(object.address()); in TryGetOrCreateData() 980 ObjectData** storage = &entry->value; in TryGetOrCreateData() 982 entry->value = zone()->New<ObjectData>( in TryGetOrCreateData() 994 entry = refs_->LookupOrInsert(object.address()); in TryGetOrCreateData() 995 return zone()->New<ObjectData>(this, &entry->value, object, kSmi); in TryGetOrCreateData() 1010 entry = refs_->LookupOrInsert(object.address()); in TryGetOrCreateData() 1011 return zone()->New<ObjectData>(this, &entry in TryGetOrCreateData() [all...] |
/third_party/python/Python/ |
H A D | sysmodule.c | 2193 _Py_PreInitEntry entry; in _PySys_ReadPreinitWarnOptions() local 2195 for (entry = _preinit_warnoptions; entry != NULL; entry = entry->next) { in _PySys_ReadPreinitWarnOptions() 2196 status = PyWideStringList_Append(options, entry->value); in _PySys_ReadPreinitWarnOptions() 2211 _Py_PreInitEntry entry; in _PySys_ReadPreinitXOptions() local 2213 for (entry = _preinit_xoptions; entry != NULL; entry in _PySys_ReadPreinitXOptions() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | torque-parser.cc | 1417 for (const auto& entry : entries) { in MakeEnumDeclaration() 1419 entry.name, AbstractTypeFlag::kNone, in MakeEnumDeclaration() 1420 entry.type.value_or(name_type_expression), base::nullopt)); in MakeEnumDeclaration() 1437 for (const auto& entry : entries) { in MakeEnumDeclaration() 1439 entry.name, AbstractTypeFlag::kNone, in MakeEnumDeclaration() 1440 entry.type.value_or(*base_type_expression), base::nullopt)); in MakeEnumDeclaration() 1443 std::vector<std::string>{name}, entry.name, in MakeEnumDeclaration() 1509 for (const auto& entry : entries) { in MakeEnumDeclaration() 1510 const std::string entry_name = entry.name->value; in MakeEnumDeclaration() 1521 bool generate_typed_constant = entry in MakeEnumDeclaration() [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-charset-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/
com/
com/ibm/
com/ibm/icu/
... |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/ |
H A D | cloud_service_impl.cpp | 498 DistributedData::VBucket entry; in QueryTableStatistic() local 499 if (cursor->GetEntry(entry) != E_OK) { in QueryTableStatistic() 500 ZLOGE("get entry failed,tableName:%{public}s", Anonymous::Change(tableName).c_str()); in QueryTableStatistic() 503 auto it = entry.find("inserted"); in QueryTableStatistic() 504 if (it != entry.end() && it->second.index() == TYPE_INDEX<int64_t>) { in QueryTableStatistic() 507 it = entry.find("updated"); in QueryTableStatistic() 508 if (it != entry.end() && it->second.index() == TYPE_INDEX<int64_t>) { in QueryTableStatistic() 511 it = entry.find("normal"); in QueryTableStatistic() 512 if (it != entry.end() && it->second.index() == TYPE_INDEX<int64_t>) { in QueryTableStatistic() 1200 VBucket entry; in ConvertCursor() local [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_print.c | 72 struct hash_entry *entry = _mesa_hash_table_search(state->annotations, obj); in print_annotation() local 73 if (!entry) in print_annotation() 76 const char *note = entry->data; in print_annotation() 77 _mesa_hash_table_remove(state->annotations, entry); in print_annotation() 359 struct hash_entry *entry = _mesa_hash_table_search(state->ht, var); in get_var_name() local 360 if (entry) in get_var_name() 361 return entry->data; in get_var_name() 1445 nir_foreach_parallel_copy_entry(entry, instr) { in print_parallel_copy_instr() 1446 if (&entry->node != exec_list_get_head(&instr->entries)) in print_parallel_copy_instr() 1449 print_dest(&entry in print_parallel_copy_instr() [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.cc | 49 // source position entry to the return address. in FindNewPC() 91 for (auto& entry : entries_) entry.Print(os); in Print() 261 // Rotate the cache entry to the front (for LRU). in RecompileLiftoffWithBreakpoints() 310 // Increase the ref count (for the cache entry). in RecompileLiftoffWithBreakpoints() 519 for (auto& entry : removed_per_function) { in RemoveIsolate() 520 int func_index = entry.first; in RemoveIsolate() 521 std::vector<int>& removed = entry.second; in RemoveIsolate() 939 // Special handling for on-entry breakpoints. in SetInstrumentationBreakpoint() 1035 Object entry in ClearBreakPoint() local 1135 Object entry = breakpoint_infos->get(i); AddBreakpointToInfo() local [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-object.cc | 815 InternalIndex entry = dictionary.FindEntry(isolate, key); in RUNTIME_FUNCTION() local 816 if (entry.is_found()) { in RUNTIME_FUNCTION() 817 PropertyCell cell = dictionary.CellAt(entry); in RUNTIME_FUNCTION() 829 InternalIndex entry = dictionary.FindEntry(isolate, *key); in RUNTIME_FUNCTION() local 830 if (entry.is_found() && in RUNTIME_FUNCTION() 831 (dictionary.DetailsAt(entry).kind() == PropertyKind::kData)) { in RUNTIME_FUNCTION() 832 return dictionary.ValueAt(entry); in RUNTIME_FUNCTION() 837 InternalIndex entry = dictionary.FindEntry(isolate, key); in RUNTIME_FUNCTION() local 838 if ((entry.is_found()) && in RUNTIME_FUNCTION() 839 (dictionary.DetailsAt(entry) in RUNTIME_FUNCTION() [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_tex.c | 661 // entry is initialized, we're good to go. This is the only bit that has in nvc0_validate_tsc() 667 // we're not overwriting a valid entry. in nvc0_validate_tsc() 861 struct nv50_tic_entry *entry = nvc0->screen->tic.entries[tic]; in nve4_delete_texture_handle() local 863 if (entry) { in nve4_delete_texture_handle() 864 struct pipe_sampler_view *view = &entry->pipe; in nve4_delete_texture_handle() 865 assert(entry->bindless); in nve4_delete_texture_handle() 866 p_atomic_dec(&entry->bindless); in nve4_delete_texture_handle() 868 nvc0_screen_tic_unlock(nvc0->screen, entry); in nve4_delete_texture_handle() 1469 struct nv50_tic_entry *entry = nvc0->screen->tic.entries[tic]; in gm107_delete_image_handle() local 1470 struct pipe_sampler_view *view = &entry in gm107_delete_image_handle() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
H A D | BindGroupTests.cpp | 432 // entry points, using non-zero binding groups. This has the potential to cause problems when we 433 // only remap bindings for one entry point, as the remaining unmapped binding numbers may be invalid 1165 wgpu::BindGroupLayoutEntry entry; in TEST_P() local 1166 entry.binding = 0; in TEST_P() 1167 entry.visibility = wgpu::ShaderStage::None; in TEST_P() 1168 entry.buffer.type = wgpu::BufferBindingType::Uniform; in TEST_P() 1171 descriptor.entries = &entry; in TEST_P() 1197 wgpu::BindGroupLayoutEntry entry; in TEST_P() local 1198 entry.binding = 0; in TEST_P() 1199 entry in TEST_P() [all...] |
/applications/standard/app_samples/code/Project/HapBuild/compile-tool/bin/ |
H A D | compile-ohpm-ci.sh | 16 TEST_HAP_PATH=entry/build/default/outputs/ohosTest/entry-ohosTest-unsigned.hap 17 HAP_PATH=entry/build/default/outputs/default/entry-default-unsigned.hap 142 is_entry=`cat $1${pa}/src/main/module.json5 | sed 's/ //g' | grep "\"type\":\"entry\""` 150 is_entry=`cat $1${pa}/src/main/config.json | sed 's/ //g' | grep "\"moduleType\":\"entry\""` 321 is_entry=`cat ${project_path}${pa}/src/main/module.json5 | sed 's/ //g' | grep "\"type\":\"entry\""` 332 is_entry=`cat ${project_path}${pa}/src/main/config.json | sed 's/ //g' | grep "\"moduleType\":\"entry\""`
|
/foundation/deviceprofile/device_info_manager/services/core/src/persistenceadapter/kvadapter/ |
H A D | kv_adapter.cpp | 160 Entry entry; in PutBatch() local 161 entry.key = kvKey; in PutBatch() 162 entry.value = item.second; in PutBatch() 163 entries.emplace_back(entry); in PutBatch()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | virtual_single_ver_sync_db_Interface.cpp | 37 auto entry = new (std::nothrow) GenericSingleVerKvEntry(); in GetEntriesFromItems() local 38 if (entry == nullptr) { in GetEntriesFromItems() 39 LOGE("Create entry failed."); in GetEntriesFromItems() 49 entry->SetEntryData(std::move(storageItem)); in GetEntriesFromItems() 50 entries.push_back(entry); in GetEntriesFromItems()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/ |
H A D | table_info.cpp | 298 for (const auto &entry : fields_) { in GetFieldInfos() 299 if (static_cast<size_t>(entry.second.GetColumnId()) >= fieldInfos_.size()) { in GetFieldInfos() 304 fieldInfos_.at(entry.second.GetColumnId()) = entry.second; in GetFieldInfos()
|
/third_party/ffmpeg/libavutil/ |
H A D | parseutils.c | 360 const ColorEntry *entry; in av_parse_color() local 400 entry = bsearch(color_string2, in av_parse_color() 405 if (!entry) { in av_parse_color() 409 memcpy(rgba_color, entry->rgb_color, 3); in av_parse_color()
|
/third_party/ffmpeg/libavformat/ |
H A D | fifo.c | 151 AVDictionaryEntry *entry = NULL; in fifo_thread_write_header() local 152 while ((entry = av_dict_get(format_options, "", entry, AV_DICT_IGNORE_SUFFIX))) in fifo_thread_write_header() 153 av_log(avf2, AV_LOG_ERROR, "Unknown option '%s'\n", entry->key); in fifo_thread_write_header()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | XLikelySubtags.java | 559 for (BytesTrie.Entry entry : trie) { in getTable() 561 int length = entry.bytesLength(); in getTable() 563 byte b = entry.byteAt(i++); in getTable() 574 map.put(sb.toString(), lsrs[entry.value]); in getTable()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | XLikelySubtags.java | 564 for (BytesTrie.Entry entry : trie) { in getTable() 566 int length = entry.bytesLength(); in getTable() 568 byte b = entry.byteAt(i++); in getTable() 579 map.put(sb.toString(), lsrs[entry.value]); in getTable()
|