Home
last modified time | relevance | path

Searched refs:rightend (Results 1 – 25 of 189) sorted by relevance

12345678

/dports/databases/pgdbf/pgdbf-0.6.2/src/
H A Dpgdbf.h365 memcpy((char *) &rightend + 7, src , 1);
368 int64_t rightend; \
369 SWAP8BYTES(rightend, wrongendcharptr) \
370 return rightend;
374 int32_t rightend; \
375 memcpy((char*) &rightend , src--, 1); \
379 return rightend;
386 return rightend;
392 return rightend; in nativeint64_t()
402 return rightend; in nativeint32_t()
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/includes/diff/
H A DRangeDifference.php47 public $rightend; variable in RangeDifference
56 * @param int $rightend
58 public function __construct( $leftstart, $leftend, $rightstart, $rightend ) { argument
63 $this->rightend = $rightend;
64 $this->rightlength = $rightend - $rightstart;
/dports/www/mediawiki137/mediawiki-1.37.1/includes/diff/
H A DRangeDifference.php47 public $rightend; variable in RangeDifference
56 * @param int $rightend
58 public function __construct( $leftstart, $leftend, $rightstart, $rightend ) { argument
63 $this->rightend = $rightend;
64 $this->rightlength = $rightend - $rightstart;
/dports/www/mediawiki135/mediawiki-1.35.5/includes/diff/
H A DRangeDifference.php47 public $rightend; variable in RangeDifference
52 public function __construct( $leftstart, $leftend, $rightstart, $rightend ) { argument
57 $this->rightend = $rightend;
58 $this->rightlength = $rightend - $rightstart;
/dports/biology/ncbi-toolkit/ncbi/algo/blast/core/
H A Dblast_itree.c104 new_node->rightend = midpt; in s_IntervalNodeInit()
108 new_node->rightend = parent_node->rightend; in s_IntervalNodeInit()
140 new_node->rightend = region_end; in s_IntervalRootNodeInit()
554 ASSERT(region_end <= nodes->rightend); in BlastIntervalTreeAddHSP()
609 nodes[root_index].rightend) / 2; in BlastIntervalTreeAddHSP()
748 nodes[root_index].rightend) / 2; in BlastIntervalTreeAddHSP()
882 ASSERT(region_end <= node->rightend); in s_MidpointTreeContainsHSP()
944 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
955 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
1209 ASSERT(region_end <= node->rightend); in BlastIntervalTreeNumRedundant()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/algo/blast/core/
H A Dblast_itree.c104 new_node->rightend =(Int4) midpt; in s_IntervalNodeInit()
108 new_node->rightend = parent_node->rightend; in s_IntervalNodeInit()
140 new_node->rightend = region_end; in s_IntervalRootNodeInit()
341 ASSERT(target_offset <= root_node->rightend); in s_MidpointTreeHasHSPEndpoint()
450 ASSERT(target_offset <= root_node->rightend); in s_IntervalTreeHasHSPEndpoint()
554 ASSERT(region_end <= nodes->rightend); in BlastIntervalTreeAddHSP()
882 ASSERT(region_end <= node->rightend); in s_MidpointTreeContainsHSP()
944 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
955 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
1209 ASSERT(region_end <= node->rightend); in BlastIntervalTreeNumRedundant()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/blast/core/
H A Dblast_itree.c104 new_node->rightend =(Int4) midpt; in s_IntervalNodeInit()
108 new_node->rightend = parent_node->rightend; in s_IntervalNodeInit()
140 new_node->rightend = region_end; in s_IntervalRootNodeInit()
341 ASSERT(target_offset <= root_node->rightend); in s_MidpointTreeHasHSPEndpoint()
450 ASSERT(target_offset <= root_node->rightend); in s_IntervalTreeHasHSPEndpoint()
554 ASSERT(region_end <= nodes->rightend); in BlastIntervalTreeAddHSP()
882 ASSERT(region_end <= node->rightend); in s_MidpointTreeContainsHSP()
944 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
955 ASSERT(region_end <= node->rightend); in BlastIntervalTreeContainsHSP()
1209 ASSERT(region_end <= node->rightend); in BlastIntervalTreeNumRedundant()
[all …]
/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Dvideo_image_frame.cc58 rightend = -1; in VideoImageFrame()
105 if (video_frame_number == videoframenumber && rightend == re) return; in set_videoframe()
108 rightend = re; in set_videoframe()
178 if (rightend < 0 ) { return; } in cut_rightend()
185 if (rightend > clip_width) { return; } in cut_rightend()
189 p = pixels + y * rowstride + rightend * 4; in cut_rightend()
191 for (x=rightend+1; x < clip_width; ++x) { in cut_rightend()
H A Dvideo_image_frame.h52 void set_videoframe (samplepos_t, int rightend = -1);
57 int get_rightend() { return rightend;} in get_rightend()
74 int rightend; variable
/dports/lang/gscheme/GScheme/examples/
H A Dqsort.scm45 (right '()) (rightend '())
56 (if (null? rightend)
59 (set! rightend right))
61 (set-cdr! rightend (list (car l)))
62 (set! rightend (cdr rightend)))))
H A Dqsort1.scm83 (right '()) (rightend '())
94 (if (null? rightend)
97 (set! rightend right))
99 (set-cdr! rightend (list (car l)))
100 (set! rightend (cdr rightend)))))
/dports/biology/avida/avida-2.12.4-src/avida-core/source/tools/
H A DtArray.h199 const int rightend = m_size < (block + 2) * blocksize ? m_size : (block + 2) * blocksize; in MergeSort() local
201 tArray result(rightend - leftstart); in MergeSort()
203 while (leftstart < leftend && rightstart < rightend) { in MergeSort()
221 while (rightstart < rightend) { in MergeSort()
229 for (int i = leftstart; i < rightend; i++) { in MergeSort()
/dports/biology/iqtree/IQ-TREE-2.0.6/tree/
H A Dmexttree.cpp194 NodeVector leftend, rightend, myleaves; in generateUniform() local
206 rightend.push_back(node); in generateUniform()
223 if ((*it)->node == rightend[index]) { in generateUniform()
232 node = rightend[index]; in generateUniform()
251 rightend.push_back(rightend[index]); in generateUniform()
254 rightend.push_back(newleaf); in generateUniform()
256 rightend[index] = newnode; in generateUniform()
/dports/biology/diamond/diamond-2.0.13/src/lib/blast/
H A Dblast_seg.cpp1953 s_Trim(SSequence* seq, int32_t* leftend, int32_t* rightend, const SegParameters* sparamsp) in s_Trim() argument
1993 *rightend = *rightend - (seq->length - rend - 1); in s_Trim()
2018 int32_t leftend, rightend; in s_SegSeq() local
2050 rightend = hii + upset - 1; in s_SegSeq()
2052 temp_seq = s_OpenWin(seq, leftend, rightend-leftend+1); in s_SegSeq()
2053 status = s_Trim(temp_seq, &leftend, &rightend, sparamsp); in s_SegSeq()
2083 seg->end = rightend + offset; in s_SegSeq()
2086 i = std::min(hii, rightend+downset); in s_SegSeq()
/dports/biology/ncbi-toolkit/ncbi/desktop/
H A Dgphdraw.h83 Int4 leftend, Int4 rightend,
88 Int4 leftend, Int4 rightend);
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/librespot-tremor-0.1.0/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/libretro-beetle_saturn/beetle-saturn-libretro-ee5b214/mednafen/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/libretro-genesis_plus_gx/Genesis-Plus-GX-7f83bc5/core/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
81 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/kodi-addon-game.libretro.genplus/game.libretro.genplus-1.7.4.15-Matrix/depends/common/genplus/core/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
81 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/kodi-addon-game.libretro.beetle-psx/game.libretro.beetle-psx-0.9.44.22-Matrix/depends/common/beetle-psx/mednafen/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/games/libretro-beetle_pce/beetle-pce-libretro-945b7a7/mednafen/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/www/firefox-esr/firefox-91.8.0/media/libtremor/lib/
H A Dtremor_window.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/audio/libtremor/tremor-562307a/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()
/dports/multimedia/bcmatroska2/bcmatroska2-0.23/mkclean/tremor/
H A Dwindow.c68 long rightend=rightbegin+rn/2; in _vorbis_apply_window() local
78 for(i=rightbegin,p=rn/2-1;i<rightend;i++,p--) in _vorbis_apply_window()

12345678