Home
last modified time | relevance | path

Searched refs:unitLength (Results 1 – 25 of 196) sorted by relevance

12345678

/dports/cad/fritzing/fritzing-app-0.9.2b/src/utils/
H A Dschematicrectconstants.cpp273 qreal width = (qCeil(textWidth / unitLength) * unitLength); in genSchematicDIP()
284 startTitle = pinLength + qCeil(topWidth / unitLength) * unitLength; in genSchematicDIP()
289 height += unitLength; in genSchematicDIP()
294 qreal dh = pinLength + qCeil(bottomWidth / unitLength) * unitLength; in genSchematicDIP()
302 height += l1 * unitLength; in genSchematicDIP()
324 qreal y = qFloor((height / 2) / unitLength) * unitLength; in genSchematicDIP()
375 if (!bus) ly += unitLength; in genSchematicDIP()
414 if (!bus) ly += unitLength; in genSchematicDIP()
421 lx = qFloor(lx / unitLength) * unitLength; in genSchematicDIP()
443 if (!bus) lx += unitLength; in genSchematicDIP()
[all …]
/dports/biology/hyphy/hyphy-2.5.33/src/core/include/
H A Ddataset_filter.h96 return theOriginalOrder.lLength / unitLength; in GetSiteCountInUnits()
103 unsigned long GetUnitLength(void) const { return unitLength; } in GetUnitLength()
219 switch (unitLength) { in CompareTwoSitesCallback()
264 site1 *= unitLength; in CompareTwoSitesCallback()
265 site2 *= unitLength; in CompareTwoSitesCallback()
270 for (int i = 0; i < unitLength; i++) { in CompareTwoSitesCallback()
276 for (int i = 0; i < this->unitLength; i++) { in CompareTwoSitesCallback()
354 unsigned char unitLength;
362 if (unitLength==1UL) { in retrieve_individual_site_from_raw_coordinates()
365 site*=unitLength; in retrieve_individual_site_from_raw_coordinates()
[all …]
/dports/graphics/sane-backends/sane-backends-1.0.32/japi/
H A DSaneOption.java124 public String unitString(double unitLength) in unitString() argument
134 if (unitLength > 9.9 && unitLength < 10.1) in unitString()
136 else if (unitLength > 25.3 && unitLength < 25.5) in unitString()
/dports/graphics/Coin/coin-Coin-4.0.0/src/elements/
H A DSoNormalElement.cpp85 const SbBool unitLength) in set() argument
97 elem->unitLength = unitLength; in set()
109 this->unitLength = FALSE; in init()
155 return this->unitLength; in areNormalsUnitLength()
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/editor/
H A DEvidenceViewer.java53 private float unitLength; field in EvidenceViewer
102 unitLength = (float)resultwidth/(float)(featEnd-featStart); in paintComponent()
112 drawSegment(g2, current_segment, unitLength, featStart, hgtNumber); in paintComponent()
175 start = (int)((start-featStart)*unitLength); in paintComponent()
176 end = (int)((end-featStart)*unitLength); in paintComponent()
194 float unitLength, int featStart, int hgtNumber) in drawSegment() argument
208 int start = (int)((startPosition-featStart)*unitLength); in drawSegment()
209 int stop = (int)((endPosition-featStart)*unitLength); in drawSegment()
251 start = (int)((start-featStart)*unitLength)+bound; in mouseClicked()
252 end = (int)((end-featStart)*unitLength)+bound; in mouseClicked()
/dports/biology/hyphy/hyphy-2.5.33/src/core/
H A Ddataset_filter.cpp52 unitLength = 0; in _DataSetFilter()
77 unitLength = copyFrom->unitLength; in CopyFilter()
362 unitLength = unit; in SetFilter()
630 data_sites_to_be_deleted.AppendRange (unitLength, index*unitLength, 1L); in FilterDeletions()
894 switch (unitLength) { in CompareTwoSites()
918 site2*=unitLength; in CompareTwoSites()
1633 if (unitLength == 1) { in Translate2Frequencies()
1668 if (unitLength == 1) { in MapStringToCharIndex()
1735 if ( unitLength==1 ) { in SetupConversion()
1765 if (unitLength==2 || unitLength==3) { in SetupConversion()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/
H A DCellLocatorUniformGrid.cxx56 vtkm::Vec3f unitLength; in Build() local
57 unitLength[0] = static_cast<vtkm::FloatDefault>(this->PointDims[0] - 1); in Build()
58 unitLength[1] = static_cast<vtkm::FloatDefault>(this->PointDims[1] - 1); in Build()
59 unitLength[2] = static_cast<vtkm::FloatDefault>(this->PointDims[2] - 1); in Build()
61 this->MaxPoint = this->Origin + spacing * unitLength; in Build()
/dports/www/kf5-khtml/khtml-5.89.0/src/svg/
H A DSVGAnimateElement.cpp54 unsigned unitLength = 0; in parseNumberValueAndUnit() local
57 unitLength = 1; in parseNumberValueAndUnit()
59 unitLength = 2; in parseNumberValueAndUnit()
61 unitLength = 3; in parseNumberValueAndUnit()
63 unitLength = 4; in parseNumberValueAndUnit()
65 String newUnit = parse.right(unitLength); in parseNumberValueAndUnit()
66 String number = parse.left(parse.length() - unitLength); in parseNumberValueAndUnit()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/utils/pairhmm/
H A DDragstrReadSTRAnalyzerTest.java192 final int unitLength = rdn.nextInt(10) + 1; in testSequenceAndMaxPeriodData() local
194 final byte[] unit = rdnDNA.nextBases(unitLength); in testSequenceAndMaxPeriodData()
195 …t = position; repeat < intendedRepeats && offset < length - unitLength; offset += unitLength, repe… in testSequenceAndMaxPeriodData()
196 … System.arraycopy(unit, 0, bases, offset, Math.min(unitLength, bases.length - offset)); in testSequenceAndMaxPeriodData()
231 final int unitLength = rdn.nextInt(MAX_PERIOD) + 1; in main()
232 …int repeatLengthInBases = (int) (unitLength * Math.round(repeatLenDist.inverseCumulativeProbabilit… in main()
236 for (int k = unitLength; k < repeatLengthInBases; k++) { in main()
237 seq[start + k] = seq[start + k % unitLength]; in main()
H A DDragstrReferenceAnalyzerTest.java122 final int unitLength = rdn.nextInt(10) + 1; in testSequenceAndMaxPeriodData() local
124 final byte[] unit = rdnDNA.nextBases(unitLength); in testSequenceAndMaxPeriodData()
125 …t = position; repeat < intendedRepeats && offset < length - unitLength; offset += unitLength, repe… in testSequenceAndMaxPeriodData()
126 … System.arraycopy(unit, 0, bases, offset, Math.min(unitLength, bases.length - offset)); in testSequenceAndMaxPeriodData()
/dports/graphics/nurbs++/nurbs++-3.0.11/examples/nurbs/
H A DtnurbsS.cpp87 cerr << "normal(0,0) = " << surf.normal(0,0).unitLength() << endl ; in main()
88 cerr << "normal(0,1) = " << surf.normal(0,1).unitLength() << endl ; in main()
89 cerr << "normal(1,0) = " << surf.normal(1,0).unitLength() << endl ; in main()
90 cerr << "normal(1,1) = " << surf.normal(1,1).unitLength() << endl ; in main()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/Headers/
H A DRangeHeaderValue.cs154 int unitLength = HttpRuleParser.GetTokenLength(input, startIndex); in GetRangeLength()
156 if (unitLength == 0) in GetRangeLength()
162 result._unit = input.Substring(startIndex, unitLength); in GetRangeLength()
163 int current = startIndex + unitLength; in GetRangeLength()
H A DContentRangeHeaderValue.cs214 int unitLength = HttpRuleParser.GetTokenLength(input, startIndex); in GetContentRangeLength()
216 if (unitLength == 0) in GetContentRangeLength()
221 string unit = input.Substring(startIndex, unitLength); in GetContentRangeLength()
222 int current = startIndex + unitLength; in GetContentRangeLength()
/dports/x11-toolkits/qt5-virtualkeyboard/kde-qtvirtualkeyboard-5.15.2p4/src/plugins/lipi-toolkit/3rdparty/lipi-toolkit/src/reco/shaperec/featureextractor/substroke/
H A DSubStrokeShapeFeatureExtractor.cpp560 float unitLength = 0.0; // length of each substroke after resampling in extractFeaturesFromSubStroke() local
587 if(unitLength < SUBSTROKES_LENGTH_REJECT_THRESHOLD) in extractFeaturesFromSubStroke()
590 unitLength = 0.0; in extractFeaturesFromSubStroke()
605 outLength.push_back(unitLength); in extractFeaturesFromSubStroke()
608 unitLength /= (NUMBER_OF_SLOPE); in extractFeaturesFromSubStroke()
628 while(cumulativeDistance < unitLength) in extractFeaturesFromSubStroke()
644 segmentRatioRight = cumulativeDistance - unitLength; in extractFeaturesFromSubStroke()
684 unitLength = 0.0; in extractFeaturesFromSubStroke()
706 unitLength += pointDistance; in extractFeaturesFromSubStroke()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/xmlpatterns/acceltree/
H A Dqcompressedwhitespace.cpp136 const int unitLength = qMin(wsLen, int(MaxCharCount)); in compress() local
137 wsLen -= unitLength; in compress()
139 ushort resultCP = toCompressedChar(c, unitLength); in compress()
/dports/textproc/qt5-xmlpatterns/kde-qtxmlpatterns-5.15.2p2/src/xmlpatterns/acceltree/
H A Dqcompressedwhitespace.cpp134 const int unitLength = qMin(wsLen, int(MaxCharCount)); in compress() local
135 wsLen -= unitLength; in compress()
137 ushort resultCP = toCompressedChar(c, unitLength); in compress()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/dragstr/
H A DDragstrLocusUnitTest.java57 final int unitLength = rdn.nextInt(10) + 1; in randomLoci() local
60 …Locus locus = DragstrLocus.make(chrIdx, start, (byte) unitLength, (short)(repeatCount * unitLength in randomLoci()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/aruco/misc/pattern_generator/
H A DMarkerPrinter.py160 unitLength = markerLength / (float)(markerSize + borderBits * 2)
184 context.set_line_width(unitLength * 0.1)
188 …context.move_to(originX + unitLength * (mx + borderBits ), originY + unitLength * (my + borderB…
189 …context.line_to(originX + unitLength * (mx + borderBits + 1), originY + unitLength * (my + borderB…
192 …context.move_to(originX + unitLength * (mx + borderBits ), originY + unitLength * (my + borderB…
193 …context.line_to(originX + unitLength * (mx + borderBits ), originY + unitLength * (my + borderB…
202 originX + unitLength * (mx + borderBits),
203 originY + unitLength * (my + borderBits),
204 unitLength, unitLength)
228 …context.move_to (originX + unitLength * (sx + borderBits), originY + unitLength * (sy + borderBits…
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/svg/
H A DSVGAnimateElement.cpp68 unsigned unitLength = 0; in parseNumberValueAndUnit() local
71 unitLength = 1; in parseNumberValueAndUnit()
73 unitLength = 2; in parseNumberValueAndUnit()
75 unitLength = 3; in parseNumberValueAndUnit()
77 unitLength = 4; in parseNumberValueAndUnit()
78 String newUnit = parse.right(unitLength); in parseNumberValueAndUnit()
79 String number = parse.left(parse.length() - unitLength); in parseNumberValueAndUnit()
/dports/math/R/R-4.1.2/src/library/grid/src/
H A Dunit.c101 int unitLength(SEXP u) { in unitLength() function
164 n = unitLength(data); in pureNullUnitValue()
172 n = unitLength(data); in pureNullUnitValue()
182 n = unitLength(data); in pureNullUnitValue()
921 n = unitLength(data); in transformY()
931 n = unitLength(data); in transformY()
943 n = unitLength(data); in transformY()
1001 n = unitLength(data); in transformWidth()
1011 n = unitLength(data); in transformWidth()
1023 n = unitLength(data); in transformWidth()
[all …]
/dports/math/libRmath/R-4.1.1/src/library/grid/src/
H A Dunit.c101 int unitLength(SEXP u) { in unitLength() function
164 n = unitLength(data); in pureNullUnitValue()
172 n = unitLength(data); in pureNullUnitValue()
182 n = unitLength(data); in pureNullUnitValue()
921 n = unitLength(data); in transformY()
931 n = unitLength(data); in transformY()
943 n = unitLength(data); in transformY()
1001 n = unitLength(data); in transformWidth()
1011 n = unitLength(data); in transformWidth()
1023 n = unitLength(data); in transformWidth()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/debug/dwarf/
H A Dunit.go44 len, _ := b.unitLength()
63 n, u.is64 = b.unitLength()
/dports/lang/gcc8/gcc-8.5.0/libgo/go/debug/dwarf/
H A Dunit.go44 len, _ := b.unitLength()
63 n, u.is64 = b.unitLength()
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/debug/dwarf/
H A Dunit.go44 len, _ := b.unitLength()
63 n, u.is64 = b.unitLength()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/debug/dwarf/
H A Dunit.go44 len, _ := b.unitLength()
63 n, u.is64 = b.unitLength()

12345678