Home
last modified time | relevance | path

Searched refs:check_idx (Results 1 – 25 of 91) sorted by relevance

1234

/dports/sysutils/gsmartcontrol/gsmartcontrol-1.1.3/src/hz/
H A Dstring_sprintf_macros.h68 …define HZ_FUNC_STRING_SPRINTF_CHECK(format_idx, check_idx) HZ_FUNC_PRINTF_ISO_CHECK(format_idx, ch… argument
70 …define HZ_FUNC_STRING_SPRINTF_CHECK(format_idx, check_idx) HZ_FUNC_PRINTF_MS_CHECK(format_idx, che… argument
72 #define HZ_FUNC_STRING_SPRINTF_CHECK(format_idx, check_idx) argument
H A Dsystem_specific.h63 …#define HZ_FUNC_PRINTF_ISO_CHECK(format_idx, check_idx) HZ_GCC_ATTR(format(printf, format_idx, che… argument
68 …#define HZ_FUNC_PRINTF_MS_CHECK(format_idx, check_idx) HZ_GCC_ATTR(format(ms_printf, format_idx, c… argument
70 #define HZ_FUNC_PRINTF_MS_CHECK(format_idx, check_idx) argument
/dports/sysutils/pv/pv-1.6.20/src/pv/
H A Dwatchpid.c208 int fd, check_idx, use_idx, rc; in pv_watchpid_scanfds() local
229 for (check_idx = 0; check_idx < array_length; check_idx++) { in pv_watchpid_scanfds()
230 if (info_array[check_idx].watch_pid == 0) { in pv_watchpid_scanfds()
231 use_idx = check_idx; in pv_watchpid_scanfds()
279 for (check_idx = 0; check_idx < array_length; in pv_watchpid_scanfds()
280 check_idx++) { in pv_watchpid_scanfds()
281 state_array[check_idx].name = in pv_watchpid_scanfds()
282 info_array[check_idx].display_name; in pv_watchpid_scanfds()
283 state_array[check_idx].reparse_display = 1; in pv_watchpid_scanfds()
/dports/graphics/digikam/digikam-7.4.0/project/reports/
H A Dclazy_visualizer.py281 for check_idx in range(0, num_used_checks):
282 collapse_idx = check_idx+1
283 f.write("\t<div id=\"show%d\"" % (check_idx))
290 …hecks/README-%s.md\">%s</a></h4>\n" % (names_of_used[check_idx].name[9:-1], names_of_used[check_id…
292 names_of_used[check_idx].data = names_of_used[check_idx].data.replace('<', '&lt;')
293 names_of_used[check_idx].data = names_of_used[check_idx].data.replace('>', '&gt;')
294 f.write("%s\t\t</pre>\n\t</div>\n" % (names_of_used[check_idx].data))
H A Dclangtidy_visualizer.py1246 for check_idx in range(0, num_used_checks):
1247 collapse_idx = check_idx+1
1248 f.write("\t<div id=\"show%d\"" % (check_idx))
1256 f.write("%s</h4>\n" % (names_of_used[check_idx].name[1:-1]))
1258 names_of_used[check_idx].data = names_of_used[check_idx].data.replace('<', '&lt;')
1259 names_of_used[check_idx].data = names_of_used[check_idx].data.replace('>', '&gt;')
1260 f.write("%s\t\t</pre>\n\t</div>\n" % (names_of_used[check_idx].data))
/dports/misc/e2fsprogs-libblkid/e2fsprogs-1.46.5/lib/ext2fs/
H A Dclosefs.c196 int check_idx, write_idx, size; in write_primary_superblock() local
211 for (check_idx = 0; check_idx < SUPERBLOCK_SIZE/2; check_idx++) { in write_primary_superblock()
212 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
214 write_idx = check_idx; in write_primary_superblock()
215 for (check_idx++; check_idx < SUPERBLOCK_SIZE/2; check_idx++) in write_primary_superblock()
216 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
218 size = 2 * (check_idx - write_idx); in write_primary_superblock()
/dports/misc/e2fsprogs-libuuid/e2fsprogs-1.46.5/lib/ext2fs/
H A Dclosefs.c196 int check_idx, write_idx, size; in write_primary_superblock() local
211 for (check_idx = 0; check_idx < SUPERBLOCK_SIZE/2; check_idx++) { in write_primary_superblock()
212 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
214 write_idx = check_idx; in write_primary_superblock()
215 for (check_idx++; check_idx < SUPERBLOCK_SIZE/2; check_idx++) in write_primary_superblock()
216 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
218 size = 2 * (check_idx - write_idx); in write_primary_superblock()
/dports/sysutils/e2fsprogs/e2fsprogs-1.46.5/lib/ext2fs/
H A Dclosefs.c196 int check_idx, write_idx, size; in write_primary_superblock() local
211 for (check_idx = 0; check_idx < SUPERBLOCK_SIZE/2; check_idx++) { in write_primary_superblock()
212 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
214 write_idx = check_idx; in write_primary_superblock()
215 for (check_idx++; check_idx < SUPERBLOCK_SIZE/2; check_idx++) in write_primary_superblock()
216 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
218 size = 2 * (check_idx - write_idx); in write_primary_superblock()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/containers/sequences/array/
H A Dat.pass.cpp30 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
118 static_assert (check_idx(0, 1), ""); in main()
119 static_assert (check_idx(1, 2), ""); in main()
120 static_assert (check_idx(2, 3.5), ""); in main()
H A Dindexing.pass.cpp27 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
113 static_assert (check_idx(0, 1), ""); in main()
114 static_assert (check_idx(1, 2), ""); in main()
115 static_assert (check_idx(2, 3.5), ""); in main()
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/containers/sequences/array/
H A Dat.pass.cpp26 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
114 static_assert (check_idx(0, 1), ""); in main()
115 static_assert (check_idx(1, 2), ""); in main()
116 static_assert (check_idx(2, 3.5), ""); in main()
H A Dindexing.pass.cpp27 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
113 static_assert (check_idx(0, 1), ""); in main()
114 static_assert (check_idx(1, 2), ""); in main()
115 static_assert (check_idx(2, 3.5), ""); in main()
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/sequences/array/
H A Dat.pass.cpp30 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
118 static_assert (check_idx(0, 1), ""); in main()
119 static_assert (check_idx(1, 2), ""); in main()
120 static_assert (check_idx(2, 3.5), ""); in main()
H A Dindexing.pass.cpp27 constexpr bool check_idx( size_t idx, double val ) in check_idx() function
113 static_assert (check_idx(0, 1), ""); in main()
114 static_assert (check_idx(1, 2), ""); in main()
115 static_assert (check_idx(2, 3.5), ""); in main()
/dports/graphics/gimp-refocus-plugin/refocus-0.9.0/src/
H A Dgimppreview.c1298 gint check_idx; in gimp_preview_draw_unscaled_row() local
1342 for (check_idx = 0; check_idx < 2; check_idx++) in gimp_preview_draw_unscaled_row()
1344 buf_start[check_idx] = in gimp_preview_draw_unscaled_row()
1346 if (need_check_idx[check_idx]) in gimp_preview_draw_unscaled_row()
1348 guchar *const dest_ptr = buf_start[check_idx]; in gimp_preview_draw_unscaled_row()
1385 for (check_idx = 0; check_idx < 2; check_idx++) in gimp_preview_draw_unscaled_row()
1387 buf_start[check_idx] = in gimp_preview_draw_unscaled_row()
1389 if (need_check_idx[check_idx]) in gimp_preview_draw_unscaled_row()
1391 guchar *const dest_ptr = buf_start[check_idx]; in gimp_preview_draw_unscaled_row()
1433 const gint check_idx = (y / CHECK_SIZE) & 1; in gimp_preview_draw_unscaled_row() local
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/qvm/test/
H A Daccess_v_test.cpp13 check_idx( test_qvm::vector<V1,10> & v, float & (*f)( test_qvm::vector<V1,10> & ) )
23 #define CHECK_A(i) check_idx<i>(v,A##i); in main()
H A Daccess_m_test.cpp13 check_idx( test_qvm::matrix<M1,10,10> & m, float & (*f)( test_qvm::matrix<M1,10,10> & ) )
23 #define CHECK_A(i,j) check_idx<i,j>(m,A##i##j); in main()
/dports/devel/boost-python-libs/boost_1_72_0/libs/qvm/test/
H A Daccess_v_test.cpp13 check_idx( test_qvm::vector<V1,10> & v, float & (*f)( test_qvm::vector<V1,10> & ) )
23 #define CHECK_A(i) check_idx<i>(v,A##i); in main()
H A Daccess_m_test.cpp13 check_idx( test_qvm::matrix<M1,10,10> & m, float & (*f)( test_qvm::matrix<M1,10,10> & ) )
23 #define CHECK_A(i,j) check_idx<i,j>(m,A##i##j); in main()
/dports/devel/boost-libs/boost_1_72_0/libs/qvm/test/
H A Daccess_v_test.cpp13 check_idx( test_qvm::vector<V1,10> & v, float & (*f)( test_qvm::vector<V1,10> & ) )
23 #define CHECK_A(i) check_idx<i>(v,A##i); in main()
H A Daccess_m_test.cpp13 check_idx( test_qvm::matrix<M1,10,10> & m, float & (*f)( test_qvm::matrix<M1,10,10> & ) )
23 #define CHECK_A(i,j) check_idx<i,j>(m,A##i##j); in main()
/dports/devel/hyperscan/boost_1_75_0/libs/qvm/test/
H A Daccess_v_test.cpp13 check_idx( test_qvm::vector<V1,10> & v, float & (*f)( test_qvm::vector<V1,10> & ) )
23 #define CHECK_A(i) check_idx<i>(v,A##i); in main()
H A Daccess_m_test.cpp13 check_idx( test_qvm::matrix<M1,10,10> & m, float & (*f)( test_qvm::matrix<M1,10,10> & ) )
23 #define CHECK_A(i,j) check_idx<i,j>(m,A##i##j); in main()
/dports/print/texlive-base/texlive-20150521-source/texk/makeindexk/
H A Dmkind.c70 static void check_idx (char *fn,int open_fn);
232 check_idx(*argv, FALSE); in main()
319 check_idx(fn[i], TRUE); in process_idx()
370 check_idx(char *fn, int open_fn) in check_idx() function
434 check_idx(fn, TRUE); in check_all()
/dports/print/makeindex/makeindex/src-3.0/
H A Dmkind.c73 static void check_idx ARGS((char *fn,int open_fn));
206 check_idx(*argv, FALSE);
281 check_idx(fn[i], TRUE);
313 check_idx(fn, open_fn) in check_idx() function
430 check_idx(fn, TRUE);

1234