Searched refs:v (Results 1 – 25 of 61) sorted by relevance
123
| /scripts/coccinelle/tests/ |
| A D | unsigned_lesser_than_zero.cocci | 31 \( 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 D | atomics.tbl | 21 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 D | vmalloc.py | 40 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 D | preprocess.c | 249 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 D | gen-crc-consts.py | 90 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 D | dec_if_positive | 4 * @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 D | dec_unless_positive | 4 * @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 D | inc_not_zero | 4 * @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 D | inc_unless_negative | 4 * @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 D | add_unless | 2 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 D | cmpxchg | 4 * @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 D | try_cmpxchg | 4 * @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 D | dec_and_test | 4 * @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 D | inc_and_test | 4 * @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 D | add_negative | 5 * @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 D | sub_and_test | 5 * @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 D | dec | 4 * @v: pointer to ${atomic}_t 6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| A D | inc | 4 * @v: pointer to ${atomic}_t 6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| A D | and | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v & @i) with ${desc_order} ordering.
|
| A D | or | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v | @i) with ${desc_order} ordering.
|
| A D | xor | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v ^ @i) with ${desc_order} ordering.
|
| A D | add | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
|
| A D | andnot | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v & ~@i) with ${desc_order} ordering.
|
| A D | read | 4 * @v: pointer to ${atomic}_t 6 * Atomically loads the value of @v with ${desc_order} ordering. 10 * Return: The value loaded from @v.
|
| A D | sub | 5 * @v: pointer to ${atomic}_t 7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
|
Completed in 26 milliseconds
123