Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 61) sorted by relevance

123

/scripts/coccinelle/tests/
A Dunsigned_lesser_than_zero.cocci31 \( v = e \| &v \)
33 (\( v@p < 0 \| v@p <= 0 \| v@p >= 0 \| v@p > 0 \))
39 expression c, e, v;
44 v = f(...)@vs;
45 ... when != v = e;
46 * (\( v@p <=@e 0 \| v@p >@e 0 \))
50 (\( v@p < 0 \| v@p <= 0 \)) || ... || (\( v >= c \| v > c \))
52 (\( v >= c \| v > c \)) || ... || (\( v@p < 0 \| v@p <= 0 \))
54 (\( v@p >= 0 \| v@p > 0 \)) && ... && (\( v < c \| v <= c \))
56 ((\( v < c \| v <= c \) && ... && \( v@p >= 0 \| v@p > 0 \)))
[all …]
/scripts/atomic/
A Datomics.tbl21 set s v i
22 add vRF i v
23 sub vRF i v
24 inc vRF v
25 dec vRF v
26 and vF i v
27 andnot vF i v
28 or vF i v
29 xor vF i v
30 xchg I v i:new
[all …]
/scripts/gdb/linux/
A Dvmalloc.py40 v = vmap_area['vm']
41 gdb.write("0x%x-0x%x %10d" % (v['addr'], v['addr'] + v['size'], v['size']))
42 if v['caller']:
44 if v['nr_pages']:
45 gdb.write(" pages=%d" % v['nr_pages'])
46 if v['phys_addr']:
48 if v['flags'] & constants.LX_VM_IOREMAP:
50 if v['flags'] & constants.LX_VM_ALLOC:
52 if v['flags'] & constants.LX_VM_MAP:
54 if v['flags'] & constants.LX_VM_USERMAP:
[all …]
/scripts/kconfig/
A Dpreprocess.c249 return v; in variable_lookup()
261 if (!v) in variable_expand()
271 v->exp_count++; in variable_expand()
278 v->exp_count--; in variable_expand()
291 if (v) { in variable_add()
297 free(v->value); in variable_add()
304 v = xmalloc(sizeof(*v)); in variable_add()
318 v->value = xrealloc(v->value, in variable_add()
331 free(v->name); in variable_del()
332 free(v->value); in variable_del()
[all …]
/scripts/
A Dgen-crc-consts.py90 for v in variants:
98 poly = (bitreflect(i % 256, 8) if v.lsb else i % 256) << (v.bits + 8*(i//256))
99 next_entry = fmt_poly(v, reduce(poly, v.G), v.bits) + ','
112 (G, n, lsb) = (v.G, v.bits, v.lsb)
140 for v in variants:
142 if v.bits > 32:
143 print_header(v, 'Constants')
164 for v in variants:
165 (G, n, lsb) = (v.G, v.bits, v.lsb)
214 print_mult_pair(v, mults)
[all …]
/scripts/atomic/kerneldoc/
A Ddec_if_positive4 * @v: pointer to ${atomic}_t
6 * If (@v > 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
7 * Otherwise, @v is not modified and relaxed ordering is provided.
11 * Return: The old value of (@v - 1), regardless of whether @v was updated.
A Ddec_unless_positive4 * @v: pointer to ${atomic}_t
6 * If (@v <= 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
7 * Otherwise, @v is not modified and relaxed ordering is provided.
11 * Return: @true if @v was updated, @false otherwise.
A Dinc_not_zero4 * @v: pointer to ${atomic}_t
6 * If (@v != 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
7 * Otherwise, @v is not modified and relaxed ordering is provided.
11 * Return: @true if @v was updated, @false otherwise.
A Dinc_unless_negative4 * @v: pointer to ${atomic}_t
6 * If (@v >= 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
7 * Otherwise, @v is not modified and relaxed ordering is provided.
11 * Return: @true if @v was updated, @false otherwise.
A Dadd_unless2 desc_return="Return: @true if @v was updated, @false otherwise."
8 * @v: pointer to ${atomic}_t
12 * If (@v != @u), atomically updates @v to (@v + @a) with ${desc_order} ordering.
13 * Otherwise, @v is not modified and relaxed ordering is provided.
A Dcmpxchg4 * @v: pointer to ${atomic}_t
8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
9 * Otherwise, @v is not modified and relaxed ordering is provided.
13 * Return: The original value of @v.
A Dtry_cmpxchg4 * @v: pointer to ${atomic}_t
8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
9 * Otherwise, @v is not modified, @old is updated to the current value of @v,
A Ddec_and_test4 * @v: pointer to ${atomic}_t
6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
10 * Return: @true if the resulting value of @v is zero, @false otherwise.
A Dinc_and_test4 * @v: pointer to ${atomic}_t
6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
10 * Return: @true if the resulting value of @v is zero, @false otherwise.
A Dadd_negative5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
11 * Return: @true if the resulting value of @v is negative, @false otherwise.
A Dsub_and_test5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
11 * Return: @true if the resulting value of @v is zero, @false otherwise.
A Ddec4 * @v: pointer to ${atomic}_t
6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
A Dinc4 * @v: pointer to ${atomic}_t
6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
A Dand5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v & @i) with ${desc_order} ordering.
A Dor5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v | @i) with ${desc_order} ordering.
A Dxor5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v ^ @i) with ${desc_order} ordering.
A Dadd5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
A Dandnot5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v & ~@i) with ${desc_order} ordering.
A Dread4 * @v: pointer to ${atomic}_t
6 * Atomically loads the value of @v with ${desc_order} ordering.
10 * Return: The value loaded from @v.
A Dsub5 * @v: pointer to ${atomic}_t
7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.

Completed in 19 milliseconds

123