Home
last modified time | relevance | path

Searched refs:sLong (Results 1 – 25 of 170) sorted by relevance

1234567

/dports/math/saga/saga-8.1.3/saga-gis/src/saga_core/saga_api/
H A Dtable_value.h135 virtual sLong asLong (void) const = 0;
183 virtual bool Set_Value (sLong Value) in Set_Value()
260 virtual bool Set_Value (sLong Value) in Set_Value()
322 virtual bool Set_Value (sLong Value) in Set_Value()
343 virtual sLong asLong (void) const { return( (sLong)m_Value ); } in asLong()
417 virtual bool Set_Value (sLong Value) in Set_Value()
487 return( Set_Value((sLong)Value) ); in Set_Value()
490 virtual bool Set_Value (sLong Value) in Set_Value()
504 return( Set_Value((sLong)Value) ); in Set_Value()
533 sLong m_Value;
[all …]
H A Dgrids.h185 sLong Get_Data_Count (void);
186 sLong Get_NoData_Count (void);
273 virtual bool Set_Max_Samples (sLong Max_Samples);
378 …virtual sLong asLong (sLong i, bool bScaled = true) const { return( SG_ROUND_TO_S…
383 virtual double asDouble(sLong i, bool bScaled = true) const
387 return( m_pGrids[z]->asDouble((sLong)(i % m_pGrids[0]->Get_NCells()), bScaled) );
406 virtual void Set_Value(sLong i, double Value, bool bScaled = true)
410 m_pGrids[z]->Set_Value((sLong)(i % m_pGrids[0]->Get_NCells()), Value, bScaled);
434 sLong Get_Sorted (sLong Position, bool bDown = true, bool bCheckNoData = true)
449 bool Get_Sorted (sLong Position, sLong &i, bool bDown = true, bool bCheckNoData = true)
[all …]
H A Dgrid.h236 sLong Get_NCells (void) const { return( m_NCells ); } in Get_NCells()
355 sLong Get_IndexFromRowCol (int x, int y) const in Get_IndexFromRowCol()
359 return( (sLong)y * m_NX + x ); in Get_IndexFromRowCol()
383 sLong m_NCells;
439 sLong m_Offset;
572 sLong Get_Data_Count (void);
573 sLong Get_NoData_Count (void);
658 sLong Get_Sorted (sLong Position, bool bDown = true, bool bCheckNoData = true)
673 bool Get_Sorted (sLong Position, sLong &i, bool bDown = true, bool bCheckNoData = true)
756 …virtual sLong asLong ( sLong i, bool bScaled = true) const { return( SG_ROUND_TO_SLONG(as…
[all …]
H A Ddatetime.h98 CSG_TimeSpan(const sLong &diff) { m_span = diff ; } in CSG_TimeSpan()
99 CSG_TimeSpan(double hours) { m_span = (sLong)(1000*60*60 * hours); } in CSG_TimeSpan()
100 CSG_TimeSpan(long hours, long min = 0, sLong sec = 0, sLong msec = 0)
106 static CSG_TimeSpan Milliseconds (sLong ms ) { return( CSG_TimeSpan(0, 0, 0, ms) ); } in Milliseconds()
107 static CSG_TimeSpan Seconds (sLong sec ) { return( CSG_TimeSpan(0, 0, sec ) ); } in Seconds()
163 sLong Get_Seconds (void) const { return( m_span / 1000l ); } in Get_Seconds()
164 sLong Get_Milliseconds (void) const { return( m_span ); } in Get_Milliseconds()
165 sLong Get_Value (void) const { return( m_span ); } in Get_Value()
172 sLong m_span;
248 CSG_DateTime & Set_Unix_Time (sLong Seconds);
[all …]
H A Dgrid_memory.cpp121 static sLong gSG_Grid_Cache_Threshold = 0;
139 sLong SG_Grid_Cache_Get_Threshold(void) in SG_Grid_Cache_Get_Threshold()
280 sLong nBytes = m_System.Get_NCells() * Get_nValueBytes(); in _Cache_Check()
310 bool CSG_Grid::_Cache_Create(const CSG_String &File, TSG_Data_Type Data_Type, sLong Offset, bool bS… in _Cache_Create()
430 case SG_DATATYPE_Long : (*(sLong *)Buffer) = SG_ROUND_TO_SLONG(Value); break; in _Cache_Set_Value()
464 case SG_DATATYPE_Long : return( (double)(*(sLong *)Buffer) ); in _Cache_Get_Value()
H A Ddataobject.h145 SAGA_API_DLL_EXPORT bool SG_DataObject_Set_Max_Samples (sLong Max_Samples);
148 SAGA_API_DLL_EXPORT sLong SG_DataObject_Get_Max_Samples (void);
252 virtual bool Set_Max_Samples (sLong Max_Samples);
253 sLong Get_Max_Samples (void) const { return( m_Max_Samples ); } in Get_Max_Samples()
284 sLong m_Max_Samples;
H A Dgrid.cpp612 n += d; sLong v = asInt(ix, iy);\
983 double Value = asDouble((sLong)i, false); in On_Update()
1048 sLong CSG_Grid::Get_Data_Count(void) in Get_Data_Count()
1053 sLong CSG_Grid::Get_NoData_Count(void) in Get_NoData_Count()
1070 sLong n = (sLong)(Quantile * (Get_Data_Count() - 1)); in Get_Quantile()
1127 sLong nCells = nx * ny; in Get_Statistics()
1216 sLong nCells = nx * ny; in Get_Histogram()
1267 …if( m_Index == NULL && (m_Index = (sLong *)SG_Malloc((size_t)Get_NCells() * sizeof(sLong))) == NUL… in _Set_Index()
1275 const sLong M = 7; in _Set_Index()
1277 sLong i, j, k, l, ir, n, *istack, jstack, nstack, indxt, itemp, nData; in _Set_Index()
[all …]
H A Dmat_tools.cpp646 sLong i = (sLong)r; r -= i; in Get_Quantile()
726 return( (sLong)Index ); in Get_IndexOfMinimum()
750 return( (sLong)Index ); in Get_IndexOfMaximum()
762 sLong n = 0; in Get_nValues_Above()
764 for(sLong i=0; i<Get_Count(); i++) in Get_nValues_Above()
784 sLong n = 0; in Get_nValues_Below()
786 for(sLong i=0; i<Get_Count(); i++) in Get_nValues_Below()
1388 bool CSG_Histogram::_Update(sLong nElements) in _Update()
1544 Add_Value(Values[(sLong)i]); in Create()
1622 double Value = pGrid->asDouble((sLong)i); in Create()
[all …]
H A Dtable.h164 sLong asLong (int iField) const;
165 sLong asLong (const CSG_String &Field) const;
283sLong Get_N (int iField) const { return( _Stats_Update(iField) ? m_Field_Stats[iField]->G… in Get_N()
308 …virtual CSG_Table_Record * Get_Record (sLong Index) const { return( Index >= 0 && Index < m_nR… in Get_Record()
312 …virtual CSG_Table_Record & operator [] (sLong Index) const { return( *Get_Record_byIndex(Index…
316 int Get_Index (sLong Index) const { return( Get_Index((int)Index) ); } in Get_Index()
318 …CSG_Table_Record * Get_Record_byIndex (sLong Index) const { return( Get_Record_byIndex((int)In… in Get_Record_byIndex()
H A Dgrids.cpp1184 …if( m_Index == NULL && (m_Index = (sLong *)SG_Malloc((size_t)Get_NCells() * sizeof(sLong))) == NUL… in _Set_Index()
1192 const sLong M = 7; in _Set_Index()
1218 istack = (sLong *)SG_Malloc((size_t)nstack * sizeof(sLong)); in _Set_Index()
1356 double Value = asDouble((sLong)i, false); in On_Update()
1370 for(sLong i=0; i<Get_NCells(); i++) in On_Update()
1417 sLong CSG_Grids::Get_Data_Count(void) in Get_Data_Count()
1422 sLong CSG_Grids::Get_NoData_Count(void) in Get_NoData_Count()
1439 sLong n = (sLong)(Quantile * (Get_Data_Count() - 1)); in Get_Quantile()
1496 sLong nCells = nx * ny; in Get_Statistics()
1543 bool CSG_Grids::Set_Max_Samples(sLong Max_Samples) in Set_Max_Samples()
[all …]
H A Ddataobject.cpp117 static sLong gSG_DataObject_Max_Samples = 0;
120 bool SG_DataObject_Set_Max_Samples (sLong Max_Samples) in SG_DataObject_Set_Max_Samples()
133 sLong SG_DataObject_Get_Max_Samples (void) in SG_DataObject_Get_Max_Samples()
442 bool CSG_Data_Object::Set_Max_Samples(sLong Max_Samples) in Set_Max_Samples()
/dports/misc/p5-I18N-Charset/I18N-Charset-1.394/lib/I18N/
H A DCharset.pm1004 foreach my $sLong (@asFname)
1006 next unless -f "$Unicode::Map8::MAPS_DIR/$sLong";
1007 $sLong =~ s/\.(?:bin|txt)$//;
1009 push @asMap8Debug, " DDD looking for $sLong in iana table...\n";
1011 if (defined (my $sTemp = &iana_charset_name($sLong)))
1019 push @asMap8Debug, " DDD had to use a dummy mib ($iMIB) for U::Map8==$sLong==\n";
1020 $hsMIBofLongname{$sLong} = $iMIB;
1025 push @asMap8Debug, " DDD found IANA name $sFound ($iMIB) for Map8 entry $sLong\n";
1028 push @asMap8Debug, " DDD map $iMIB to $sLong in MIBtoMAP8...\n";
1029 $MIBtoMAP8{$iMIB} = $sLong;
[all …]
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_segmentation/
H A Dconnected_components.cpp135 sLong iIdentifier = 0; in On_Execute()
136 std::queue<sLong> qFIFO; in On_Execute()
139 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in On_Execute()
154 sLong nc = qFIFO.front(); in On_Execute()
H A Dslic.cpp313 sLong ID = pPolygon->asInt(0); in Get_Polygons()
427 for(sLong Cell=0; Cell<Get_NCells(); Cell++) in Get_Grids()
429 sLong ID = Segments.asLong(Cell); in Get_Grids()
560 sLong i = Segments.asInt(x, y); in Get_Segments()
575 for(sLong i=0; i<m_Centroid->Get_NCells(); i++) in Get_Segments()
750 for(sLong Cell=0; Cell<Get_NCells(); Cell++) in Get_Generalized()
780 sLong open = Segment.asLong(Expanded); in Get_Generalized()
807 for(sLong i=0; i<Get_NCells(); i++) // restore base 0 indexing of the regions in Get_Generalized()
/dports/editors/libreoffice/libreoffice-7.2.6.2/xmlsecurity/test_docs/tools/httpserv/src/httpserv/
H A DMain.java70 if (currentOpt.sLong.equals("--accept")) { in parseOptions()
86 if (s.equals(o.sLong) || s.equals(o.sShort)) { in parseOptions()
89 if (o.sLong.equals("--help")) { in parseOptions()
180 sLong = _sLong; in Option()
184 String sLong; field in Option
/dports/editors/libreoffice6/libreoffice-6.4.7.2/xmlsecurity/test_docs/tools/httpserv/src/httpserv/
H A DMain.java70 if (currentOpt.sLong.equals("--accept")) { in parseOptions()
86 if (s.equals(o.sLong) || s.equals(o.sShort)) { in parseOptions()
89 if (o.sLong.equals("--help")) { in parseOptions()
180 sLong = _sLong; in Option()
184 String sLong; field in Option
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/statistics/statistics_grid/
H A Dgrid_pca.h85 bool is_NoData (sLong iCell);
86 double Get_Value (sLong iCell, int iFeature);
/dports/lang/solidity/solidity_0.8.11/test/libsolidity/semanticTests/array/
H A Dbytes_to_fixed_bytes_simple.sol3 bytes sLong = "abcdefghabcdefghabcdefghabcdefgh";
15 return bytes32(sLong);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/terrain_analysis/ta_morphometry/
H A DHypsometry.cpp248 sLong n, *Cells_Count; in Calculate_A()
290 Cells_Count = (sLong *)SG_Calloc(nClasses + 1, sizeof(sLong)); in Calculate_A()
337 sLong n, nMin, nMax, nStep, nRange; in Calculate_B()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-struct/gen-swift/test/fixtures/complex_struct/
H A DMyStruct.java84 this.sLong = sLong; in MyStruct()
116 this.sLong = null; in MyStruct()
347 this.sLong = sLong; in setSLong()
403 this.sLong = other.sLong; in Builder()
436 this.sLong, in build()
729 helper.add("sLong", sLong); in toString()
772 Objects.equals(sLong, other.sLong) && in equals()
806 sLong, in hashCode()
1176 Set<Long> sLong; in read0() local
1183 sLong.add(_value1); in read0()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-struct/gen-java/
H A DMyStruct.java84 public Set<Long> sLong; field in MyStruct
249 Set<Long> sLong, in MyStruct()
284 this.sLong = sLong; in MyStruct()
315 private Set<Long> sLong; field in MyStruct.Builder
452 this.sLong = sLong; in setSLong()
588 this.sLong = TBaseHelper.deepCopy(other.sLong); in MyStruct()
1184 return this.sLong; in getSLong()
1188 this.sLong = sLong; in setSLong()
1193 this.sLong = null; in unsetSLong()
1203 this.sLong = null; in setSLongIsSet()
[all …]
/dports/math/saga/saga-8.1.3/saga-gis/src/saga_core/saga_gui/
H A Dwksp_layer_classify.cpp594 pGrid->Get_Sorted((sLong)(dClass * (iClass + 1.0)), x, y, false, false); in Metric2EqualElements()
697 if( !pGrid->is_NoData((sLong)i) ) in _Histogram_Update()
699 m_Histogram += Get_Class(pGrid->asDouble((sLong)i)); in _Histogram_Update()
715 …for(sLong i=0; i<pGrid->Get_NCells() && PROGRESSBAR_Set_Position((double)i, (double)pGrid->Get_NCe… in _Histogram_Update()
737 if( !pGrids->is_NoData((sLong)i) ) in _Histogram_Update()
739 m_Histogram += Get_Class(pGrids->asDouble((sLong)i)); in _Histogram_Update()
755 …for(sLong i=0; i<pGrids->Get_NCells() && PROGRESSBAR_Set_Position((double)i, (double)pGrids->Get_N… in _Histogram_Update()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/terrain_analysis/ta_hydrology/
H A DFlow_Length.cpp152 for(sLong iCell=0; iCell<Get_NCells() && Set_Progress_NCells(iCell); iCell++) in On_Execute()
181 for(sLong iCell=0; iCell<Get_NCells() && Set_Progress_NCells(iCell); iCell++) in On_Execute()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/grid/grid_analysis/
H A DGrid_Iterative_Truncation.cpp161 sLong iCells = 0; in On_Execute()
202 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in On_Execute()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/simulation/sim_hydrology/
H A Ddiffuse_pollution_risk.cpp275 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in Set_Flow()
371 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in Set_Delivery_Index()
390 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in Set_Delivery_Index()
441 for(sLong n=0; n<Get_NCells() && Set_Progress_NCells(n); n++) in Get_Risk_Diffuse()

1234567