Home
last modified time | relevance | path

Searched refs:intsize (Results 1 – 25 of 772) sorted by relevance

12345678910>>...31

/dports/math/cocoalib/CoCoALib-0.99712/src/AlgebraicCore/TmpFactorDir/
H A Djalloc.c36 int intsize, i; in jmalloc_fn() local
39 intsize = 1+sz/sizeof(int); in jmalloc_fn()
40 ans = (int*)malloc((intsize+2*MARGIN)*sizeof(int)); in jmalloc_fn()
43 for (i=MARGIN; i < MARGIN+intsize; i++) ans[i] = -999999999; in jmalloc_fn()
44 for (i=MARGIN+intsize; i < intsize+2*MARGIN; i++) ans[i] = 1234567890; in jmalloc_fn()
73 int sz, intsize, i; in CHECKMARGINS() local
90 intsize = 1+sz/sizeof(int); in CHECKMARGINS()
91 for (i=MARGIN+intsize; i < intsize+2*MARGIN; i++) in CHECKMARGINS()
99 int sz, intsize, i; in jfree() local
105 intsize = 1+sz/sizeof(int); in jfree()
[all …]
/dports/math/giacxcas/CoCoALib-0.99700/src/AlgebraicCore/TmpFactorDir/
H A Djalloc.c36 int intsize, i; in jmalloc_fn() local
39 intsize = 1+sz/sizeof(int); in jmalloc_fn()
40 ans = (int*)malloc((intsize+2*MARGIN)*sizeof(int)); in jmalloc_fn()
43 for (i=MARGIN; i < MARGIN+intsize; i++) ans[i] = -999999999; in jmalloc_fn()
44 for (i=MARGIN+intsize; i < intsize+2*MARGIN; i++) ans[i] = 1234567890; in jmalloc_fn()
73 int sz, intsize, i; in CHECKMARGINS() local
90 intsize = 1+sz/sizeof(int); in CHECKMARGINS()
91 for (i=MARGIN+intsize; i < intsize+2*MARGIN; i++) in CHECKMARGINS()
99 int sz, intsize, i; in jfree() local
105 intsize = 1+sz/sizeof(int); in jfree()
[all …]
/dports/math/giacxcas/CoCoALib-0.99700/src/AlgebraicCore/
H A Ddebug_new.C141 << " (extd block is " << block << "-" << block+(intsize+2*MARGIN)-1 in msg_alloc()
174 size_t intsize, i; in CHECKMARGINS() local
190 intsize = 1+sz/sizeof(int); in CHECKMARGINS()
191 for (i=MARGIN+intsize; i < intsize+2*MARGIN; ++i) in CHECKMARGINS()
214 size_t intsize = 1+sz/sizeof(int); in new() local
215 int* block = (int*)malloc((intsize+2*MARGIN)*sizeof(int)); in new()
219 for (i=MARGIN; i < MARGIN+intsize; ++i) block[i] = -999999999; in new()
220 for (i=MARGIN+intsize; i < intsize+2*MARGIN; ++i) block[i] = 1234567890; in new()
224 msg_alloc(cerr, block, intsize, sz); in new()
246 size_t intsize = 1+sz/sizeof(int); in delete() local
[all …]
/dports/math/cocoalib/CoCoALib-0.99712/src/AlgebraicCore/
H A Ddebug_new.C141 << " (extd block is " << block << "-" << block+(intsize+2*MARGIN)-1 in msg_alloc()
174 size_t intsize, i; in CHECKMARGINS() local
190 intsize = 1+sz/sizeof(int); in CHECKMARGINS()
191 for (i=MARGIN+intsize; i < intsize+2*MARGIN; ++i) in CHECKMARGINS()
214 size_t intsize = 1+sz/sizeof(int); in new() local
215 int* block = (int*)malloc((intsize+2*MARGIN)*sizeof(int)); in new()
219 for (i=MARGIN; i < MARGIN+intsize; ++i) block[i] = -999999999; in new()
220 for (i=MARGIN+intsize; i < intsize+2*MARGIN; ++i) block[i] = 1234567890; in new()
224 msg_alloc(cerr, block, intsize, sz); in new()
246 size_t intsize = 1+sz/sizeof(int); in delete() local
[all …]
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/dynarmic/src/frontend/A64/translate/impl/
H A Dfloating_point_conversion_integer.cpp12 const size_t intsize = sf ? 64 : 32; in SCVTF_float_int() local
18 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_int()
35 const size_t intsize = sf ? 64 : 32; in UCVTF_float_int() local
66 const size_t intsize = sf ? 64 : 32; in FMOV_float_gen() local
116 const size_t intsize = sf ? 64 : 32; in FloaingPointConvertSignedInteger() local
125 if (intsize == 32) { in FloaingPointConvertSignedInteger()
127 } else if (intsize == 64) { in FloaingPointConvertSignedInteger()
133 v.X(intsize, Rd, intval); in FloaingPointConvertSignedInteger()
147 if (intsize == 32) { in FloaingPointConvertUnsignedInteger()
149 } else if (intsize == 64) { in FloaingPointConvertUnsignedInteger()
[all …]
H A Dfloating_point_conversion_fixed_point.cpp11 const size_t intsize = sf ? 64 : 32; in SCVTF_float_fix() local
22 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_fix()
38 const size_t intsize = sf ? 64 : 32; in UCVTF_float_fix() local
65 const size_t intsize = sf ? 64 : 32; in FCVTZS_float_fix() local
77 if (intsize == 32) { in FCVTZS_float_fix()
79 } else if (intsize == 64) { in FCVTZS_float_fix()
85 X(intsize, Rd, intval); in FCVTZS_float_fix()
90 const size_t intsize = sf ? 64 : 32; in FCVTZU_float_fix() local
102 if (intsize == 32) { in FCVTZU_float_fix()
104 } else if (intsize == 64) { in FCVTZU_float_fix()
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/dynarmic/src/frontend/A64/translate/impl/
H A Dfloating_point_conversion_integer.cpp12 const size_t intsize = sf ? 64 : 32; in SCVTF_float_int() local
18 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_int()
35 const size_t intsize = sf ? 64 : 32; in UCVTF_float_int() local
66 const size_t intsize = sf ? 64 : 32; in FMOV_float_gen() local
116 const size_t intsize = sf ? 64 : 32; in FloaingPointConvertSignedInteger() local
125 if (intsize == 32) { in FloaingPointConvertSignedInteger()
127 } else if (intsize == 64) { in FloaingPointConvertSignedInteger()
133 v.X(intsize, Rd, intval); in FloaingPointConvertSignedInteger()
147 if (intsize == 32) { in FloaingPointConvertUnsignedInteger()
149 } else if (intsize == 64) { in FloaingPointConvertUnsignedInteger()
[all …]
H A Dfloating_point_conversion_fixed_point.cpp11 const size_t intsize = sf ? 64 : 32; in SCVTF_float_fix() local
22 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_fix()
38 const size_t intsize = sf ? 64 : 32; in UCVTF_float_fix() local
65 const size_t intsize = sf ? 64 : 32; in FCVTZS_float_fix() local
77 if (intsize == 32) { in FCVTZS_float_fix()
79 } else if (intsize == 64) { in FCVTZS_float_fix()
85 X(intsize, Rd, intval); in FCVTZS_float_fix()
90 const size_t intsize = sf ? 64 : 32; in FCVTZU_float_fix() local
102 if (intsize == 32) { in FCVTZU_float_fix()
104 } else if (intsize == 64) { in FCVTZU_float_fix()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/dynarmic/src/frontend/A64/translate/impl/
H A Dfloating_point_conversion_integer.cpp12 const size_t intsize = sf ? 64 : 32; in SCVTF_float_int() local
18 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_int()
35 const size_t intsize = sf ? 64 : 32; in UCVTF_float_int() local
66 const size_t intsize = sf ? 64 : 32; in FMOV_float_gen() local
116 const size_t intsize = sf ? 64 : 32; in FloaingPointConvertSignedInteger() local
125 if (intsize == 32) { in FloaingPointConvertSignedInteger()
127 } else if (intsize == 64) { in FloaingPointConvertSignedInteger()
133 v.X(intsize, Rd, intval); in FloaingPointConvertSignedInteger()
147 if (intsize == 32) { in FloaingPointConvertUnsignedInteger()
149 } else if (intsize == 64) { in FloaingPointConvertUnsignedInteger()
[all …]
H A Dfloating_point_conversion_fixed_point.cpp11 const size_t intsize = sf ? 64 : 32; in SCVTF_float_fix() local
22 const IR::U32U64 intval = X(intsize, Rn); in SCVTF_float_fix()
38 const size_t intsize = sf ? 64 : 32; in UCVTF_float_fix() local
65 const size_t intsize = sf ? 64 : 32; in FCVTZS_float_fix() local
77 if (intsize == 32) { in FCVTZS_float_fix()
79 } else if (intsize == 64) { in FCVTZS_float_fix()
85 X(intsize, Rd, intval); in FCVTZS_float_fix()
90 const size_t intsize = sf ? 64 : 32; in FCVTZU_float_fix() local
102 if (intsize == 32) { in FCVTZU_float_fix()
104 } else if (intsize == 64) { in FCVTZU_float_fix()
[all …]
/dports/lang/perl5.34/perl-5.34.0/dist/Storable/t/
H A Dfile_magic.t38 intsize => 4,
52 intsize => 4,
78 intsize => 4,
104 intsize => 4,
132 intsize => 4,
149 intsize => 4,
178 intsize => 4,
207 intsize => 4,
236 intsize => 4,
265 intsize => 4,
[all …]
/dports/lang/perl5.30/perl-5.30.3/dist/Storable/t/
H A Dfile_magic.t38 intsize => 4,
52 intsize => 4,
78 intsize => 4,
104 intsize => 4,
132 intsize => 4,
149 intsize => 4,
178 intsize => 4,
207 intsize => 4,
236 intsize => 4,
265 intsize => 4,
[all …]
/dports/lang/perl5.32/perl-5.32.1/dist/Storable/t/
H A Dfile_magic.t38 intsize => 4,
52 intsize => 4,
78 intsize => 4,
104 intsize => 4,
132 intsize => 4,
149 intsize => 4,
178 intsize => 4,
207 intsize => 4,
236 intsize => 4,
265 intsize => 4,
[all …]
/dports/devel/p5-Storable/Storable-3.25/t/
H A Dfile_magic.t38 intsize => 4,
52 intsize => 4,
78 intsize => 4,
104 intsize => 4,
132 intsize => 4,
149 intsize => 4,
178 intsize => 4,
207 intsize => 4,
236 intsize => 4,
265 intsize => 4,
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/dist/Storable/t/
H A Dfile_magic.t38 intsize => 4,
52 intsize => 4,
78 intsize => 4,
104 intsize => 4,
132 intsize => 4,
149 intsize => 4,
178 intsize => 4,
207 intsize => 4,
236 intsize => 4,
265 intsize => 4,
[all …]
/dports/www/squid/squid-4.15/lib/snmplib/
H A Dasn1.c130 if (intsize != sizeof(int)) { in asn_parse_int()
148 if (asn_length > intsize) { in asn_parse_int()
275 && intsize > 1) { in asn_build_int()
276 intsize--; in asn_build_int()
290 *datalength -= intsize; in asn_build_int()
293 while (intsize--) { in asn_build_int()
336 intsize++; in asn_build_unsigned_int()
348 intsize--; in asn_build_unsigned_int()
360 *datalength -= intsize; in asn_build_unsigned_int()
363 intsize--; in asn_build_unsigned_int()
[all …]
/dports/science/grib_api/grib_api-1.28.0-Source/examples/F90/
H A Dread_from_file.f9032 integer :: size,intsize local
33 parameter (intsize=100000,size=intsize*4)
37 integer(kind=4),dimension(intsize) :: buffer
66 integer :: size,intsize local
67 parameter (intsize=100000,size=intsize*4)
71 integer(kind=4),dimension(intsize) :: buffer
/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/util/
H A Dnumeric.py104 def to_sortable(numtype, intsize, signed, x): argument
107 x += (1 << intsize - 1)
113 def from_sortable(numtype, intsize, signed, x): argument
116 x -= (1 << intsize - 1)
143 def split_ranges(intsize, step, start, end): argument
163 not_mask = ~mask & ((1 << intsize + 1) - 1)
167 if shift + step >= intsize or nextstart > nextend:
184 assert intsize in (8, 16, 32, 64)
195 end = 2 ** intsize - 1
197 end = to_sortable(numtype, intsize, signed, end)
[all …]
/dports/science/eccodes/eccodes-2.23.0-Source/examples/F90/
H A Dgrib_read_from_file.f9032 integer :: size, intsize local
33 parameter(intsize=100000, size=intsize*4)
37 integer(kind=4), dimension(intsize) :: buffer
69 integer :: size, intsize local
70 parameter(intsize=100000, size=intsize*4)
74 integer(kind=4), dimension(intsize) :: buffer
/dports/net-mgmt/net-snmp/net-snmp-5.9/snmplib/
H A Dasn1.c776 intsize--; in asn_build_int()
788 while (intsize--) { in asn_build_int()
852 intsize++; in asn_build_unsigned_int()
865 intsize--; in asn_build_unsigned_int()
876 intsize--; in asn_build_unsigned_int()
882 while (intsize--) { in asn_build_unsigned_int()
2131 intsize = 8; in asn_build_unsigned_int64()
2144 intsize++; in asn_build_unsigned_int64()
2219 intsize--; in asn_build_unsigned_int64()
2408 intsize = 8; in asn_build_signed_int64()
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/tools/
H A Dparse_xml2skinny_dissector.py61 self.intsize = 0
250 self.intsize += field.intsize
300 self.intsize = 0
412 self.intsize = 0
540 self.intsize = 0
628 self.intsize = 6
679 self.intsize = 0
705 self.intsize = 4
730 self.intsize = 4
765 self.intsize = 0
[all …]
/dports/net/wireshark/wireshark-3.6.1/tools/
H A Dparse_xml2skinny_dissector.py61 self.intsize = 0
250 self.intsize += field.intsize
300 self.intsize = 0
412 self.intsize = 0
540 self.intsize = 0
628 self.intsize = 6
679 self.intsize = 0
705 self.intsize = 4
730 self.intsize = 4
765 self.intsize = 0
[all …]
/dports/net/tshark-lite/wireshark-3.6.1/tools/
H A Dparse_xml2skinny_dissector.py61 self.intsize = 0
250 self.intsize += field.intsize
300 self.intsize = 0
412 self.intsize = 0
540 self.intsize = 0
628 self.intsize = 6
679 self.intsize = 0
705 self.intsize = 4
730 self.intsize = 4
765 self.intsize = 0
[all …]
/dports/net/tshark/wireshark-3.6.1/tools/
H A Dparse_xml2skinny_dissector.py61 self.intsize = 0
250 self.intsize += field.intsize
300 self.intsize = 0
412 self.intsize = 0
540 self.intsize = 0
628 self.intsize = 6
679 self.intsize = 0
705 self.intsize = 4
730 self.intsize = 4
765 self.intsize = 0
[all …]
/dports/net/mpich/mpich-3.4.3/test/mpi/f77/datatype/
H A Dhindexed_blockf.f9 integer errs, ierr, i, intsize
27 call mpi_type_size( MPI_INTEGER, intsize, ierr )
30 aintv(2) = 3 * intsize
41 if (aintv(2) .ne. 3*intsize) then
52 if (aintv(2) .ne. intsize) then
55 & ' expected ', intsize
60 aintv(i) = (i-1) * 3 * intsize
66 aint = 3 * intsize
74 aintv(i) = (i-1) * 3 * intsize

12345678910>>...31