Home
last modified time | relevance | path

Searched refs:common_data (Results 1 – 25 of 272) sorted by relevance

1234567891011

/dports/net/tacacs/PROJECTS/mavis/
H A Dspawnd_main.c61 while (common_data.servers_cur) in periodics()
69 if (common_data.users_cur < (common_data.users_min * (common_data.servers_cur + 1))) { in periodics()
79 for (i = 0; i < common_data.servers_cur && servers_count > common_data.servers_min; i++) in periodics()
281 ctx->io = common_data.io; in spawnd_bind_listener()
428 common_data.users_max_total = common_data.users_max * common_data.servers_max; in spawnd_main()
430 if (common_data.servers_max < common_data.servers_min) in spawnd_main()
431 common_data.servers_min = common_data.servers_max; in spawnd_main()
444 if (common_data.parse_only || common_data.version_only) { in spawnd_main()
520 setup_sig_segv(common_data.coredumpdir, common_data.gcorepath, common_data.debug_cmd); in spawnd_main()
522 while (common_data.servers_cur < common_data.servers_min) in spawnd_main()
[all …]
H A Dspawnd_scm_spawn.c34 common_data.users_cur -= ctx->use; in spawnd_cleanup_internal()
36 if (i < --common_data.servers_cur) in spawnd_cleanup_internal()
60 if (common_data.version_only) in spawnd_spawn_child()
62 if (common_data.parse_only) in spawnd_spawn_child()
64 if (common_data.debug) { in spawnd_spawn_child()
80 io_destroy(common_data.io, NULL); in spawnd_spawn_child()
90 if (common_data.parse_only) in spawnd_spawn_child()
173 common_data.users_max = max; in recv_childmsg()
187 if (common_data.servers_cur < common_data.servers_max) { in spawnd_add_child()
200 io_clr_cb_o(common_data.io, cur); in spawnd_add_child()
[all …]
H A Dset_proctitle.c20 if (!common_data.singleprocess) { in set_proctitle()
21 setproctitle("%d connection%s", common_data.users_cur, common_data.users_cur == 1 ? "" : "s"); in set_proctitle()
26common_data.users_cur, common_data.users_cur == 1 ? "" : "s", common_data.users_max_total - common… in set_proctitle()
29 …setproctitle("%d connection%s, %s new ones", common_data.users_cur, common_data.users_cur == 1 ? "… in set_proctitle()
32 …setproctitle("%d connection%s left, dying when idle", common_data.users_cur, common_data.users_cur… in set_proctitle()
H A Dspawnd_accepted.c118 if (common_data.users_cur == common_data.users_max_total) { in spawnd_accepted()
161 if (!common_data.singleprocess) in spawnd_accepted()
162 while (common_data.servers_cur < common_data.servers_min) in spawnd_accepted()
175 if (common_data.singleprocess) in spawnd_accepted()
179 min = common_data.users_max, min_i = -1; in spawnd_accepted()
189 for (i = 0; i < common_data.servers_min && i < common_data.servers_cur; i++) in spawnd_accepted()
194 for (i = common_data.servers_min; i < common_data.servers_cur; i++) in spawnd_accepted()
198 if (min_i < 0 && common_data.servers_cur < common_data.servers_max) { in spawnd_accepted()
200 min_i = common_data.servers_cur - 1, min = 0; in spawnd_accepted()
204 for (i = 0; i < common_data.servers_cur; i++) in spawnd_accepted()
[all …]
H A Dmavis_parse.c104 struct common_data common_data; variable
108 memset(&common_data, 0, sizeof common_data); in init_common_data()
334 …codestring[sym->code], common_data.font_plain, common_data.font_blue, sym->buf, common_data.font_p… in substitute_envvar()
1775 common_data.font_bold, common_data.font_plain, in common_usage()
1776 common_data.font_blue, common_data.progname, in common_usage()
1777 common_data.font_plain, common_data.font_blue, in common_usage()
1778 common_data.font_plain, common_data.font_blue, in common_usage()
1779 common_data.font_plain, common_data.font_blue, in common_usage()
1780 common_data.font_plain, common_data.font_bold, in common_usage()
1783 common_data.version, common_data.font_plain, in common_usage()
[all …]
H A Dlog.c23 extern struct common_data common_data;
27 char *ident = common_data.syslog_ident; in logopen()
29 ident = common_data.progname; in logopen()
35 openlog(ident, LOG_NDELAY | LOG_PID, common_data.syslog_facility); in logopen()
53 syslog(common_data.syslog_level | common_data.syslog_facility, "%s", tmpbuf); in logmsg()
70 syslog(common_data.syslog_level | common_data.syslog_facility, "%s: %s", tmpbuf, strerror(e)); in logerr()
H A Dspawnd_signals.c22 for (j = 0; j < common_data.servers_cur; j++) in catchhup()
23 common_data.scm_send_msg(spawnd_data.server_arr[j]->fn, &sd, -1); in catchhup()
26 pid_unlink(&common_data.pidfile); in catchhup()
27 execve(common_data.progpath, common_data.argv, common_data.envp); in catchhup()
37 for (j = 0; j < common_data.servers_cur; j++) in catchterm()
38 common_data.scm_send_msg(spawnd_data.server_arr[j]->fn, &sd, -1); in catchterm()
41 pid_unlink(&common_data.pidfile); in catchterm()
/dports/net/tacacs/PROJECTS/tcprelay/
H A Dmain.c36 if (common_data.users_cur == 0 && die_when_idle) { in periodics()
53 if (!common_data.conffile) { in main()
54 common_data.conffile = argv[optind]; in main()
55 common_data.id = argv[optind + 1]; in main()
57 …cfg_read_config(common_data.conffile, parse_decls, common_data.id ? common_data.id : common_data.p… in main()
59 if (common_data.parse_only) in main()
78 setup_sig_segv(common_data.coredumpdir, common_data.gcorepath, common_data.debug_cmd); in main()
80 if (common_data.singleprocess) { in main()
81 common_data.scm_accept = accepted_raw; in main()
82 io = common_data.io; in main()
[all …]
/dports/net/tacacs/PROJECTS/ftpd/
H A Dmain.c59 if (!common_data.conffile) { in main()
60 common_data.conffile = argv[optind]; in main()
61 common_data.id = argv[optind + 1]; in main()
63 …cfg_read_config(common_data.conffile, parse_decls, common_data.id ? common_data.id : common_data.p… in main()
65 if (common_data.parse_only) in main()
85 common_data.pid = getpid(); in main()
87 srand((u_int) common_data.pid); in main()
109 setup_sig_segv(common_data.coredumpdir, common_data.gcorepath, common_data.debug_cmd); in main()
117 if (common_data.singleprocess) { in main()
119 io = common_data.io; in main()
[all …]
/dports/x11/yad/yad-7.3/src/
H A Dfile.c81 if (options.common_data.uri) in file_create_widget()
84 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (w), options.common_data.uri); in file_create_widget()
87 gchar *dir = g_path_get_dirname (options.common_data.uri); in file_create_widget()
89 if (g_path_is_absolute (options.common_data.uri) == TRUE) in file_create_widget()
92 if (options.common_data.uri[strlen (options.common_data.uri) - 1] != '/') in file_create_widget()
94 gchar *basename = g_path_get_basename (options.common_data.uri); in file_create_widget()
107 if (options.common_data.multi) in file_create_widget()
111 if (options.common_data.preview) in file_create_widget()
119 for (filt = options.common_data.filters; filt; filt = filt->next) in file_create_widget()
136 if (options.common_data.quoted_output) in file_print_result()
[all …]
H A Dapp.c65 if (options.common_data.quoted_output) in app_print_result()
70 g_printf ("%s%s", buf, options.common_data.separator); in app_print_result()
74 g_printf ("%s%s", buf, options.common_data.separator); in app_print_result()
78 g_printf ("%s%s", buf, options.common_data.separator); in app_print_result()
82 g_printf ("%s%s", buf, options.common_data.separator); in app_print_result()
86 g_printf ("%s%s", buf, options.common_data.separator); in app_print_result()
94 g_app_info_get_name (info), options.common_data.separator, in app_print_result()
95 g_app_info_get_display_name (info), options.common_data.separator, in app_print_result()
96 g_app_info_get_description (info), options.common_data.separator, in app_print_result()
98 g_app_info_get_executable (info), options.common_data.separator); in app_print_result()
[all …]
H A Dfont.c34 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), options.common_data.font); in realize_cb()
51 if (options.common_data.font) in font_create_widget()
70 if (options.common_data.quoted_output) in font_print_result()
75 g_printf ("%s%s%s%s%d\n", q1, options.common_data.separator, q2, in font_print_result()
76 options.common_data.separator, size / PANGO_SCALE); in font_print_result()
83 … g_printf ("%s%s%s%s%d\n", pango_font_family_get_name (family), options.common_data.separator, in font_print_result()
84 … pango_font_face_get_face_name (face), options.common_data.separator, size / PANGO_SCALE); in font_print_result()
91 if (options.common_data.quoted_output) in font_print_result()
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dninenow.py84 common_data = {
95common_data, lambda x: x['episode']['video']['brightcoveId'], compat_str) or 'ref:%s' % common_dat…
96 …video_id = str_or_none(try_get(common_data, lambda x: x['episode']['video']['id'])) or brightcove_…
98 title = try_get(common_data, lambda x: x['episode']['name'], compat_str)
99 season_number = try_get(common_data, lambda x: x['season']['seasonNumber'], int)
100 episode_number = try_get(common_data, lambda x: x['episode']['episodeNumber'], int)
101 … timestamp = unified_timestamp(try_get(common_data, lambda x: x['episode']['airDate'], compat_str))
102 …release_date = unified_strdate(try_get(common_data, lambda x: x['episode']['availability'], compat…
103 thumbnails_data = try_get(common_data, lambda x: x['episode']['image']['sizes'], dict) or {}
117 'description': try_get(common_data, lambda x: x['episode']['description'], compat_str),
[all …]
/dports/net/tacacs/PROJECTS/tac_plus/
H A Dmain.c115 c->debug = common_data.debug; in new_context()
219 if (!common_data.conffile) { in main()
221 common_data.id = argv[optind + 1]; in main()
223 …cfg_read_config(common_data.conffile, parse_decls, common_data.id ? common_data.id : common_data.p… in main()
225 if (common_data.parse_only) in main()
254 setup_sig_segv(common_data.coredumpdir, common_data.gcorepath, common_data.debug_cmd); in main()
259 common_data.io = io_init(); in main()
284 io_sched_add(common_data.io, new_context(common_data.io, NULL), (void *) periodics, 60, 0); in main()
296 io_main(common_data.io); in main()
333 common_data.users_cur--; in cleanup()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/draw/engines/eevee/
H A Deevee_volumes.c92 EEVEE_CommonUniformBuffer *common_data = &sldata->common_data; in EEVEE_volumes_set_jitter() local
100 common_data->vol_jitter[0] = (float)ht_point[0]; in EEVEE_volumes_set_jitter()
111 EEVEE_CommonUniformBuffer *common_data = &sldata->common_data; in EEVEE_volumes_init() local
170 common_data->vol_history_alpha = 0.0f; in EEVEE_volumes_init()
190 common_data->vol_shadow_steps = 0; in EEVEE_volumes_init()
204 common_data->vol_depth_param[1] = (1.0f - common_data->vol_depth_param[0]) / near; in EEVEE_volumes_init()
219 if (common_data->vol_light_clamp == 0.0) { in EEVEE_volumes_init()
220 common_data->vol_light_clamp = FLT_MAX; in EEVEE_volumes_init()
238 EEVEE_CommonUniformBuffer *common_data = &sldata->common_data; in EEVEE_volumes_cache_init() local
569 EEVEE_CommonUniformBuffer *common_data = &sldata->common_data; in EEVEE_volumes_cache_finish() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout_unittest.cc178 struct CommonTestData common_data; in TEST_F() member
278 CreateLayout(test_data[i].common_data); in TEST_F()
313 CommonTestData common_data; in TEST_F() member
377 CreateLayout(test_data[i].common_data); in TEST_F()
396 struct CommonTestData common_data; in TEST_F() member
434 CreateLayout(test_data[i].common_data); in TEST_F()
447 CommonTestData common_data; in TEST_F() member
528 CreateLayout(test_data[i].common_data); in TEST_F()
538 CommonTestData common_data; in TEST_F() member
571 struct CommonTestData common_data; in TEST_F() member
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/ExecutionEngine/JITLink/X86/
H A DELF_x86-64_common.s15 # jitlink-check: got_addr(elf_common.o, common_data) - next_pc(load_common)
16 # jitlink-check: *{8}(got_addr(elf_common.o, common_data)) = common_data
17 movl common_data@GOTPCREL(%rip), %eax
23 # jitlink-check: *{4}(common_data) = 0
24 .type common_data,@object
25 .comm common_data,4,4
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/webrender-0.60.0/res/
H A Drender_task.glsl18 RenderTaskCommonData common_data;
33 RenderTaskCommonData common_data = RenderTaskCommonData(
40 common_data,
76 RenderTaskCommonData common_data;
84 task_data.common_data,
94 RenderTaskCommonData common_data;
104 area.common_data = RenderTaskCommonData(rect, 0.0, 1.0);
109 area.common_data = task_data.common_data;

1234567891011