Home
last modified time | relevance | path

Searched refs:by2 (Results 1 – 25 of 950) sorted by relevance

12345678910>>...38

/dports/databases/grass7/grass-7.8.6/lib/vector/Vlib/
H A De_intersect.c260 if (by1 > by2) in segment_intersection_2d_e()
283 *y2 = by2; in segment_intersection_2d_e()
420 ay2 = by2; in segment_intersection_2d_tol()
421 by2 = t; in segment_intersection_2d_tol()
488 by2 = t; in segment_intersection_2d_tol()
554 if (by2 > ay1 && by2 < ay2) { /* b2 in a */ in segment_intersection_2d_tol()
557 *y1 = by2; in segment_intersection_2d_tol()
565 *y2 = by2; in segment_intersection_2d_tol()
619 by1 = by2; in segment_intersection_2d_tol()
620 by2 = t; in segment_intersection_2d_tol()
[all …]
/dports/databases/grass7/grass-7.8.6/lib/vector/diglib/
H A Dlinecros.c82 by1 = by2; in dig_test_for_intersection()
83 by2 = t; in dig_test_for_intersection()
114 ay2 = by2; in dig_test_for_intersection()
115 by2 = t; in dig_test_for_intersection()
142 by1 = by2; in dig_test_for_intersection()
143 by2 = t; in dig_test_for_intersection()
145 if (ay1 > by2) in dig_test_for_intersection()
210 by1 = by2; in dig_find_intersection()
211 by2 = t; in dig_find_intersection()
242 ay2 = by2; in dig_find_intersection()
[all …]
/dports/www/mod_fileiri/mod_fileiri-1.15/
H A Dmod_fileiri.c122 by2, /* two bytes */ enumerator
158 /* 0xC0 */ ill, ill, by2, by2, by2, by2, by2, by2,
159 /* 0xC8 */ by2, by2, by2, by2, by2, by2, by2, by2,
160 /* 0xD0 */ by2, by2, by2, by2, by2, by2, by2, by2,
161 /* 0xD8 */ by2, by2, by2, by2, by2, by2, by2, by2,
180 case by2: in isUTF8()
/dports/devel/rudeconfig/rudeconfig-5.0.5/src/
H A DBase64Encoder.cpp100 unsigned char by1, by2, by3, by4, by5, by6, by7; in encode() local
105 by2 = data[i+1]; in encode()
109 by2=0; in encode()
122 by5 = ((by1 & 0x3)<<4)|( by2>>4 ); in encode()
123 by6 = ((by2 & 0xf)<<2)|( by3>>6 ); in encode()
254 unsigned char by1,by2,by3,by4; in decode() local
258 by2 = c_decode(c2); in decode()
266 outbuffer[outlength]=( (by1<<2)|(by2>>4) ); in decode()
274 outbuffer[outlength]=( ((by2&0xf)<<4)|(by3>>2) ); in decode()
/dports/databases/grass7/grass-7.8.6/lib/gis/
H A Dintersect.c74 #define D ((ax2-ax1)*(by1-by2) - (ay2-ay1)*(bx1-bx2))
75 #define D1 ((bx1-ax1)*(by1-by2) - (by1-ay1)*(bx1-bx2))
81 double bx1, double by1, double bx2, double by2, in G_intersect_line_segments() argument
91 if (bx1 > bx2 || (bx1 == bx2 && by1 > by2)) { in G_intersect_line_segments()
93 SWAP(by1, by2) in G_intersect_line_segments()
116 if (ay1 > by2) { in G_intersect_line_segments()
129 if (ay1 == by2) { in G_intersect_line_segments()
141 if (ay1 > by1 && ay1 < by2) { in G_intersect_line_segments()
/dports/devel/R-cran-broom/broom/man/
H A Dtidy.epi.2by2.Rd3 \name{tidy.epi.2by2}
4 \alias{tidy.epi.2by2}
6 \title{Tidy a(n) epi.2by2 object}
8 \method{tidy}{epi.2by2}(x, parameters = c("moa", "stat"), ...)
11 \item{x}{A \code{epi.2by2} object produced by a call to \code{\link[epiR:epi.2by2]{epiR::epi.2by2()…
36 …n \code{massoc} or \code{massoc.detail} when \code{\link[epiR:epi.2by2]{epiR::epi.2by2()}} is call…
49 fit <- epi.2by2(
61 \code{\link[=tidy]{tidy()}}, \code{\link[epiR:epi.2by2]{epiR::epi.2by2()}}
/dports/devel/ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp28 unsigned char by2 = 0; in encode() local
38 by2 = 0; in encode()
43 by2 = plainSeq[i+1]; in encode()
52 by5 = ((by1 & 0x3) << 4) | (by2 >> 4); in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
127 unsigned char by2 = 0; in decode() local
158 by2 = decode(c2); in decode()
162 retval.push_back((by1 << 2) | (by2 >> 4)); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
/dports/devel/php-ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java25 int by2; in encode() local
35 by2 = 0; in encode()
40 by2 = plainSeq[i+1] & 0xff; in encode()
49 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
120 int by2; in decode() local
152 by2 = decode(c2) & 0xff; in decode()
156 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/devel/php-ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp28 unsigned char by2 = 0; in encode() local
38 by2 = 0; in encode()
43 by2 = plainSeq[i+1]; in encode()
52 by5 = ((by1 & 0x3) << 4) | (by2 >> 4); in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
127 unsigned char by2 = 0; in decode() local
158 by2 = decode(c2); in decode()
162 retval.push_back((by1 << 2) | (by2 >> 4)); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
/dports/devel/ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java25 int by2; in encode() local
35 by2 = 0; in encode()
40 by2 = plainSeq[i+1] & 0xff; in encode()
49 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
120 int by2; in decode() local
152 by2 = decode(c2) & 0xff; in decode()
156 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/devel/py-ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java25 int by2; in encode() local
35 by2 = 0; in encode()
40 by2 = plainSeq[i+1] & 0xff; in encode()
49 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
120 int by2; in decode() local
152 by2 = decode(c2) & 0xff; in decode()
156 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/devel/py-ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp28 unsigned char by2 = 0; in encode() local
38 by2 = 0; in encode()
43 by2 = plainSeq[i+1]; in encode()
52 by5 = ((by1 & 0x3) << 4) | (by2 >> 4); in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
127 unsigned char by2 = 0; in decode() local
158 by2 = decode(c2); in decode()
162 retval.push_back((by1 << 2) | (by2 >> 4)); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
/dports/net/tightvnc/vnc_unixsrc/Xvnc/programs/Xserver/mfb/
H A Dmfbfillrct.c131 int x1, y1, x2, y2, bx2, by2; local
151 by2 = (int) prect->y + (int) prect->height;
152 if (by2 > y2)
153 by2 = y2;
154 pboxClipped->y2 = by2;
166 int x1, y1, x2, y2, bx2, by2; local
188 by2 = (int) prect->y + (int) prect->height;
189 if (by2 > y2)
190 by2 = y2;
191 box.y2 = by2;
/dports/devel/ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java27 int by2; in encode() local
37 by2 = 0; in encode()
42 by2 = plainSeq[i+1] & 0xff; in encode()
51 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
126 int by2; in decode() local
158 by2 = decode(c2) & 0xff; in decode()
162 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/devel/php-ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java27 int by2; in encode() local
37 by2 = 0; in encode()
42 by2 = plainSeq[i+1] & 0xff; in encode()
51 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
126 int by2; in decode() local
158 by2 = decode(c2) & 0xff; in decode()
162 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/devel/py-ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java27 int by2; in encode() local
37 by2 = 0; in encode()
42 by2 = plainSeq[i+1] & 0xff; in encode()
51 by5 = (((by1 & 0x3) << 4) | (by2 >> 4)) & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
126 int by2; in decode() local
158 by2 = decode(c2) & 0xff; in decode()
162 retval.put((byte)((by1 << 2) | (by2 >> 4))); in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
/dports/cad/k40-whisperer/K40_Whisperer-0.58_src/
H A Dbezmisc.py60 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme
67 by=3*(by2-by1)-cy
76 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme2
106 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme3
113 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme4
120 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme5
151 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme9
153 m2=tpoint((bx1,by1),(bx2,by2),t)
154 m3=tpoint((bx2,by2),(bx3,by3),t)
230 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme12
[all …]
/dports/x11-toolkits/tix/Tix8.4.3/generic/
H A DtixGrFmt.c283 int * by2;
288 *by2 = y2;
316 int by2;
342 if (i == by2) {
364 int by2;
409 if (j == by2) {
488 &bx1, &by1, &bx2, &by2);
513 if (_by2 > by2) {
514 _by2 = by2;
641 if (_by2 > by2) {
[all …]
/dports/math/R/R-4.1.2/src/library/base/R/
H A Ddates.R283 if(length(by2) > 2L || length(by2) < 1L)
285 valid <- pmatch(by2[length(by2)],
290 if (length(by2) == 2L) by <- by * as.integer(by2[1L])
292 by <- if(length(by2) == 2L) as.integer(by2[1L]) else 1
350 by2 <- strsplit(breaks, " ", fixed = TRUE)[[1L]] functionVar
351 if(length(by2) > 2L || length(by2) < 1L)
354 pmatch(by2[length(by2)],
371 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
385 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
401 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
[all …]
/dports/math/libRmath/R-4.1.1/src/library/base/R/
H A Ddates.R283 if(length(by2) > 2L || length(by2) < 1L)
285 valid <- pmatch(by2[length(by2)],
290 if (length(by2) == 2L) by <- by * as.integer(by2[1L])
292 by <- if(length(by2) == 2L) as.integer(by2[1L]) else 1
350 by2 <- strsplit(breaks, " ", fixed = TRUE)[[1L]] functionVar
351 if(length(by2) > 2L || length(by2) < 1L)
354 pmatch(by2[length(by2)],
371 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
385 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
401 step <- if(length(by2) == 2L) as.integer(by2[1L]) else 1L
[all …]
/dports/audio/ganv/ganv-1.8.0/src/
H A Dfdgl.hpp102 const double bx2, const double by2) in rect_distance() argument
114 } else if (ay1 >= by2) { // Bottom left in rect_distance()
116 const double dy = ay1 - by2; in rect_distance()
117 vec->y = ay1 - by2; in rect_distance()
129 } else if (ay1 >= by2) { // Bottom right in rect_distance()
131 const double dy = ay1 - by2; in rect_distance()
132 vec->y = ay1 - by2; in rect_distance()
140 } else if (ay1 >= by2) { // Bottom in rect_distance()
141 vec->y = ay1 - by2; in rect_distance()
142 return ay1 - by2; in rect_distance()
/dports/x11-toolkits/p5-Tk/Tk-804.035/pTk/mTk/tixGeneric/
H A DtixGrFmt.c281 int * by2;
286 *by2 = y2;
314 int by2;
340 if (i == by2) {
362 int by2;
407 if (j == by2) {
486 &bx1, &by1, &bx2, &by2);
501 if (_by2 > by2) {
502 _by2 = by2;
629 if (_by2 > by2) {
[all …]
/dports/net/tightvnc/vnc_unixsrc/Xvnc/programs/Xserver/cfb/
H A Dcfbfillrct.c209 int x1, y1, x2, y2, bx2, by2; local
229 by2 = (int) prect->y + (int) prect->height;
230 if (by2 > y2)
231 by2 = y2;
232 pboxClipped->y2 = by2;
244 int x1, y1, x2, y2, bx2, by2; local
266 by2 = (int) prect->y + (int) prect->height;
267 if (by2 > y2)
268 by2 = y2;
269 box.y2 = by2;
/dports/finance/R-cran-timeDate/timeDate/R/
H A DtimeDate-Sequence.R169 by2 <- c(if (length(grep("[0-9]", by, perl = TRUE))) ## vector
172 if(length(by2) > 2L || length(by2) < 1L)
174 valid <- pmatch(by2[length(by2)],
180 if (length(by2) == 2L) by <- by * as.integer(by2[1L])
182 by <- if(length(by2) == 2L) as.integer(by2[1L]) else 1
/dports/devel/R-cran-gdata/gdata/man/
H A Dgdata-defunct.Rd8 aggregate.table(x, by1, by2, FUN=mean, ...)
14 \item{by2}{ second grouping factor. }
20 \code{aggregate.table(x, by1, by2, FUN=mean, ...)} should be replacede
21 by \code{tapply(X=x, INDEX=list(by1, by2), FUN=FUN, ...)}.

12345678910>>...38