Home
last modified time | relevance | path

Searched refs:max_offset (Results 1 – 25 of 2059) sorted by relevance

12345678910>>...83

/dports/sysutils/testdisk/testdisk-7.1/src/
H A Dfile_tiff_le.c116 uint64_t max_offset=0; in parse_strip_le() local
141 if(max_offset < tmp) in parse_strip_le()
142 max_offset=tmp; in parse_strip_le()
146 return max_offset; in parse_strip_le()
173 uint64_t max_offset=0; in tiff_le_makernote() local
226 max_offset=new_offset; in tiff_le_makernote()
259 return max_offset; in tiff_le_makernote()
370 max_offset=tmp; in header_check_tiff_le()
465 max_offset=tmp; in header_check_tiff_le()
473 max_offset=tmp; in header_check_tiff_le()
[all …]
H A Dfile_tiff_be.c115 uint64_t max_offset=0; in parse_strip_be() local
140 if(max_offset < tmp) in parse_strip_be()
141 max_offset=tmp; in parse_strip_be()
145 return max_offset; in parse_strip_be()
172 uint64_t max_offset=0; in tiff_be_makernote() local
225 max_offset=new_offset; in tiff_be_makernote()
258 return max_offset; in tiff_be_makernote()
337 max_offset=new_offset; in header_check_tiff_be()
457 max_offset=tmp; in header_check_tiff_be()
465 max_offset=tmp; in header_check_tiff_be()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/rpl/rgrl/
H A Drgrl_matcher_pseudo.hxx424 if ( max_offset == 0 ) max_offset = 1; in match_mapped_region()
553 for ( int off1 = -max_offset, i=0; off1 <= max_offset; ++off1, ++i ) in match_mapped_region()
554 for ( int off2 = -max_offset, j=0; off2 <= max_offset; ++off2, ++j ) in match_mapped_region()
589 if ( best_off1 == max_offset || best_off1 == -max_offset ) in match_mapped_region()
605 if ( sub_offset1 < -max_offset ) sub_offset1 = -max_offset; in match_mapped_region()
606 if ( sub_offset1 > max_offset ) sub_offset1 = max_offset; in match_mapped_region()
608 << -max_offset << " , " << max_offset << " ]\n"); in match_mapped_region()
620 if ( best_off2 == max_offset || best_off2 == -max_offset ) in match_mapped_region()
634 if ( sub_offset2 < -max_offset ) sub_offset2 = -max_offset; in match_mapped_region()
635 if ( sub_offset2 > max_offset ) sub_offset2 = max_offset; in match_mapped_region()
[all …]
H A Drgrl_matcher_pseudo_3d.hxx406 if ( max_offset == 0 ) max_offset = 1; in match_mapped_region()
538 for ( int off1 = -max_offset, i=0; off1 <= max_offset; ++off1, ++i ) in match_mapped_region()
539 for ( int off2 = -max_offset, j=0; off2 <= max_offset; ++off2, ++j ) in match_mapped_region()
574 if ( best_off1 == max_offset || best_off1 == -max_offset ) in match_mapped_region()
590 if ( sub_offset1 < -max_offset ) sub_offset1 = -max_offset; in match_mapped_region()
591 if ( sub_offset1 > max_offset ) sub_offset1 = max_offset; in match_mapped_region()
593 << -max_offset << " , " << max_offset << " ]\n" ); in match_mapped_region()
605 if ( best_off2 == max_offset || best_off2 == -max_offset ) in match_mapped_region()
619 if ( sub_offset2 < -max_offset ) sub_offset2 = -max_offset; in match_mapped_region()
620 if ( sub_offset2 > max_offset ) sub_offset2 = max_offset; in match_mapped_region()
[all …]
H A Drgrl_matcher_pseudo_int_3d.hxx689 idx1 = deriv_loc1 + max_offset; in slide_window()
690 idx2 = best_off2 + max_offset; in slide_window()
700 if ( best_off1 == max_offset || best_off1 == -max_offset ) in slide_window()
716 if ( sub_offset1 < -max_offset ) sub_offset1 = -max_offset; in slide_window()
717 if ( sub_offset1 > max_offset ) sub_offset1 = max_offset; in slide_window()
719 << -max_offset << " , " << max_offset << " ]" << std::endl ); in slide_window()
729 idx1 = best_off1 + max_offset; in slide_window()
731 if ( best_off2 == max_offset || best_off2 == -max_offset ) in slide_window()
745 if ( sub_offset2 < -max_offset ) sub_offset2 = -max_offset; in slide_window()
746 if ( sub_offset2 > max_offset ) sub_offset2 = max_offset; in slide_window()
[all …]
/dports/chinese/libime/libime-1.0.9/src/libime/core/kenlm/lm/
H A Dbhiksha.cc32 uint8_t ChopBits(uint64_t max_offset, uint64_t max_next, const Config &config) { in ChopBits() argument
39 - max_offset * static_cast<int64_t>(chop); /* savings in bits*/ in ChopBits()
48 std::size_t ArrayCount(uint64_t max_offset, uint64_t max_next, const Config &config) { in ArrayCount() argument
50 uint8_t chopping = ChopBits(max_offset, max_next, config); in ArrayCount()
55 uint64_t ArrayBhiksha::Size(uint64_t max_offset, uint64_t max_next, const Config &config) { in Size() argument
56 …return sizeof(uint64_t) * (1 /* header */ + ArrayCount(max_offset, max_next, config)) + 7 /* 8-byt… in Size()
59 uint8_t ArrayBhiksha::InlineBits(uint64_t max_offset, uint64_t max_next, const Config &config) { in InlineBits() argument
60 return util::RequiredBits(max_next) - ChopBits(max_offset, max_next, config); in InlineBits()
74 ArrayBhiksha::ArrayBhiksha(void *base, uint64_t max_offset, uint64_t max_next, const Config &config) in ArrayBhiksha() argument
75 : next_inline_(util::BitsMask::ByBits(InlineBits(max_offset, max_next, config))), in ArrayBhiksha()
[all …]
/dports/net/mpich/mpich-3.4.3/test/mpi/coll/
H A Dallred3.c29 static int max_offset = 0; variable
48 assert(offset1 < max_offset); in uop()
49 assert(offset2 < max_offset); in uop()
55 assert(offset1 < max_offset); in uop()
79 assert(i < max_offset); in initMat()
88 assert(offset < max_offset); in initMat()
92 assert(offset < max_offset); in initMat()
96 assert(offset < max_offset); in initMat()
126 assert(offset < max_offset); in isIdentity()
136 assert(offset < max_offset); in isIdentity()
[all …]
/dports/net/mpich2/mpich2-1.5/test/mpi/coll/
H A Dallred3.c29 static int max_offset = 0; variable
48 assert(offset1 < max_offset); in uop()
49 assert(offset2 < max_offset); in uop()
55 assert(offset1 < max_offset); in uop()
79 assert(i < max_offset); in initMat()
88 assert(offset < max_offset); in initMat()
93 assert(offset < max_offset); in initMat()
98 assert(offset < max_offset); in initMat()
129 assert(offset < max_offset); in isIdentity()
140 assert(offset < max_offset); in isIdentity()
[all …]
/dports/net/mpich/mpich-3.4.3/test/mpi/cxx/coll/
H A Duallredx.cxx37 static int max_offset = 0; variable
62 assert(offset1 < max_offset); in uop()
86 assert(i < max_offset); in initMat()
95 assert(offset < max_offset); in initMat()
99 assert(offset < max_offset); in initMat()
103 assert(offset < max_offset); in initMat()
134 assert(offset < max_offset); in isIdentity()
144 assert(offset < max_offset); in isIdentity()
185 max_offset = count * size * size; in main()
186 buf = new int[max_offset]; in main()
[all …]
/dports/net/mpich2/mpich2-1.5/test/mpi/cxx/coll/
H A Duallredx.cxx37 static int max_offset = 0; variable
55 assert(offset1 < max_offset); in uop()
62 assert(offset1 < max_offset); in uop()
86 assert(i < max_offset); in initMat()
95 assert(offset < max_offset); in initMat()
100 assert(offset < max_offset); in initMat()
105 assert(offset < max_offset); in initMat()
136 assert(offset < max_offset); in isIdentity()
146 assert(offset < max_offset); in isIdentity()
187 buf = new int[max_offset]; in main()
[all …]
/dports/graphics/exifprobe/exifprobe-2.0.1/
H A Dmain.c67 unsigned long max_offset = 0UL; in main() local
91 max_offset = 0L; in main()
199 max_offset = process_tiff_ifd(inptr,header->file_marker, in main()
202 if(max_offset > 0L) in main()
223 if(max_offset > 0L) in main()
235 if(max_offset > 0L) in main()
246 max_offset = in main()
251 if(max_offset > 0L) in main()
265 if(max_offset > 0L) in main()
279 max_offset = process_x3f(inptr,header,Start_offset,summary_entry, in main()
[all …]
H A Dprocess.c128 if(max_offset && (cur_ifd_offset > max_offset)) in process_tiff_ifd()
944 if(max_offset && (max_ifd_offset > max_offset)) in process_tiff_ifd()
968 if(max_offset && (thn_offset > max_offset)) in process_tiff_ifd()
1185 if(max_offset && (summary_entry->offset > max_offset)) in process_tiff_ifd()
1753 if(max_offset && (exif_offset > max_offset)) in process_exif_ifd()
1981 if(max_offset && (value_offset > max_offset)) in process_exif_ifd()
1993 if(max_offset && (max_value_offset > max_offset)) in process_exif_ifd()
2066 if(max_offset && (entry_offset > max_offset)) in process_subifd()
2173 if(max_offset && (gps_offset > max_offset)) in process_gps_ifd()
2247 if(max_offset && (max_gps_offset > max_offset)) in process_gps_ifd()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/intrusive/test/
H A Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
209 static const unsigned char max_offset = pointer::max_offset; member in bounded_allocator
217 for (i = 0; i < max_offset && m_in_use[i]; ++i); in allocate()
218 assert(i < max_offset); in allocate()
245 return m_in_use.size() == max_offset; in inited()
[all …]
/dports/devel/libfirm/libfirm-1.21.0/ir/be/
H A Dbeemitter_binary.c71 fragment->max_offset = UINT_MAX; in alloc_fragment()
128 unsigned max_offset = 0; in determine_jumpsize_iteration() local
138 max_offset = align(max_offset, alignment); in determine_jumpsize_iteration()
144 fragment->max_offset = max_offset; in determine_jumpsize_iteration()
148 max_offset += fragment->len; in determine_jumpsize_iteration()
151 max_offset += fragment->jumpsize_max; in determine_jumpsize_iteration()
163 first_fragment->max_offset = 0; in determine_offsets()
/dports/graphics/tesseract/tesseract-5.0.0/src/arch/
H A Ddotproductsse.cpp35 int max_offset = n - 4; in DotProductSSE() local
40 if (offset <= max_offset) { in DotProductSSE()
50 while (offset <= max_offset) { in DotProductSSE()
63 while (offset <= max_offset) { in DotProductSSE()
94 int max_offset = n - 2;
99 if (offset <= max_offset) {
109 while (offset <= max_offset) {
122 while (offset <= max_offset) {
/dports/databases/percona56-client/percona-server-5.6.51-91.0/storage/tokudb/PerconaFT/ft/tests/
H A Dsubblock-test-index.cc57 size_t max_offset = 0; in test_sub_block_index() local
62 max_offset += size; in test_sub_block_index()
65 int offset_to_sub_block[max_offset]; in test_sub_block_index()
66 for (int i = 0; i < (int) max_offset; i++) in test_sub_block_index()
80 for (size_t offset = 0; offset < max_offset; offset++) { in test_sub_block_index()
88 r = get_sub_block_index(n_sub_blocks, sub_block, max_offset); in test_sub_block_index()
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/storage/tokudb/PerconaFT/ft/tests/
H A Dsubblock-test-index.cc57 size_t max_offset = 0; in test_sub_block_index() local
62 max_offset += size; in test_sub_block_index()
65 int offset_to_sub_block[max_offset]; in test_sub_block_index()
66 for (int i = 0; i < (int) max_offset; i++) in test_sub_block_index()
80 for (size_t offset = 0; offset < max_offset; offset++) { in test_sub_block_index()
88 r = get_sub_block_index(n_sub_blocks, sub_block, max_offset); in test_sub_block_index()

12345678910>>...83