Home
last modified time | relevance | path

Searched refs:by3 (Results 1 – 25 of 1169) sorted by relevance

12345678910>>...47

/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/open-policy-agent/opa/docs/website/node_modules/bulma/sass/elements/
H A Dimage.sass16 &.is-4by3,
18 &.is-5by3,
24 &.is-2by3,
28 &.is-1by3
39 &.is-4by3
43 &.is-5by3
55 &.is-2by3
63 &.is-1by3
/dports/www/mitmproxy/mitmproxy-7.0.4/docs/src/assets/bulma/elements/
H A Dimage.sass18 &.is-4by3,
20 &.is-5by3,
26 &.is-2by3,
30 &.is-1by3
41 &.is-4by3
45 &.is-5by3
57 &.is-2by3
65 &.is-1by3
/dports/devel/rudeconfig/rudeconfig-5.0.5/src/
H A DBase64Encoder.cpp100 unsigned char by1, by2, by3, by4, by5, by6, by7; in encode() local
114 by3 = data[i+2]; in encode()
118 by3=0; in encode()
123 by6 = ((by2 & 0xf)<<2)|( by3>>6 ); in encode()
124 by7 = by3 & 0x3f; in encode()
254 unsigned char by1,by2,by3,by4; in decode() local
260 by3 = c_decode(c3); in decode()
274 outbuffer[outlength]=( ((by2&0xf)<<4)|(by3>>2) ); in decode()
284 outbuffer[outlength]=( ((by3&0x3)<<6)|by4 ); in decode()
/dports/devel/ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp29 unsigned char by3 = 0; in encode() local
39 by3 = 0; in encode()
48 by3 = plainSeq[i+2]; in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
54 by7 = by3 & 0x3f; in encode()
128 unsigned char by3 = 0; in decode() local
159 by3 = decode(c3); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
171 retval.push_back(((by3 & 0x3) << 6) | by4); in decode()
/dports/devel/php-ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java26 int by3; in encode() local
36 by3 = 0; in encode()
45 by3 = plainSeq[i+2] & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
51 by7 = by3 & 0x3f; in encode()
121 int by3; in decode() local
153 by3 = decode(c3) & 0xff; in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
167 retval.put((byte)(((by3 & 0x3) << 6) | by4)); in decode()
/dports/devel/php-ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp29 unsigned char by3 = 0; in encode() local
39 by3 = 0; in encode()
48 by3 = plainSeq[i+2]; in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
54 by7 = by3 & 0x3f; in encode()
128 unsigned char by3 = 0; in decode() local
159 by3 = decode(c3); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
171 retval.push_back(((by3 & 0x3) << 6) | by4); in decode()
/dports/devel/ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java26 int by3; in encode() local
36 by3 = 0; in encode()
45 by3 = plainSeq[i+2] & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
51 by7 = by3 & 0x3f; in encode()
121 int by3; in decode() local
153 by3 = decode(c3) & 0xff; in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
167 retval.put((byte)(((by3 & 0x3) << 6) | by4)); in decode()
/dports/devel/py-ice37/ice-3.7.2/java-compat/src/Ice/src/main/java/IceUtilInternal/
H A DBase64.java26 int by3; in encode() local
36 by3 = 0; in encode()
45 by3 = plainSeq[i+2] & 0xff; in encode()
50 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
51 by7 = by3 & 0x3f; in encode()
121 int by3; in decode() local
153 by3 = decode(c3) & 0xff; in decode()
161 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
167 retval.put((byte)(((by3 & 0x3) << 6) | by4)); in decode()
/dports/devel/py-ice37/ice-3.7.2/cpp/src/Ice/
H A DBase64.cpp29 unsigned char by3 = 0; in encode() local
39 by3 = 0; in encode()
48 by3 = plainSeq[i+2]; in encode()
53 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in encode()
54 by7 = by3 & 0x3f; in encode()
128 unsigned char by3 = 0; in decode() local
159 by3 = decode(c3); in decode()
166 retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); in decode()
171 retval.push_back(((by3 & 0x3) << 6) | by4); in decode()
/dports/devel/ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java28 int by3; in encode() local
38 by3 = 0; in encode()
47 by3 = plainSeq[i+2] & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
53 by7 = by3 & 0x3f; in encode()
127 int by3; in decode() local
159 by3 = decode(c3) & 0xff; in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
173 retval.put((byte)(((by3 & 0x3) << 6) | by4)); in decode()
/dports/devel/php-ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java28 int by3; in encode() local
38 by3 = 0; in encode()
47 by3 = plainSeq[i+2] & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
53 by7 = by3 & 0x3f; in encode()
127 int by3; in decode() local
159 by3 = decode(c3) & 0xff; in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
173 retval.put((byte)(((by3 & 0x3) << 6) | by4)); in decode()
/dports/devel/py-ice37/ice-3.7.2/java/src/Ice/src/main/java/com/zeroc/IceUtilInternal/
H A DBase64.java28 int by3; in encode() local
38 by3 = 0; in encode()
47 by3 = plainSeq[i+2] & 0xff; in encode()
52 by6 = (((by2 & 0xf) << 2) | (by3 >> 6)) & 0xff; in encode()
53 by7 = by3 & 0x3f; in encode()
127 int by3; in decode() local
159 by3 = decode(c3) & 0xff; in decode()
167 retval.put((byte)(((by2 & 0xf) << 4) | (by3 >> 2))); in decode()
173 retval.put((byte)(((by3 & 0x3) << 6) | by4)); 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
68 ay=by3-y0-cy-by
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
154 m3=tpoint((bx2,by2),(bx3,by3),t)
159 return ((bx0,by0),m1,m4,m),(m,m5,m3,(bx3,by3))
230 ((bx0,by0),(bx1,by1),(bx2,by2),(bx3,by3)) = xxx_todo_changeme12
[all …]
/dports/www/mod_fileiri/mod_fileiri-1.15/
H A Dmod_fileiri.c124 by3, /* three bytes, normal case */ enumerator
162 /* 0xE0 */ e0, by3, by3, by3, by3, by3, by3, by3,
163 /* 0xE8 */ by3, by3, by3, by3, by3, ed, by3, by3,
188 case by3: in isUTF8()
/dports/math/gnuplot/gnuplot-5.4.1/demo/
H A Dvarcolor.dem6 by3(x) = (((int(x)%3)+1)/6.)
19 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc var fs solid, \
29 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc var, \
43 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc pal z fs solid, \
52 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc pal z, \
65 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with boxxy lc rgb var fs solid, \
73 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with xyerrorbars lc rgb var, \
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/demo/
H A Dvarcolor.dem6 by3(x) = (((int(x)%3)+1)/6.)
19 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc var fs solid, \
29 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc var, \
43 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc pal z fs solid, \
52 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc pal z, \
65 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with boxxy lc rgb var fs solid, \
73 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with xyerrorbars lc rgb var, \
/dports/math/gnuplot-lite/gnuplot-5.4.1/demo/
H A Dvarcolor.dem6 by3(x) = (((int(x)%3)+1)/6.)
19 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc var fs solid, \
29 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc var, \
43 '' using 1:(8):(by3($0)):(by4($0)):1 with boxxy lc pal z fs solid, \
52 '' using 1:(8):(by3($0)):(by4($0)):1 with xyerrorbars lc pal z, \
65 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with boxxy lc rgb var fs solid, \
73 '' using 1:(8):(by3($0)):(by4($0)):(rgbfudge($1)) with xyerrorbars lc rgb var, \
/dports/dns/dnsdist/dnsdist-1.6.1/
H A Dsodcrypto.cc315 unsigned char by1 = 0, by2 = 0, by3 = 0; in Base64Encode() local
323 by3 = vby[i + 2]; in Base64Encode()
328 by6 = ((by2 & 0xf) << 2) | (by3 >> 6); in Base64Encode()
329 by7 = by3 & 0x3f; in Base64Encode()
/dports/devel/gwenhywfar-fox16/gwenhywfar-5.6.0/src/parser/
H A Dbase64.c48 unsigned int by3; in GWEN_Base64_Encode() local
61 by3=size/3; in GWEN_Base64_Encode()
64 for (i=0; i<by3; i++) { in GWEN_Base64_Encode()
/dports/devel/gwenhywfar/gwenhywfar-5.6.0/src/parser/
H A Dbase64.c48 unsigned int by3; in GWEN_Base64_Encode() local
61 by3=size/3; in GWEN_Base64_Encode()
64 for (i=0; i<by3; i++) { in GWEN_Base64_Encode()
/dports/devel/gwenhywfar-gtk3/gwenhywfar-5.6.0/src/parser/
H A Dbase64.c48 unsigned int by3; in GWEN_Base64_Encode() local
61 by3=size/3; in GWEN_Base64_Encode()
64 for (i=0; i<by3; i++) { in GWEN_Base64_Encode()
/dports/devel/gwenhywfar-qt5/gwenhywfar-5.6.0/src/parser/
H A Dbase64.c48 unsigned int by3; in GWEN_Base64_Encode() local
61 by3=size/3; in GWEN_Base64_Encode()
64 for (i=0; i<by3; i++) { in GWEN_Base64_Encode()
/dports/devel/gwenhywfar-gtk2/gwenhywfar-5.6.0/src/parser/
H A Dbase64.c48 unsigned int by3; in GWEN_Base64_Encode() local
61 by3=size/3; in GWEN_Base64_Encode()
64 for (i=0; i<by3; i++) { in GWEN_Base64_Encode()
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxhintn1.c361 int m = bar_samples(bx3 - bx0, by3 - by0); in intersect_curve_curve_rec()
363 return intersect_curve_bar_rec(m, ka, bx3 - bx0, by3 - by0, in intersect_curve_curve_rec()
416 if (box1.p.y > by3) in intersect_curve_curve_rec()
417 box1.p.y = by3; in intersect_curve_curve_rec()
418 if (box1.q.y < by3) in intersect_curve_curve_rec()
419 box1.q.y = by3; in intersect_curve_curve_rec()
437 fixed bx23 = (bx2 + bx3) / 2, by23 = (by2 + by3) / 2; in intersect_curve_curve_rec()
446 bx0123, by0123, bx123, by123, bx23, by23, bx3, by3)) in intersect_curve_curve_rec()
452 bx0123, by0123, bx123, by123, bx23, by23, bx3, by3)) in intersect_curve_curve_rec()
476 fixed by3 = this->pole[j + 3].gy; in t1_hinter__intersect_curve_curve() local
[all …]
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxhintn1.c361 int m = bar_samples(bx3 - bx0, by3 - by0); in intersect_curve_curve_rec()
363 return intersect_curve_bar_rec(m, ka, bx3 - bx0, by3 - by0, in intersect_curve_curve_rec()
416 if (box1.p.y > by3) in intersect_curve_curve_rec()
417 box1.p.y = by3; in intersect_curve_curve_rec()
418 if (box1.q.y < by3) in intersect_curve_curve_rec()
419 box1.q.y = by3; in intersect_curve_curve_rec()
437 fixed bx23 = (bx2 + bx3) / 2, by23 = (by2 + by3) / 2; in intersect_curve_curve_rec()
446 bx0123, by0123, bx123, by123, bx23, by23, bx3, by3)) in intersect_curve_curve_rec()
452 bx0123, by0123, bx123, by123, bx23, by23, bx3, by3)) in intersect_curve_curve_rec()
476 fixed by3 = this->pole[j + 3].gy; in t1_hinter__intersect_curve_curve() local
[all …]

12345678910>>...47