Home
last modified time | relevance | path

Searched refs:value (Results 1 – 14 of 14) sorted by relevance

/lib/
Dtest_rhashtable.c60 int value; member
74 .key_offset = offsetof(struct test_obj, value),
114 if (array[i / 2].value == TEST_INSERT_FAIL) in test_rht_lookup()
127 if (obj->value != i) { in test_rht_lookup()
129 obj->value, i); in test_rht_lookup()
198 obj->value = i * 2; in test_rhashtable()
221 if (array[i].value != TEST_INSERT_FAIL) { in test_rhashtable()
248 if (obj && (tdata->objs[i].value == TEST_INSERT_FAIL)) { in thread_lookup_test()
251 } else if (!obj && (tdata->objs[i].value != TEST_INSERT_FAIL)) { in thread_lookup_test()
254 } else if (obj && (obj->value != key)) { in thread_lookup_test()
[all …]
Dtest_user_copy.c43 unsigned long value = 0x5A; in test_user_copy_init() local
68 ret |= test(get_user(value, (unsigned long __user *)usermem), in test_user_copy_init()
70 ret |= test(put_user(value, (unsigned long __user *)usermem), in test_user_copy_init()
100 ret |= test(!get_user(value, (unsigned long __user *)kmem), in test_user_copy_init()
102 ret |= test(!put_user(value, (unsigned long __user *)kmem), in test_user_copy_init()
Dextable.c106 unsigned long value) in search_extable() argument
116 if (ex_to_insn(mid) < value) in search_extable()
118 else if (ex_to_insn(mid) > value) in search_extable()
Dstring.c873 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes) in check_bytes8() argument
876 if (*start != value) in check_bytes8()
895 u8 value = c; in memchr_inv() local
900 return check_bytes8(start, value, bytes); in memchr_inv()
902 value64 = value; in memchr_inv()
919 r = check_bytes8(start, value, prefix); in memchr_inv()
930 return check_bytes8(start, value, 8); in memchr_inv()
935 return check_bytes8(start, value, bytes % 8); in memchr_inv()
Dfault-inject.c163 struct dentry *parent, unsigned long *value) in debugfs_create_ul() argument
165 return debugfs_create_file(name, mode, parent, value, &fops_ul); in debugfs_create_ul()
183 struct dentry *parent, unsigned long *value) in debugfs_create_stacktrace_depth() argument
185 return debugfs_create_file(name, mode, parent, value, in debugfs_create_stacktrace_depth()
Dlist_sort.c167 int value; member
209 return ela->value - elb->value; in cmp()
234 el->value = prandom_u32() % (TEST_LIST_LEN / 3); in list_sort_test()
Dnotifier-error-inject.c21 struct dentry *parent, int *value) in debugfs_create_errno() argument
23 return debugfs_create_file(name, mode, parent, value, &fops_errno); in debugfs_create_errno()
Dubsan.c119 unsigned long value) in val_to_string() argument
124 u_max val = get_unsigned_val(type, value); in val_to_string()
136 (s64)get_signed_val(type, value)); in val_to_string()
139 (u64)get_unsigned_val(type, value)); in val_to_string()
Dvsprintf.c671 unsigned long value; in symbol_string() local
678 value = (unsigned long)ptr; in symbol_string()
682 sprint_backtrace(sym, value); in symbol_string()
684 sprint_symbol(sym, value); in symbol_string()
686 sprint_symbol_no_offset(sym, value); in symbol_string()
690 return special_hex_number(buf, end, value, sizeof(void *)); in symbol_string()
2288 unsigned long long value; \ in vbin_printf()
2290 value = va_arg(args, unsigned long long); \ in vbin_printf()
2292 *(u32 *)str = *(u32 *)&value; \ in vbin_printf()
2293 *(u32 *)(str + 4) = *((u32 *)&value + 1); \ in vbin_printf()
[all …]
DKconfig320 Constant value for Galois field order 'm'. If 'k' is the
323 Drivers should declare a default value for this symbol if
329 Constant value for error correction capability in bits 't'.
330 Drivers should declare a default value for this symbol if
DKconfig.kmemcheck18 to see if memory is used before it has been given an initial value.
DKconfig.debug39 the "loops per jiffie" value.
40 See a previous boot log for the "lpj" value to use for your
194 suppress the "warning: ignoring return value of 'foo', declared with
463 int "debug_objects bootup default value (0-1)"
468 Debug objects boot parameter default value
544 buffer exceeded", please increase this value.
842 sysctl or by writing a value to
907 Set the timeout value (in seconds) until a reboot occurs when the
909 value n > 0 will wait n seconds before rebooting, while a timeout
910 value n < 0 will reboot immediately.
Dts_fsm.c135 return t->value == d; in match_token()
/lib/zlib_deflate/
Ddeftree.c177 static void send_bits (deflate_state *s, int value, int length);
181 int value, /* value to send */ in send_bits() argument
185 Tracevv((stderr," l %2d v %4x ", length, value)); in send_bits()
194 s->bi_buf |= (value << s->bi_valid); in send_bits()
196 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid); in send_bits()
199 s->bi_buf |= value << s->bi_valid; in send_bits()
205 #define send_bits(s, value, length) \ argument
208 int val = value;\
214 s->bi_buf |= (value) << s->bi_valid;\