Searched refs:new (Results 126 - 150 of 1398) sorted by relevance

1234567891011>>

/linux-master/arch/sh/include/asm/
H A Dcmpxchg-irq.h41 unsigned long new)
49 *m = new;
40 __cmpxchg_u32(volatile int *m, unsigned long old, unsigned long new) argument
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Dovly.c33 int (*new)(struct nouveau_drm *, int, s32, struct nv50_wndw **);
52 ret = ovlys[cid].new(drm, head, ovlys[cid].oclass, pwndw);
H A Dcurs.c32 int (*new)(struct nouveau_drm *, int, s32, struct nv50_wndw **);
53 return curses[cid].new(drm, head, curses[cid].oclass, pwndw);
/linux-master/arch/um/include/asm/
H A Dmmu_context.h19 static inline void activate_mm(struct mm_struct *old, struct mm_struct *new) argument
23 * when the new ->mm is used for the first time.
25 __switch_mm(&new->context.id);
/linux-master/arch/hexagon/lib/
H A Dumodsi3.S27 if (!p0.new) r0 = sub(r0,r2)
33 if (!p0.new) r0 = sub(r0,r1)
/linux-master/kernel/kcsan/
H A Dkcsan.h133 int watchpoint_idx, u64 old, u64 new, u64 mask);
140 unsigned long ip, u64 old, u64 new, u64 mask);
/linux-master/scripts/
H A Dprune-kernel19 if [ -x "$(command -v new-kernel-pkg)" ]; then
20 new-kernel-pkg --remove $f
/linux-master/tools/arch/x86/include/asm/
H A Datomic.h69 static __always_inline int atomic_cmpxchg(atomic_t *v, int old, int new) argument
71 return cmpxchg(&v->counter, old, new);
/linux-master/security/selinux/
H A Dibpkey.c86 * sel_ib_pkey_insert - Insert a new pkey into the table
87 * @pkey: the new pkey record
90 * Add a new pkey record to the hash table.
133 struct sel_ib_pkey *new = NULL; local
152 new = kzalloc(sizeof(*new), GFP_ATOMIC);
153 if (!new) {
158 new->psec.subnet_prefix = subnet_prefix;
159 new->psec.pkey = pkey_num;
160 new
[all...]
H A Dnetport.c97 * sel_netport_insert - Insert a new port into the table
98 * @port: the new port record
101 * Add a new port record to the network address hash table.
141 struct sel_netport *new; local
154 new = kzalloc(sizeof(*new), GFP_ATOMIC);
155 if (new) {
156 new->psec.port = pnum;
157 new->psec.protocol = protocol;
158 new
[all...]
/linux-master/arch/arm/include/asm/
H A Dsync_bitops.h39 #define arch_sync_cmpxchg(ptr, old, new) \
43 __ret = arch_cmpxchg_relaxed((ptr), (old), (new)); \
/linux-master/fs/bcachefs/
H A Dbuckets_waiting_for_journal.c52 struct bucket_hashed *new,
62 old = bucket_hash(t, i, new->dev_bucket);
64 if (old->dev_bucket == new->dev_bucket ||
66 *old = *new;
79 swap(*new, *victim);
92 struct bucket_hashed tmp, new = { local
101 if (likely(bucket_table_insert(b->t, &new, flushed_seq)))
121 tmp = new;
51 bucket_table_insert(struct buckets_waiting_for_journal_table *t, struct bucket_hashed *new, u64 flushed_seq) argument
/linux-master/arch/s390/include/asm/
H A Dctlreg.h146 struct ctlreg new, old;
149 new = old;
150 new.val |= 1UL << bit;
151 local_ctl_load(cr, &new);
157 struct ctlreg new, old;
160 new = old;
161 new.val &= ~(1UL << bit);
162 local_ctl_load(cr, &new);
H A Datomic.h75 #define arch_atomic_xchg(v, new) (arch_xchg(&((v)->counter), new))
77 static __always_inline int arch_atomic_cmpxchg(atomic_t *v, int old, int new) argument
79 return __atomic_cmpxchg(&v->counter, old, new);
115 #define arch_atomic64_xchg(v, new) (arch_xchg(&((v)->counter), new))
117 static __always_inline s64 arch_atomic64_cmpxchg(atomic64_t *v, s64 old, s64 new) argument
119 return __atomic64_cmpxchg((long *)&v->counter, old, new);
/linux-master/security/apparmor/
H A Dpolicy.c324 * aa_alloc_profile - allocate, initialize and return a new profile
326 * @proxy: proxy to use OR null if to allocate a new one
437 * is used to load a new profile.
660 * Returns: new refcounted profile else NULL on failure
919 if (ent->new == profile)
921 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
922 0 && ent->new->base.hname[len] == 0)
923 return ent->new;
930 * __replace_profile - replace @old with @new on a list
932 * @new
941 __replace_profile(struct aa_profile *old, struct aa_profile *new) argument
1013 share_name(struct aa_profile *old, struct aa_profile *new) argument
1025 update_to_newest_parent(struct aa_profile *new) argument
[all...]
/linux-master/arch/sparc/lib/
H A Datomic32.c70 int arch_atomic_xchg(atomic_t *v, int new) argument
77 v->counter = new;
83 int arch_atomic_cmpxchg(atomic_t *v, int old, int new) argument
91 v->counter = new;
163 T __cmpxchg_##T(volatile T *ptr, T old, T new) \
170 *ptr = new; \
185 unsigned long __xchg_u32(volatile u32 *ptr, u32 new) argument
192 *ptr = new;
/linux-master/tools/perf/util/
H A Dordered-events.c18 static void queue_event(struct ordered_events *oe, struct ordered_event *new) argument
21 u64 timestamp = new->timestamp;
25 oe->last = new;
30 list_add(&new->list, &oe->events);
37 * the last queued event. We expect that the new event is close to
44 list_add_tail(&new->list, &oe->events);
50 list_add_tail(&new->list, &last->list);
55 list_add(&new->list, &oe->events);
60 list_add(&new->list, &last->list);
103 struct ordered_event *new local
175 struct ordered_event *new; local
[all...]
/linux-master/include/linux/
H A DmISDNdsp.h13 void *(*new)(const char *arg);
H A Dswap_cgroup.h10 unsigned short old, unsigned short new);
H A Drbtree_augmented.h29 void (*copy)(struct rb_node *old, struct rb_node *new);
30 void (*rotate)(struct rb_node *old, struct rb_node *new);
34 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));
116 RBSTRUCT *new = rb_entry(rb_new, RBSTRUCT, RBFIELD); \
117 new->RBAUGMENTED = old->RBAUGMENTED; \
123 RBSTRUCT *new = rb_entry(rb_new, RBSTRUCT, RBFIELD); \
124 new->RBAUGMENTED = old->RBAUGMENTED; \
195 __rb_change_child(struct rb_node *old, struct rb_node *new, argument
200 WRITE_ONCE(parent->rb_left, new);
202 WRITE_ONCE(parent->rb_right, new);
208 __rb_change_child_rcu(struct rb_node *old, struct rb_node *new, struct rb_node *parent, struct rb_root *root) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dgt200.c89 .head = { .cnt = nv50_head_cnt, .new = nv50_head_new },
90 .dac = { .cnt = nv50_dac_cnt, .new = nv50_dac_new },
91 .sor = { .cnt = nv50_sor_cnt, .new = g84_sor_new },
92 .pior = { .cnt = nv50_pior_cnt, .new = nv50_pior_new },
/linux-master/arch/powerpc/include/asm/
H A Dqspinlock.h94 u32 new = queued_spin_encode_locked_val();
107 : "r" (&lock->val), "r" (new),
116 u32 new = queued_spin_encode_locked_val();
131 : "r" (&lock->val), "r" (new), "r" (_Q_TAIL_CPU_MASK),
/linux-master/tools/testing/selftests/filesystems/fat/
H A Drun_fat_tests.sh48 echo new | sudo tee "${new_path}" >/dev/null 2>&1
51 grep new "${old_path}" >/dev/null 2>&1
64 echo new | sudo tee "${new_path}" >/dev/null 2>&1
67 grep new "${old_path}" >/dev/null 2>&1
/linux-master/arch/powerpc/include/asm/nohash/32/
H A Dhugetlb-8xx.h33 static inline void hugepd_populate(hugepd_t *hpdp, pte_t *new, unsigned int pshift) argument
35 *hpdp = __hugepd(__pa(new) | _PMD_USER | _PMD_PRESENT | _PMD_PAGE_8M);
38 static inline void hugepd_populate_kernel(hugepd_t *hpdp, pte_t *new, unsigned int pshift) argument
40 *hpdp = __hugepd(__pa(new) | _PMD_PRESENT | _PMD_PAGE_8M);
/linux-master/security/apparmor/include/
H A Dresource.h40 void __aa_transition_rlimits(struct aa_label *old, struct aa_label *new);

Completed in 249 milliseconds

1234567891011>>