Home
last modified time | relevance | path

Searched refs:check_length (Results 201 – 225 of 466) sorted by relevance

12345678910>>...19

/dports/print/pdflib/PDFlib-Lite-7.0.5p3/libs/pdflib/
H A Dp_jpeg.c661 long check_length = start + CHECK_LENGTH; in pdf_is_JPEG_file() local
676 while (!pdc_feof(fp) && c != 0xFF && pos < check_length); in pdf_is_JPEG_file()
678 if (pdc_feof(fp) || pos >= check_length) in pdf_is_JPEG_file()
689 while (c == 0xFF && pos < check_length); in pdf_is_JPEG_file()
693 if (pos < 0L || pos >= check_length) in pdf_is_JPEG_file()
/dports/print/pdflib-perl/PDFlib-Lite-7.0.5p3/libs/pdflib/
H A Dp_jpeg.c661 long check_length = start + CHECK_LENGTH; in pdf_is_JPEG_file() local
676 while (!pdc_feof(fp) && c != 0xFF && pos < check_length); in pdf_is_JPEG_file()
678 if (pdc_feof(fp) || pos >= check_length) in pdf_is_JPEG_file()
689 while (c == 0xFF && pos < check_length); in pdf_is_JPEG_file()
693 if (pos < 0L || pos >= check_length) in pdf_is_JPEG_file()
/dports/audio/moc/moc-2.5.2/
H A Doptions.c213 static int check_length (int opt, ...) in check_length() function
337 if (check == check_length) { in add_str()
395 if (check == check_length) { in add_list()
547 #define CHECK_LENGTH(c) check_length, (2 * (c))
1297 if (options[i].check != check_length) { in options_free()
/dports/textproc/bibclean/bibclean-3.06/
H A Dfix.c29 extern void check_length ARGS((size_t n_));
480 check_length(k); in fix_accent_bracing()
969 check_length(k); in fix_bracing()
1488 check_length(k); in fix_math_spacing()
2271 check_length(k); in fix_title()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/io/
H A DReadSmf.hpp100 ErrorCode check_length( int count, const std::vector<std::string> & argv );
/dports/misc/py-cinder/cinder-12.0.10/cinder/api/v3/
H A Dbackups.py47 self.validate_name_and_description(backup_update, check_length=False)
/dports/devel/systemc/systemc-2.3.4_pub_rev_20190614/src/sysc/datatypes/int/
H A Dsc_uint_base.h544 void check_length() const in check_length() function
569 { check_length(); }
573 { check_length(); extend_sign(); } in sc_uint_base()
587 { check_length(); extend_sign(); } in sc_uint_base()
H A Dsc_int_base.h558 void check_length() const in check_length() function
583 { check_length(); }
587 { check_length(); extend_sign(); } in sc_int_base()
602 { check_length(); extend_sign(); } in sc_int_base()
/dports/devel/py-schematics-patched/schematics-1.1.2-patch/schematics/types/
H A Dcompound.py132 validators = [self.check_length, self.validate_items] + kwargs.pop("validators", [])
160 def check_length(self, value): member in ListType
/dports/textproc/hevea/hevea-2.34/
H A Dtabular.mll67 and check_length f =
236 | (Text | Info) -> check_length r
/dports/mail/emil/emil-2.1.0-beta9/
H A Dfunc.h89 int check_length(struct data *, long);
/dports/security/p5-openxpki-i18n/openxpki-3.16.1/core/server/OpenXPKI/Server/API2/Plugin/Crypto/password_quality/
H A DCheckStandardRole.pm187 sub check_length { subroutine
/dports/security/p5-openxpki/openxpki-3.16.1/core/server/OpenXPKI/Server/API2/Plugin/Crypto/password_quality/
H A DCheckStandardRole.pm187 sub check_length { subroutine
/dports/misc/rump/buildrump.sh-b914579/src/sys/net/
H A Dbpfjit.c199 bpfjit_abc_length_t check_length; member
1568 rdata->check_length = 0; in optimize_pass3()
1571 rdata->check_length = checked_length; in optimize_pass3()
1752 if (insn_dat[i].u.rdata.check_length > UINT32_MAX) { in generate_insn_code()
1761 } else if (insn_dat[i].u.rdata.check_length > 0) { in generate_insn_code()
1767 insn_dat[i].u.rdata.check_length); in generate_insn_code()
/dports/devel/libbpfjit/bpfjit-38b515b/src/
H A Dbpfjit.c202 bpfjit_abc_length_t check_length; member
1571 rdata->check_length = 0; in optimize_pass3()
1574 rdata->check_length = checked_length; in optimize_pass3()
1769 if (insn_dat[i].u.rdata.check_length > UINT32_MAX) { in generate_insn_code()
1778 } else if (insn_dat[i].u.rdata.check_length > 0) { in generate_insn_code()
1784 insn_dat[i].u.rdata.check_length); in generate_insn_code()
/dports/science/py-OpenMC/openmc-0.12.2/openmc/
H A Dcmfd.py25 from .checkvalue import (check_type, check_length, check_value,
182 check_length('CMFD mesh lower_left', lower_left, 2, 3)
189 check_length('CMFD mesh upper_right', upper_right, 2, 3)
196 check_length('CMFD mesh dimension', dimension, 2, 3)
204 check_length('CMFD mesh width', width, 2, 3)
220 check_length('CMFD mesh albedo', albedo, 6)
243 check_length('CMFD mesh grid', grid, grid_length)
661 check_length('CMFD mesh width', cmfd_mesh.width,
669 check_length('CMFD mesh upper right', cmfd_mesh.upper_right,
757 check_length('Gauss-Seidel tolerance', gauss_seidel_tolerance, 2)
[all …]
H A Delement.py31 cv.check_length('element name', name, 1, 2)
H A Dcheckvalue.py140 def check_length(name, value, length_min, length_max=None): function
/dports/science/openmc/openmc-0.12.2/openmc/
H A Dcmfd.py25 from .checkvalue import (check_type, check_length, check_value,
182 check_length('CMFD mesh lower_left', lower_left, 2, 3)
189 check_length('CMFD mesh upper_right', upper_right, 2, 3)
196 check_length('CMFD mesh dimension', dimension, 2, 3)
204 check_length('CMFD mesh width', width, 2, 3)
220 check_length('CMFD mesh albedo', albedo, 6)
243 check_length('CMFD mesh grid', grid, grid_length)
661 check_length('CMFD mesh width', cmfd_mesh.width,
669 check_length('CMFD mesh upper right', cmfd_mesh.upper_right,
757 check_length('Gauss-Seidel tolerance', gauss_seidel_tolerance, 2)
[all …]
H A Delement.py31 cv.check_length('element name', name, 1, 2)
H A Dcheckvalue.py140 def check_length(name, value, length_min, length_max=None): function
/dports/science/py-OpenMC/openmc-0.12.2/openmc/mgxs/
H A Dgroups.py207 cv.check_length('group edges', group, 2)
/dports/science/openmc/openmc-0.12.2/openmc/mgxs/
H A Dgroups.py207 cv.check_length('group edges', group, 2)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DMathTest.cpp167 static void check_length(skiatest::Reporter* reporter, in check_length() function
459 check_length(reporter, p, SK_Scalar1); in DEF_TEST()
463 check_length(reporter, p, SK_Scalar1); in DEF_TEST()
/dports/audio/sox/sox-14.4.2/src/
H A Dformats_i.c56 uint64_t num_samples, sox_bool check_length)
79 if (check_length && ft->encoding.bits_per_sample && lsx_filelength(ft)) {

12345678910>>...19