Home
last modified time | relevance | path

Searched refs:window_max (Results 1 – 25 of 47) sorted by relevance

12

/dports/graphics/pfstools/pfstools-2.1.0/src/octave/
H A Dpfsview_rgb.m1 function pfsview_rgb( R, G, B, window_min, window_max )
7 ## window_max - maksimum luminance to show (in log10 units)
21 if( exist( "window_min" ) && exist( "window_max" ) )
22 minmax_window = sprintf( "--window_min %g --window_max %g ", \
23 window_min, window_max );
/dports/security/silktools/silk-3.19.1/src/rwcount/
H A Drwcount.c51 || ((toor_t) >= bins.window_max))
114 bins.window_max = bins.end_time; in initBins()
168 bins.window_max = (sktime_t)start_time + bin_count * bins.size; in initBins()
213 extension_bins = 1 + (t - bins.window_max) / bins.size; in reallocBins()
269 bins.window_max = bins.window_min + bins.size * bins.count; in reallocBins()
440 extra_bins += 1 + ((eTime - bins.window_max) / bins.size); in meanAdd()
514 end_bin = GET_BIN(bins.window_max); in durationAdd()
925 && (bins.window_max >= bins.end_time)) in printBins()
995 (int64_t)bins.window_max, sktimestamp(bins.window_max, 0)); in printBins()
H A Drwcount.h68 sktime_t window_max; member
/dports/biology/sra-tools/sra-tools-2.11.0/tools/sra-pileup/
H A Dpileup_stat.c126 uint32_t alignment_count, window_size, window_max, seq_len_accu_count; member
151 strand->window_max = INIT_WINDOW_SIZE; in prepare_strand()
200 if ( w > strand->window_max ) in on_new_ref_position_strand()
201 strand->window_max = w; in on_new_ref_position_strand()
204 if ( strand->window_size >= strand->window_max ) in on_new_ref_position_strand()
/dports/graphics/pfstools/pfstools-2.1.0/src/pfsview/
H A Dmain.cpp58 PFSViewMainWin::PFSViewMainWin( float window_min, float window_max ): in PFSViewMainWin() argument
352 if( window_min < window_max ) in PFSViewMainWin()
353 lumRange->setRangeWindowMinMax( window_min, window_max ); in PFSViewMainWin()
770 float window_min = 0, window_max = 0; in main() local
791 window_max = (float)strtod( argv[i], &checkPtr ); in main()
793 window_max < 100 && window_max > -100, in main()
802 errorCheck( window_min <= window_max, "window_min must be less than window_max" ); in main()
807 PFSViewMainWin pfsViewMW( window_min, window_max ); in main()
H A Dmain.h57 PFSViewMainWin( float window_min, float window_max );
/dports/science/minc2/minc-release-2.2.00/conversion/gcomserver/
H A Dgyro_to_minc.h141 double window_max; member
184 double window_max; member
H A Dgyro_read.c314 file_info->window_max = in get_file_info()
474 general_info->window_max = file_info->window_max; in get_file_info()
645 if (general_info->window_max < file_info->window_max) in get_file_info()
646 general_info->window_max = file_info->window_max; in get_file_info()
/dports/science/minc2/minc-release-2.2.00/conversion/dicomserver/
H A Dsiemens_dicom_to_minc.h100 double window_max; member
144 double window_max; member
H A Dsiemens_dicom_read.c236 general_info->window_max = file_info->window_max; in get_file_info()
316 if (general_info->window_max < file_info->window_max) in get_file_info()
317 general_info->window_max = file_info->window_max; in get_file_info()
404 file_info->window_max = window_centre + window_width; in get_intensity_info()
/dports/science/minc2/minc-release-2.2.00/conversion/dicomserver_sonata/
H A Dsiemens_dicom_to_minc.h124 double window_max; member
217 double window_max; member
H A Dsiemens_dicom_read.c305 general_info->window_max = file_info->window_max; in get_file_info()
399 if (general_info->window_max < file_info->window_max) in get_file_info()
400 general_info->window_max = file_info->window_max; in get_file_info()
545 file_info->window_max = window_centre + window_width / 2.0; in get_intensity_info()
/dports/science/minc2/minc-release-2.2.00/conversion/dcm2mnc/
H A Ddicom_to_minc.h164 double window_max; member
251 double window_max; member
H A Ddicom_read.c483 gi_ptr->window_max = fi_ptr->window_max; in init_general_info()
514 gi_ptr->window_min, gi_ptr->window_max); in init_general_info()
774 if (gi_ptr->window_max < fi_ptr->window_max) in get_file_info()
775 gi_ptr->window_max = fi_ptr->window_max; in get_file_info()
1006 fi_ptr->window_max = window_centre + window_width / 2.0; in get_intensity_info()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/amd/display/modules/inc/
H A Dmod_stats.h70 unsigned int window_max,
H A Dmod_freesync.h143 unsigned int *window_min, unsigned int *window_max,
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/amd/display/modules/inc/
H A Dmod_stats.h70 unsigned int window_max,
H A Dmod_freesync.h143 unsigned int *window_min, unsigned int *window_max,
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/amd/display/modules/inc/
H A Dmod_stats.h70 unsigned int window_max,
H A Dmod_freesync.h143 unsigned int *window_min, unsigned int *window_max,
/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/filter/
H A Dbit_width_reduction_filter.cc395 window_max = std::numeric_limits<T>::lowest(); in compute_bits_required()
400 window_max = std::max(window_max, input_value); in compute_bits_required()
406 T range = window_max - window_min; in compute_bits_required()
/dports/lang/micropython/micropython-1.17/shared/runtime/
H A Dpyexec.c192 uint16_t window_max; member
222 reader->window_remain = reader->window_max; in mp_reader_stdin_readbyte()
251 reader_stdin->window_max = window; in mp_reader_new_stdin()
/dports/biology/plink/plink-ng-79b2df8c/2.0/
H A Dplink2_ld.cc1212 uint32_t window_max = 0; in LdPruneSubcontigSplitAll() local
1215 window_max = 1; in LdPruneSubcontigSplitAll()
1264 ++window_max; in LdPruneSubcontigSplitAll()
1290 if (window_max < prune_window_size) { in LdPruneSubcontigSplitAll()
1291 if (chr_variant_ct > window_max) { in LdPruneSubcontigSplitAll()
1292 window_max = chr_variant_ct; in LdPruneSubcontigSplitAll()
1298 if (window_max > prune_window_size) { in LdPruneSubcontigSplitAll()
1299 window_max = prune_window_size; in LdPruneSubcontigSplitAll()
1305 *window_max_ptr = window_max; in LdPruneSubcontigSplitAll()
1624 uint32_t window_max; in LdPrune() local
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/testing/selftests/powerpc/nx-gzip/
H A Dgunz_test.c96 const int window_max = 1<<15; variable
919 history_len = (total_out > window_max) ? window_max : total_out; in decompress_file()
/dports/multimedia/libv4l/linux-5.13-rc2/tools/testing/selftests/powerpc/nx-gzip/
H A Dgunz_test.c96 const int window_max = 1<<15; variable
919 history_len = (total_out > window_max) ? window_max : total_out; in decompress_file()

12