Searched refs:updates (Results 1 – 25 of 264) sorted by relevance
1234567891011
| /Linux-v6.6/scripts/atomic/kerneldoc/ |
| D | try_cmpxchg | 8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering. 9 * Otherwise, updates @old to the current value of @v.
|
| D | dec | 6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| D | inc | 6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| D | and | 7 * Atomically updates @v to (@v & @i) with ${desc_order} ordering.
|
| D | or | 7 * Atomically updates @v to (@v | @i) with ${desc_order} ordering.
|
| D | xor | 7 * Atomically updates @v to (@v ^ @i) with ${desc_order} ordering.
|
| D | add | 7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
|
| D | andnot | 7 * Atomically updates @v to (@v & ~@i) with ${desc_order} ordering.
|
| D | sub | 7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
|
| D | xchg | 7 * Atomically updates @v to @new with ${desc_order} ordering.
|
| D | dec_unless_positive | 6 * If (@v <= 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| D | inc_unless_negative | 6 * If (@v >= 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| D | inc_not_zero | 6 * If (@v != 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| D | dec_and_test | 6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| D | dec_if_positive | 6 * If (@v > 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| D | inc_and_test | 6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| D | add_negative | 7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
|
| D | cmpxchg | 8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
|
| D | sub_and_test | 7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
|
| /Linux-v6.6/Documentation/ABI/testing/ |
| D | sysfs-bus-coresight-devices-trbe | 12 Description: (Read) Shows if TRBE updates in the memory are with access 13 and dirty flag updates as well. This value is fetched from
|
| /Linux-v6.6/drivers/net/ |
| D | LICENSE.SRC | 14 on an "as-is" basis. No further updates to this software should be 15 expected. Although updates may occur, no commitment exists.
|
| /Linux-v6.6/Documentation/driver-api/firmware/ |
| D | fw_search_path.rst | 9 * /lib/firmware/updates/UTS_RELEASE/ 10 * /lib/firmware/updates/
|
| /Linux-v6.6/tools/perf/pmu-events/ |
| D | metric.py | 583 updates: Dict[Tuple[str, str], Expression] = dict() 596 if (inner_pmu, inner_name) in updates: 597 inner_expression = updates[(inner_pmu, inner_name)] 601 if (outer_pmu, outer_name) in updates and updated.Equals(updates[(outer_pmu, outer_name)]): 603 updates[(outer_pmu, outer_name)] = updated 604 return updates
|
| /Linux-v6.6/Documentation/RCU/ |
| D | checklist.rst | 32 for lockless updates. This does result in the mildly 34 rcu_read_unlock() are used to protect updates, however, this 45 c. restricting updates to a single task. 87 be running while updates are in progress. There are a number 106 c. Make updates appear atomic to readers. For example, 107 pointer updates to properly aligned fields will 118 d. Carefully order the updates and the reads so that readers 222 Restructure your code so that it batches the updates, allowing 280 primitive will correspondingly delay updates. In contrast, 291 limit on this number, stalling updates as needed to allow [all …]
|
| /Linux-v6.6/drivers/gpu/drm/amd/amdgpu/ |
| D | amdgpu_ids.c | 284 uint64_t updates = amdgpu_vm_tlb_seq(vm); in amdgpu_vmid_grab_reserved() local 290 (*id)->flushed_updates < updates || in amdgpu_vmid_grab_reserved() 344 uint64_t updates = amdgpu_vm_tlb_seq(vm); in amdgpu_vmid_grab_used() local 365 if ((*id)->flushed_updates < updates) in amdgpu_vmid_grab_used()
|
1234567891011