Home
last modified time | relevance | path

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

/lib/
Dtest_rhashtable.c56 int value; member
70 .key_offset = offsetof(struct test_obj, value),
88 if (array[i / 2].value == TEST_INSERT_FAIL) in test_rht_lookup()
101 if (obj->value != i) { in test_rht_lookup()
103 obj->value, i); in test_rht_lookup()
172 obj->value = i * 2; in test_rhashtable()
177 obj->value = TEST_INSERT_FAIL; in test_rhashtable()
201 if (array[i].value != TEST_INSERT_FAIL) { in test_rhashtable()
228 if (obj && (tdata->objs[i].value == TEST_INSERT_FAIL)) { in thread_lookup_test()
231 } else if (!obj && (tdata->objs[i].value != TEST_INSERT_FAIL)) { 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()
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()
Dstring.c990 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes) in check_bytes8() argument
993 if (*start != value) in check_bytes8()
1012 u8 value = c; in memchr_inv() local
1017 return check_bytes8(start, value, bytes); in memchr_inv()
1019 value64 = value; in memchr_inv()
1036 r = check_bytes8(start, value, prefix); in memchr_inv()
1047 return check_bytes8(start, value, 8); in memchr_inv()
1052 return check_bytes8(start, value, bytes % 8); in memchr_inv()
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()
Dvsprintf.c620 unsigned long value; in symbol_string() local
627 value = (unsigned long)ptr; in symbol_string()
631 sprint_backtrace(sym, value); in symbol_string()
633 sprint_symbol(sym, value); in symbol_string()
635 sprint_symbol_no_offset(sym, value); in symbol_string()
643 return number(buf, end, value, spec); in symbol_string()
2148 unsigned long long value; \ in vbin_printf()
2150 value = va_arg(args, unsigned long long); \ in vbin_printf()
2152 *(u32 *)str = *(u32 *)&value; \ in vbin_printf()
2153 *(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
449 int "debug_objects bootup default value (0-1)"
454 Debug objects boot parameter default value
530 buffer exceeded", please increase this value.
819 sysctl or by writing a value to
873 Set the timeout value (in seconds) until a reboot occurs when the
875 value n > 0 will wait n seconds before rebooting, while a timeout
876 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;\