Searched refs:info (Results 1 – 6 of 6) sorted by relevance
/lib/ |
A D | syscall.c | 15 memset(info, 0, sizeof(*info)); in collect_syscall() 16 info->data.nr = -1; in collect_syscall() 26 info->sp = user_stack_pointer(regs); in collect_syscall() 30 if (info->data.nr != -1L) in collect_syscall() 33 info->data.args[0] = args[0]; in collect_syscall() 34 info->data.args[1] = args[1]; in collect_syscall() 35 info->data.args[2] = args[2]; in collect_syscall() 36 info->data.args[3] = args[3]; in collect_syscall() 37 info->data.args[4] = args[4]; in collect_syscall() 38 info->data.args[5] = args[5]; in collect_syscall() [all …]
|
A D | test_kmod.c | 206 if (info->fs_sync && info->fs_sync->owner) in test_kmod_put_module() 264 info->thread_idx, info->ret_sync); in tally_work_test() 271 info->thread_idx, info->fs_sync ? config->test_fs : in tally_work_test() 303 info = &test_dev->info[idx]; in tally_up_work() 320 struct kmod_test_device_info *info = &test_dev->info[idx]; in try_one_request() local 327 info->task_sync = kthread_run(run_request, info, "%s-%u", in try_one_request() 330 if (!info->task_sync || IS_ERR(info->task_sync)) { in try_one_request() 360 info = &test_dev->info[i]; in test_dev_kmod_stop_tests() 361 if (info->task_sync && !IS_ERR(info->task_sync)) { in test_dev_kmod_stop_tests() 374 if (info->task_sync && info->need_mod_put) in test_dev_kmod_stop_tests() [all …]
|
A D | test_objagg.c | 408 struct expect_stats_info info[NUM_KEYS]; member 422 .info = { __VA_ARGS__ } \ 688 &expect_stats->info[pos], NULL); in check_expect_stats_neigh() 692 &expect_stats->info[pos], NULL); in check_expect_stats_neigh() 698 &expect_stats->info[pos], NULL); in check_expect_stats_neigh() 702 &expect_stats->info[pos], NULL); in check_expect_stats_neigh() 723 &expect_stats->info[i], errmsg); in __check_expect_stats() 727 &expect_stats->info[i], errmsg); in __check_expect_stats()
|
A D | kobject_uevent.c | 271 static void cleanup_uevent_env(struct subprocess_info *info) in cleanup_uevent_env() argument 273 kfree(info->data); in cleanup_uevent_env() 614 struct subprocess_info *info; in kobject_uevent_env() local 628 info = call_usermodehelper_setup(env->argv[0], env->argv, in kobject_uevent_env() 631 if (info) { in kobject_uevent_env() 632 retval = call_usermodehelper_exec(info, UMH_NO_WAIT); in kobject_uevent_env()
|
A D | Kconfig.debug | 230 A kernel debug info option other than "None" has been selected 250 Choose which version of DWARF debug info to emit. If unsure, 264 The implicit default version of DWARF debug info produced by a 279 If you have consumers of DWARF debug info that are not ready for 294 15-18% savings in resulting image and debug info section sizes as 320 Compress the resulting debug info. Results in smaller debug info sections, 328 Don't compress debug info sections. 366 Generate debug info into separate .dwo files. This significantly 387 Generate deduplicated BTF type information from DWARF debug info. 390 deduplicated BTF type info. [all …]
|
/lib/zstd/decompress/ |
A D | zstd_decompress_block.c | 2016 ZSTD_OffsetInfo info = {0, 0}; in ZSTD_getOffsetInfo() local 2030 info.maxNbAdditionalBits = MAX(info.maxNbAdditionalBits, table[u].nbAdditionalBits); in ZSTD_getOffsetInfo() 2031 if (table[u].nbAdditionalBits > 22) info.longOffsetShare += 1; in ZSTD_getOffsetInfo() 2035 info.longOffsetShare <<= (OffFSELog - tableLog); /* scale to OffFSELog */ in ZSTD_getOffsetInfo() 2038 return info; in ZSTD_getOffsetInfo() 2139 ZSTD_OffsetInfo const info = ZSTD_getOffsetInfo(dctx->OFTptr, nbSeq); local 2140 if (isLongOffset && info.maxNbAdditionalBits <= STREAM_ACCUMULATOR_MIN) { 2149 usePrefetchDecoder = (info.longOffsetShare >= minShare);
|
Completed in 23 milliseconds