Home
last modified time | relevance | path

Searched refs:old (Results 1076 - 1100 of 3973) sorted by relevance

1...<<41424344454647484950>>...159

/kernel/linux/linux-6.6/tools/perf/util/
H A Devent.c489 bool old = *(bool *)extra; in text_poke_printer() local
493 return fprintf(fp, " %s bytes:", old ? "Old" : "New"); in text_poke_printer()
507 bool old; in perf_event__fprintf_text_poke() local
523 ret += fprintf(fp, " old len %u new len %u\n", tp->old_len, tp->new_len); in perf_event__fprintf_text_poke()
524 old = true; in perf_event__fprintf_text_poke()
526 &old, fp); in perf_event__fprintf_text_poke()
527 old = false; in perf_event__fprintf_text_poke()
529 text_poke_printer, &old, fp); in perf_event__fprintf_text_poke()
/third_party/python/Objects/clinic/
H A Dbytearrayobject.c.h293 "replace($self, old, new, count=-1, /)\n"
296 "Return a copy with all occurrences of substring old replaced by new.\n"
309 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
316 Py_buffer old = {NULL, NULL}; in bytearray_replace() local
323 if (PyObject_GetBuffer(args[0], &old, PyBUF_SIMPLE) != 0) { in bytearray_replace()
326 if (!PyBuffer_IsContiguous(&old, 'C')) { in bytearray_replace()
353 return_value = bytearray_replace_impl(self, &old, &new, count); in bytearray_replace()
356 /* Cleanup for old */ in bytearray_replace()
357 if (old.obj) { in bytearray_replace()
358 PyBuffer_Release(&old); in bytearray_replace()
[all...]
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Datomic.h168 static inline int atomic_cmpxchg(atomic_t *v, int old, int new) in atomic_cmpxchg() argument
175 if (prev == old) in atomic_cmpxchg()
/kernel/linux/linux-5.10/arch/openrisc/kernel/
H A Dprocess.c221 struct task_struct *__switch_to(struct task_struct *old, in __switch_to() argument
235 old_ti = old->stack; in __switch_to()
/kernel/linux/linux-5.10/arch/s390/boot/
H A Dhead_kdump.S69 mvc 0(256,%r10),0(%r5) # Copy old kernel to tmp
70 mvc 0(256,%r5),0(%r11) # Copy new kernel to old
/kernel/linux/linux-5.10/arch/sh/boot/compressed/
H A Dhead_32.S114 ! or else old loadlin-1.5 will fail)
119 .byte 0 ! = 0, old one (LILO, Loadlin,
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H A Datomic.h172 static inline int arch_atomic_cmpxchg(atomic_t *v, int old, int new) in arch_atomic_cmpxchg() argument
179 if (prev == old) in arch_atomic_cmpxchg()
/kernel/linux/linux-6.6/arch/openrisc/kernel/
H A Dprocess.c240 struct task_struct *__switch_to(struct task_struct *old, in __switch_to() argument
254 old_ti = old->stack; in __switch_to()
/kernel/linux/linux-6.6/arch/sh/boot/compressed/
H A Dhead_32.S114 ! or else old loadlin-1.5 will fail)
119 .byte 0 ! = 0, old one (LILO, Loadlin,
/kernel/linux/linux-6.6/arch/s390/boot/
H A Dhead_kdump.S68 mvc 0(256,%r10),0(%r5) # Copy old kernel to tmp
69 mvc 0(256,%r5),0(%r11) # Copy new kernel to old
/kernel/linux/linux-5.10/include/linux/
H A Dbitfield.h151 static __always_inline __##type type##_replace_bits(__##type old, \
154 return (old & ~to(field)) | type##_encode_bits(val, field); \
H A Dswap_cgroup.h10 unsigned short old, unsigned short new);
/kernel/linux/linux-6.6/include/linux/
H A Dbitfield.h180 static __always_inline __##type type##_replace_bits(__##type old, \
183 return (old & ~to(field)) | type##_encode_bits(val, field); \
H A Dswap_cgroup.h10 unsigned short old, unsigned short new);
/kernel/linux/linux-6.6/tools/include/linux/
H A Dbitfield.h151 static __always_inline __##type type##_replace_bits(__##type old, \
154 return (old & ~to(field)) | type##_encode_bits(val, field); \
/third_party/backends/include/sane/
H A Dsanei_backend.h92 # define sigaction(sig,new,old) sigvec (sig,new,old)
/third_party/node/test/async-hooks/
H A Dverify-graph.js45 old: tickObject.data.uid,
49 if (x.triggerAsyncId === triggerId.old)
/third_party/pulseaudio/src/modules/
H A Dreserve-monitor.c94 const char *name, *old, *new; in filter_handler() local
100 DBUS_TYPE_STRING, &old, in filter_handler()
/kernel/linux/linux-5.10/security/apparmor/include/
H A Dresource.h39 void __aa_transition_rlimits(struct aa_label *old, struct aa_label *new);
/kernel/linux/linux-6.6/include/net/
H A Dnetevent.h20 struct dst_entry *old; member
/kernel/linux/linux-6.6/security/apparmor/include/
H A Dresource.h40 void __aa_transition_rlimits(struct aa_label *old, struct aa_label *new);
/third_party/musl/porting/linux/user/src/signal/
H A Dsiginterrupt.c19 extern int __libc_sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old);
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dmemorypool.h86 * @param old the existing block
91 * bytes (old continues to be valid for old_size)
95 void *old,
/kernel/linux/linux-5.10/arch/s390/kernel/
H A Dirq.c193 unsigned long old, new; in do_softirq_own_stack() local
195 old = current_stack_pointer(); in do_softirq_own_stack()
198 if (((new - old) >> (PAGE_SHIFT + THREAD_SIZE_ORDER)) != 0) { in do_softirq_own_stack()
/kernel/linux/linux-5.10/arch/arc/include/asm/
H A Datomic.h382 * atomic64_dec_if_positive - decrement by 1 if old value positive
385 * The function returns the old value of *v minus 1, even if
420 * Returns the old value of @v
424 s64 old, temp;
438 : "=&r"(old), "=&r" (temp)
444 return old;

Completed in 10 milliseconds

1...<<41424344454647484950>>...159