/kernel/linux/linux-5.10/drivers/net/ethernet/neterion/vxge/ |
H A D | vxge-main.c | 683 list_add(&new_mac_entry->item, &vpath->mac_addr_list); in vxge_mac_list_add() 4696 list_add(&entry->item, &vdev->vpaths[i].mac_addr_list); in vxge_probe()
|
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | f2fs.h | 2859 unsigned long index, void *item) in f2fs_radix_tree_insert() 2861 while (radix_tree_insert(root, index, item)) in f2fs_radix_tree_insert() 2858 f2fs_radix_tree_insert(struct radix_tree_root *root, unsigned long index, void *item) f2fs_radix_tree_insert() argument
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 4012 pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char; in nl_langinfo_l() 4068 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; in nl_langinfo()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4033 pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char; in nl_langinfo_l() 4106 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; in nl_langinfo()
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 1776 the object grows the list until that item exists. 2030 def get_destination_buffer(self, name, item=0): 2032 return d.buffers[item]
|
/third_party/python/Lib/test/ |
H A D | pickletester.py | 2426 # 4th item is not an iterator 2430 # 5th item is not an iterator 3320 def append(self, item): 3321 self.items.append(item) 3777 BBB class. If passed as the state_setter item of a custom reducer, this
|
H A D | test_socket.py | 2981 # more than one item is present. 2999 # Can only send one item 3512 for item in ancdata: 3513 self.assertIsInstance(item, tuple) 3514 cmsg_level, cmsg_type, cmsg_data = item 3711 # if an item has been partially 3989 # Try to send ancillary data with first item one byte too 3991 # and check that second item was handled correctly. 4043 # MSG_CTRUNC only if an item 4125 # contain the first item, bu [all...] |
H A D | test_dis.py | 509 async for item in _ag(x):
|
H A D | test_descr.py | 5049 keys = [item[0] for item in it] 5079 # item in a list sorted by name, like
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Reactor.cpp | 58 list.erase(std::remove_if(list.begin(), list.end(), [&](T item) { in apply() 59 return item == edit.second; in apply()
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 5538 for (const auto &item : abilityInfos) { in HWTEST_F() 5539 EXPECT_EQ(item.appIndex, index++); in HWTEST_F() 5633 for (const auto &item : abilityInfos) { in HWTEST_F() 5634 EXPECT_EQ(item.appIndex, index++); in HWTEST_F()
|
/foundation/multimedia/media_library/frameworks/js/src/ |
H A D | file_asset_napi.cpp | 1791 napi_value item = nullptr; in GetInt32InfoFromNapiObject() local 1799 if (napi_get_named_property(env, configObj, type.c_str(), &item) != napi_ok) { in GetInt32InfoFromNapiObject() 1804 if (napi_get_value_int32(env, item, &result) != napi_ok) { in GetInt32InfoFromNapiObject()
|
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_events_hist.c | 257 u32 *item = event + hist_field->field->offset; in hist_field_reldynstring() local 258 u32 str_item = *item; in hist_field_reldynstring() 260 char *addr = (char *)&item[1] + str_loc; in hist_field_reldynstring()
|
/third_party/node/deps/undici/ |
H A D | undici.js | 1456 for (const item of metadata) { 1457 const algorithm = item.algo; 1458 const expectedValue = item.hash; 6137 // undici implementation note: this is set as the first item in request's urlList in makeRequest 7007 const item = queue.shift(); 7008 if (!item) { 7012 needDrain = !this.dispatch(item.opts, item.handler); 7078 const item = this[kQueue].shift(); 7079 if (!item) { [all...] |
/kernel/linux/linux-6.6/include/linux/platform_data/ |
H A D | cros_ec_commands.h | 494 * item or rearrange the list (it needs to be stable across platforms, not 3299 EC_KEYSCAN_SEQ_ADD = 2, /* Add item to sequence */ 3322 /* Current item being presented */ 3334 uint8_t start_item; /* First item to return */ 3344 /* Data for each item */ 3345 struct ec_collect_item item[0]; member
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1737 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; in nl_langinfo()
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | 408 var item = array[i]; 409 if (f(item)) { 410 result.push(item); 458 var item = array[i]; 459 var mapped = f(item, i); 460 if (item !== mapped) { 567 var item = array[i]; 568 var mapped = mapfn(item, i); 569 if (result || item !== mapped || isArray(mapped)) { 792 var item [all...] |
H A D | tsc.js | 344 var item = array[i]; 345 if (f(item)) { 346 result.push(item); 394 var item = array[i]; 395 var mapped = f(item, i); 396 if (item !== mapped) { 492 var item = array[i]; 493 var mapped = mapfn(item, i); 494 if (result || item !== mapped || isArray(mapped)) { 714 var item [all...] |
/third_party/selinux/libsepol/cil/test/unit/ |
H A D | test_cil_resolve_ast.c | 5990 struct cil_list_item *item = new_call->macro->params->head; in test_cil_resolve_call1_paramsflavor_neg() local 5991 item->flavor = CIL_CONTEXT; in test_cil_resolve_call1_paramsflavor_neg() 6021 struct cil_list_item *item = new_call->macro->params->head; in test_cil_resolve_call1_unknownflavor_neg() local 6022 ((struct cil_param*)item->data)->flavor = CIL_CONTEXT; in test_cil_resolve_call1_unknownflavor_neg()
|
/kernel/linux/linux-6.6/drivers/scsi/ibmvscsi_tgt/ |
H A D | ibmvscsi_tgt.c | 3912 static ssize_t ibmvscsis_wwn_version_show(struct config_item *item, in ibmvscsis_wwn_version_show() argument
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 2677 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; in nl_langinfo()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserharness.js | 184 export function arrayContainsOnce(arr: any[], filter: (item: any) => boolean) {
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/ |
H A D | overlay_manager.cpp | 6014 for (auto& item: uiExtNodes_) { in ClearUIExtensionNode() 6015 auto uiExtNode = item.second.Upgrade(); in ClearUIExtensionNode()
|
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 606 var item = array[i]; 607 if (f(item)) { 608 result.push(item); 656 var item = array[i]; 657 var mapped = f(item, i); 658 if (item !== mapped) { 765 var item = array[i]; 766 var mapped = mapfn(item, i); 767 if (result || item !== mapped || isArray(mapped)) { 990 var item [all...] |
/kernel/linux/linux-5.10/sound/pci/hda/ |
H A D | patch_sigmatel.c | 925 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx]; in stac_smux_enum_get()
|