| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | delayed-ref.c | 650 struct btrfs_delayed_ref_head *existing, in update_existing_head_ref() argument 656 u64 flags = btrfs_ref_head_to_space_flags(existing); in update_existing_head_ref() 659 BUG_ON(existing->is_data != update->is_data); in update_existing_head_ref() 661 spin_lock(&existing->lock); in update_existing_head_ref() 670 existing->must_insert_reserved = update->must_insert_reserved; in update_existing_head_ref() 676 existing->num_bytes = update->num_bytes; in update_existing_head_ref() 681 if (!existing->extent_op) { in update_existing_head_ref() 682 existing->extent_op = update->extent_op; in update_existing_head_ref() 685 memcpy(&existing->extent_op->key, in update_existing_head_ref() 688 existing->extent_op->update_key = true; in update_existing_head_ref() [all …]
|
| H A D | extent_map.c | 541 struct extent_map *existing, in merge_extent_mapping() argument 553 if (existing->start > map_start) { in merge_extent_mapping() 554 next = existing; in merge_extent_mapping() 557 prev = existing; in merge_extent_mapping() 609 struct extent_map *existing; in btrfs_add_extent_mapping() local 613 existing = search_extent_mapping(em_tree, start, len); in btrfs_add_extent_mapping() 615 trace_btrfs_handle_em_exist(fs_info, existing, em, start, len); in btrfs_add_extent_mapping() 621 if (start >= existing->start && in btrfs_add_extent_mapping() 622 start < extent_map_end(existing)) { in btrfs_add_extent_mapping() 624 *em_in = existing; in btrfs_add_extent_mapping() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/libacpi/files/ |
| H A D | 0001-libacpi-Fix-build-witth-fno-commom.patch | 23 + * Array for existing batteries, loop until 28 + * Array for existing thermal zones, loop until 33 + * Array for existing fans, loop until 46 * Array for existing batteries, loop until 52 * Array for existing thermal zones, loop until 58 * Array for existing fans, loop until 64 * Finds existing batteries and fills the
|
| /OK3568_Linux_fs/kernel/net/llc/ |
| H A D | llc_if.c | 89 struct sock *existing; in llc_establish_connection() local 95 existing = llc_lookup_established(llc->sap, &daddr, &laddr); in llc_establish_connection() 96 if (existing) { in llc_establish_connection() 97 if (existing->sk_state == TCP_ESTABLISHED) { in llc_establish_connection() 98 sk = existing; in llc_establish_connection() 101 sock_put(existing); in llc_establish_connection()
|
| /OK3568_Linux_fs/kernel/Documentation/block/ |
| H A D | pr.rst | 64 is non-null. If no existing reservation exists old_key must be zero, 65 if an existing reservation should be replaced old_key must contain 68 If the new_key argument is 0 it unregisters the existing reservation passed 76 devices based on the type argument. The key argument must be the existing 91 This ioctl command releases the existing reservation referred to by 106 registered with the device and drops any existing reservation. 115 Ignore the existing reservation key. This is commonly supported for
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/ |
| H A D | Makefile.headersinst | 53 existing-dirs := $(sort $(dir $(old-headers))) 55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs)) 77 existing-headers := $(filter $(old-headers), $(all-headers)) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
| H A D | Makefile.modfinal | 94 existing-targets := $(wildcard $(sort $(targets))) 96 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-5.10/scripts/ |
| H A D | Makefile.headersinst | 53 existing-dirs := $(sort $(dir $(old-headers))) 55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs)) 77 existing-headers := $(filter $(old-headers), $(all-headers)) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
| H A D | Makefile.modfinal | 94 existing-targets := $(wildcard $(sort $(targets))) 96 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | Makefile.headersinst | 53 existing-dirs := $(sort $(dir $(old-headers))) 55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs)) 77 existing-headers := $(filter $(old-headers), $(all-headers)) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | xdmauth.c | 247 XdmClientAuthPtr client, existing; in XdmAuthorizationValidate() local 308 for (existing = xdmClients; existing; existing = existing->next) { in XdmAuthorizationValidate() 309 if (XdmClientAuthCompare(existing, client)) { in XdmAuthorizationValidate()
|
| H A D | WaitFor.c | 299 OsTimerPtr existing, tmp; in TimerSet() local 332 xorg_list_for_each_entry_safe(existing, tmp, &timers, list) in TimerSet() 333 if ((int) (existing->expires - millis) > 0) in TimerSet() 336 xorg_list_add(&timer->list, existing->list.prev); in TimerSet()
|
| /OK3568_Linux_fs/external/xserver/randr/ |
| H A D | rrmonitor.c | 520 RRMonitorPtr existing = pScrPriv->monitors[m]; in RRMonitorAdd() local 526 if (existing->name == monitor->name) { in RRMonitorAdd() 527 (void) RRMonitorDelete(client, screen, existing->name); in RRMonitorAdd() 537 for (eo = 0; eo < existing->numOutputs; eo++) { in RRMonitorAdd() 539 if (monitor->outputs[o] == existing->outputs[eo]) { in RRMonitorAdd() 540 memmove(existing->outputs + eo, existing->outputs + eo + 1, in RRMonitorAdd() 541 (existing->numOutputs - (eo + 1)) * sizeof (RROutput)); in RRMonitorAdd() 542 --existing->numOutputs; in RRMonitorAdd() 547 if (existing->numOutputs == 0) { in RRMonitorAdd() 548 (void) RRMonitorDelete(client, screen, existing->name); in RRMonitorAdd() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/algorithm/ |
| H A D | generate_clip_ids_impl.hpp | 44 auto& existing = its.first->second; in update() local 45 if (existing == leaf) { in update() 46 leaf.clip = existing.clip; in update()
|
| /OK3568_Linux_fs/buildroot/support/scripts/ |
| H A D | apply-patches.sh | 108 existing="$(grep -E "/${patch}\$" ${builddir}/.applied_patches_list || true)" 109 if [ -n "${existing}" ]; then 112 echo " already applied: ${existing}"
|
| /OK3568_Linux_fs/external/xserver/hw/xquartz/bundle/Resources/English.lproj/ |
| H A D | Localizable.strings | 38 …existing ~/.xinitrc file.\n\nWindows displayed by X11 applications may not have titlebars, or may …
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-class-stm_source | 7 is directed. Reads return an existing connection or "<none>" if 9 Write an existing (registered) stm device's name here to
|
| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | db-export.txt | 22 1. Because of the nature of SQL, existing tables and columns can continue to be 26 2. New tables and columns can be added, without affecting existing SQL queries, 33 4. The export scripts themselves maintain forward compatibility (i.e. an existing
|
| /OK3568_Linux_fs/kernel/drivers/base/ |
| H A D | devcoredump.c | 335 struct device *existing; in dev_coredumpm() local 340 existing = class_find_device(&devcd_class, NULL, dev, in dev_coredumpm() 342 if (existing) { in dev_coredumpm() 343 put_device(existing); in dev_coredumpm()
|
| /OK3568_Linux_fs/u-boot/doc/driver-model/ |
| H A D | serial-howto.txt | 25 implementations can share most of the existing code 26 - If you convert all existing users of the driver, remove the pre-driver-model 32 - convert at least one existing board to use driver model serial
|
| H A D | i2c-howto.txt | 37 implementations can share most of the existing code 38 - If you convert all existing users of the driver, remove the pre-driver-model 44 - convert at least one existing board to use driver model serial
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | hash-traits.h | 89 static inline bool equal (value_type existing, value_type candidate); 151 static inline bool equal (const value_type &existing, 171 pointer_hash <Type>::equal (const value_type &existing, in equal() argument 174 return existing == candidate; in equal()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | hash-traits.h | 89 static inline bool equal (value_type existing, value_type candidate); 151 static inline bool equal (const value_type &existing, 171 pointer_hash <Type>::equal (const value_type &existing, in equal() argument 174 return existing == candidate; in equal()
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/mei/ |
| H A D | mei-client-bus.rst | 13 However, for some of the ME functionalities it makes sense to leverage existing software 14 stack and expose them through existing kernel subsystems. 20 the existing code. 26 A driver implementation for an MEI Client is very similar to any other existing bus
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/ |
| H A D | broadcom-bcm87xx.txt | 12 with the existing register value, and the fourth cell is ORed with 14 value of zero, no read of the existing value is performed.
|