Home
last modified time | relevance | path

Searched refs:info (Results 5176 - 5200 of 17028) sorted by relevance

1...<<201202203204205206207208209210>>...682

/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/
H A Drxe_mmap.c77 if (context != ip->context || (__u64)offset != ip->info.offset) in rxe_mmap()
81 if (size > ip->info.size) { in rxe_mmap()
90 rxe_dbg_dev(rxe, "unable to find pending mmap info\n"); in rxe_mmap()
134 ip->info.offset = rxe->mmap_offset; in rxe_create_mmap_info()
140 ip->info.size = size; in rxe_create_mmap_info()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dtcp_rtt.c24 struct tcp_info info; in wait_for_ack() local
29 optlen = sizeof(info); in wait_for_ack()
30 err = getsockopt(fd, SOL_TCP, TCP_INFO, &info, &optlen); in wait_for_ack()
36 if (info.tcpi_unacked == 0) in wait_for_ack()
/kernel/liteos_a/kernel/base/include/
H A Dlos_signal.h124 siginfo_t info; /* Signal information */ member
137 siginfo_t info; member
147 siginfo_t sigunbinfo; /* Signal info when task unblocked */
148 SigInfoListNode *tmpInfoListHead; /* Signal info List */
171 int OsDispatch(pid_t pid, siginfo_t *info, int permission);
172 int OsSigTimedWait(sigset_t *set, siginfo_t *info, unsigned int timeout);
/kernel/linux/linux-6.6/sound/pci/ac97/
H A Dac97_patch.h17 .info = snd_ac97_info_volsw, \
22 .info = snd_ac97_info_volsw, \
27 .info = snd_ac97_info_volsw, \
47 .info = snd_ac97_info_enum_double, \
/kernel/linux/linux-6.6/net/ieee802154/
H A Dnetlink.c55 struct sk_buff *ieee802154_nl_new_reply(struct genl_info *info, in ieee802154_nl_new_reply() argument
64 hdr = genlmsg_put_reply(msg, info, in ieee802154_nl_new_reply()
74 int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info) in ieee802154_nl_reply() argument
81 return genlmsg_reply(msg, info); in ieee802154_nl_reply()
/kernel/linux/linux-6.6/net/ipv4/netfilter/
H A Dipt_SYNPROXY.c15 const struct xt_synproxy_info *info = par->targinfo; in synproxy_tg4() local
38 opts.options &= info->options; in synproxy_tg4()
40 opts.mss_option = info->mss; in synproxy_tg4()
42 synproxy_init_timestamp_cookie(info, &opts); in synproxy_tg4()
/kernel/linux/linux-6.6/net/ipv6/netfilter/
H A Dip6t_SYNPROXY.c15 const struct xt_synproxy_info *info = par->targinfo; in synproxy_tg6() local
38 opts.options &= info->options; in synproxy_tg6()
40 opts.mss_option = info->mss; in synproxy_tg6()
42 synproxy_init_timestamp_cookie(info, &opts); in synproxy_tg6()
/kernel/linux/linux-6.6/net/ipv6/ila/
H A Dila.h113 int ila_xlat_nl_cmd_add_mapping(struct sk_buff *skb, struct genl_info *info);
114 int ila_xlat_nl_cmd_del_mapping(struct sk_buff *skb, struct genl_info *info);
115 int ila_xlat_nl_cmd_get_mapping(struct sk_buff *skb, struct genl_info *info);
116 int ila_xlat_nl_cmd_flush(struct sk_buff *skb, struct genl_info *info);
/third_party/alsa-lib/src/timer/
H A Dtimer_query_hw.c51 static int snd_timer_query_hw_info(snd_timer_query_t *handle, snd_timer_ginfo_t *info) in snd_timer_query_hw_info() argument
53 if (!handle || !info) in snd_timer_query_hw_info()
55 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_GINFO, info) < 0) in snd_timer_query_hw_info()
81 .info = snd_timer_query_hw_info,
/third_party/lzma/CPP/Windows/
H A DSystem.cpp217 struct sysinfo info; in GetRamSize() local
218 if (::sysinfo(&info) != 0) in GetRamSize()
220 size = (UInt64)info.mem_unit * info.totalram; in GetRamSize()
226 printf("\n mem_unit = %lld", (UInt64)info.mem_unit); in GetRamSize()
227 printf("\n totalram = %lld", (UInt64)info.totalram); in GetRamSize()
228 printf("\n freeram = %lld", (UInt64)info.freeram); in GetRamSize()
/third_party/mesa3d/src/amd/common/
H A Dac_binary.c42 const struct radeon_info *info, struct ac_shader_config *conf) in ac_parse_shader_binary_config()
53 if (wave_size == 32 || info->wave64_vgpr_alloc_granularity == 8) in ac_parse_shader_binary_config()
97 if (info->gfx_level >= GFX11) in ac_parse_shader_binary_config()
131 if (info->gfx_level == GFX10_3) { in ac_parse_shader_binary_config()
41 ac_parse_shader_binary_config(const char *data, size_t nbytes, unsigned wave_size, const struct radeon_info *info, struct ac_shader_config *conf) ac_parse_shader_binary_config() argument
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerUtilWindows.cpp145 PROCESS_MEMORY_COUNTERS info; in GetPeakRSSMb() local
146 if (!GetProcessMemoryInfo(GetCurrentProcess(), &info, sizeof(info))) in GetPeakRSSMb()
148 return info.PeakWorkingSetSize >> 20; in GetPeakRSSMb()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_uniforms_to_ubo.c48 !b->shader->info.first_ubo_is_default_ubo) { in lower_instr()
134 if (!shader->info.first_ubo_is_default_ubo) { in nir_lower_uniforms_to_ubo()
145 shader->info.num_ubos++; in nir_lower_uniforms_to_ubo()
166 shader->info.first_ubo_is_default_ubo = true; in nir_lower_uniforms_to_ubo()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_query.c28 struct pipe_driver_query_group_info *info) in v3d_get_driver_query_group_info()
32 return v3d_get_driver_query_group_info_perfcnt(screen, index, info); in v3d_get_driver_query_group_info()
37 struct pipe_driver_query_info *info) in v3d_get_driver_query_info()
41 return v3d_get_driver_query_info_perfcnt(screen, index, info); in v3d_get_driver_query_info()
27 v3d_get_driver_query_group_info(struct pipe_screen *pscreen, unsigned index, struct pipe_driver_query_group_info *info) v3d_get_driver_query_group_info() argument
36 v3d_get_driver_query_info(struct pipe_screen *pscreen, unsigned index, struct pipe_driver_query_info *info) v3d_get_driver_query_info() argument
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dresource9.c56 This->info.screen = screen = This->base.device->screen; in NineResource9_ctor()
79 if (This->info.target != PIPE_BUFFER) { in NineResource9_ctor()
80 This->size = util_resource_size(&This->info); in NineResource9_ctor()
96 This->resource = nine_resource_create_with_retry(This->base.device, screen, &This->info); in NineResource9_ctor()
/third_party/node/test/js-native-api/test_dataview/
H A Dtest_dataview.c6 static napi_value CreateDataView(napi_env env, napi_callback_info info) { in CreateDataView() argument
9 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in CreateDataView()
53 static napi_value CreateDataViewFromJSDataView(napi_env env, napi_callback_info info) { in CreateDataViewFromJSDataView() argument
56 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in CreateDataViewFromJSDataView()
/third_party/node/test/js-native-api/test_instance_data/
H A Dtest_instance_data.c13 static napi_value Increment(napi_env env, napi_callback_info info) { in Increment() argument
34 static napi_value SetPrintOnDelete(napi_env env, napi_callback_info info) { in SetPrintOnDelete() argument
59 static napi_value ObjectWithFinalizer(napi_env env, napi_callback_info info) { in ObjectWithFinalizer() argument
66 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &js_cb, NULL, NULL)); in ObjectWithFinalizer()
/third_party/node/test/js-native-api/test_reference_double_free/
H A Dtest_reference_double_free.c24 static napi_value New(napi_env env, napi_callback_info info) { in New() argument
31 napi_get_cb_info(env, info, &argc, &js_delete, &js_this, NULL)); in New()
55 static napi_value DeleteImmediately(napi_env env, napi_callback_info info) { in DeleteImmediately() argument
61 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &js_obj, NULL, NULL)); in DeleteImmediately()
/third_party/node/benchmark/napi/type-tag/
H A Dbinding.c30 static napi_value TagObject(napi_env env, napi_callback_info info) { in TagObject() argument
37 NAPI_CALL(napi_get_cb_info(env, info, &argc, argv, NULL, NULL)); in TagObject()
56 static napi_value CheckObjectTag(napi_env env, napi_callback_info info) { in CheckObjectTag() argument
63 NAPI_CALL(napi_get_cb_info(env, info, &argc, argv, NULL, NULL)); in CheckObjectTag()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_simd_selection.c31 brw_required_dispatch_width(const struct shader_info *info) in brw_required_dispatch_width() argument
33 if ((int)info->subgroup_size >= (int)SUBGROUP_SIZE_REQUIRE_8) { in brw_required_dispatch_width()
34 assert(gl_shader_stage_uses_workgroup(info->stage)); in brw_required_dispatch_width()
38 return (unsigned)info->subgroup_size; in brw_required_dispatch_width()
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_android.c78 const VkImportSemaphoreFdInfoKHR info = { in vk_common_AcquireImageANDROID() local
85 result = device->dispatch_table.ImportSemaphoreFdKHR(_device, &info); in vk_common_AcquireImageANDROID()
91 const VkImportFenceFdInfoKHR info = { in vk_common_AcquireImageANDROID() local
98 result = device->dispatch_table.ImportFenceFdKHR(_device, &info); in vk_common_AcquireImageANDROID()
/third_party/node/deps/v8/src/ast/
H A Dprettyprinter.h126 void PrintLiteralIndented(const char* info, Literal* literal, bool quote);
127 void PrintLiteralIndented(const char* info, const AstRawString* value,
129 void PrintLiteralIndented(const char* info, const AstConsString* value,
131 void PrintLiteralWithModeIndented(const char* info, Variable* var,
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-struct.cc67 Handle<SharedFunctionInfo> info = in BUILTIN() local
71 info->set_internal_formal_parameter_count(JSParameterCount(0)); in BUILTIN()
72 info->set_length(0); in BUILTIN()
75 Factory::JSFunctionBuilder{isolate, info, isolate->native_context()} in BUILTIN()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-code-gen-state.h48 void PushEagerDeopt(EagerDeoptInfo* info) { eager_deopts_.push_back(info); } in PushEagerDeopt() argument
49 void PushLazyDeopt(LazyDeoptInfo* info) { lazy_deopts_.push_back(info); } in PushLazyDeopt() argument
H A Dmaglev-compilation-info.cc5 #include "src/maglev/maglev-compilation-info.h"
31 maglev::MaglevCompilationInfo* info) in MaglevCompilationHandleScope()
32 : info_(info), in MaglevCompilationHandleScope()
34 exported_info_(info), in MaglevCompilationHandleScope()
36 info->ReopenHandlesInNewHandleScope(isolate); in MaglevCompilationHandleScope()
30 MaglevCompilationHandleScope(Isolate* isolate, maglev::MaglevCompilationInfo* info) MaglevCompilationHandleScope() argument

Completed in 13 milliseconds

1...<<201202203204205206207208209210>>...682