Home
last modified time | relevance | path

Searched +full:30 +full:w (Results 1 – 25 of 1056) sorted by relevance

12345678910>>...43

/freebsd/usr.bin/jot/tests/
H A Dregress.sh6 REGRESSION_TEST(`x', `jot -w "%X" -s , 100 1 200')
23 REGRESSION_TEST(`hhhh2', `jot 30 20 160 2')
24 REGRESSION_TEST(`hhhd2', `jot 30 20 160 -')
25 REGRESSION_TEST(`hhdh2', `jot 30 20 - 2')
26 REGRESSION_TEST(`hhdd2', `jot 30 20 - -')
27 REGRESSION_TEST(`hdhh2', `jot 30 - 160 2')
28 REGRESSION_TEST(`hdhd2', `jot 30 - 160 -')
29 REGRESSION_TEST(`hddh2', `jot 30 - - 2')
30 REGRESSION_TEST(`hddd2', `jot 30 - - -')
38 REGRESSION_TEST(`xaa', `jot -w xa%c 26 a')
[all …]
/freebsd/contrib/bearssl/src/ec/
H A Dec_c25519_m31.c49 uint64_t w;
52 w = x[u];
53 j = 30 * (int)u;
56 w <<= k;
61 tmp[39 - k - j] |= (unsigned char)w;
62 w >>= 8;
91 * 30-bit words in little-endian order. The final "partial" word is
111 acc = b >> (30 - acc_len); in le8_to_le30()
119 * Convert an integer (30-bit words, little-endian) to unsigned
133 uint32_t w; in le30_to_le8() local
[all …]
H A Dec_p256_m31.c49 * 30-bit words in little-endian order. The final "partial" word is
69 acc = b >> (30 - acc_len); in be8_to_le30()
77 * Convert an integer (30-bit words, little-endian) to unsigned
91 uint32_t w; in le30_to_be8() local
93 w = *src ++; in le30_to_be8()
94 dst[len] = (unsigned char)(acc | (w << acc_len)); in le30_to_be8()
95 acc = w >> (8 - acc_len); in le30_to_be8()
107 * nine 30-bit words, for values up to 2^270-1. Result is encoded over
108 * 18 words of 30 bits each.
117 * 10376293531797946367 = 9 * (2^30-1)^2 + 9663676406 in mul9()
[all …]
/freebsd/lib/libmd/
H A Dsha1c.c145 uint32_t w[16]; in sha1_block() local
156 w[i] = be32dec(p + 4*i); in sha1_block()
161 t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K0; in sha1_block()
164 c = b << 30 | b >> 32 - 30; in sha1_block()
171 tmp = w[i - 3 & 0xf] ^ w[i - 8 & 0xf] ^ w[i - 14 & 0xf] ^ w[i & 0xf]; in sha1_block()
172 w[i & 0xf] = tmp << 1 | tmp >> 32 - 1; in sha1_block()
175 t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K0; in sha1_block()
178 c = b << 30 | b >> 32 - 30; in sha1_block()
185 tmp = w[i - 3 & 0xf] ^ w[i - 8 & 0xf] ^ w[i - 14 & 0xf] ^ w[i & 0xf]; in sha1_block()
186 w[i & 0xf] = tmp << 1 | tmp >> 32 - 1; in sha1_block()
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dsha1.c42 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
43 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
44 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
45 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
46 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
80 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in SHA1Transform()
/freebsd/contrib/ldns/
H A Dsha1.c38 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
39 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
40 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
41 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
42 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
78 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in ldns_sha1_transform()
/freebsd/libexec/bootpd/
H A DChanges8 03/27/96 gwr@mc.com (Gordon W. Ross)
13 03/25/95 gwr@mc.com (Gordon W. Ross)
28 11/30/94 Tonny van Lankveld <A.L.M.G.v.Lankveld@urc.tue.nl>
37 08/30/94 piercarl@ltd.c-d.com (Piercarlo Grandi)
44 08/24/94 gwr@mc.com (Gordon W. Ross)
50 08/24/94 gwr@mc.com (Gordon W. Ross)
55 08/20/94 gwr@mc.com (Gordon W. Ross)
60 07/30/94 Dirk Koeppen <dirk@incom.de>
73 05/27/94 gwr@mc.com (Gordon W. Ross)
84 04/30/94 gwr@mc.com (Gordon W. Ross)
[all …]
/freebsd/sys/sys/
H A Dwatchdog.h39 #define WDIOC_PATPAT _IOW('W', 52, sbintime_t) /* pat the watchdog */
40 #define WDIOC_SETTIMEOUT _IOW('W', 53, sbintime_t) /* set/reset the timer */
41 #define WDIOC_GETTIMEOUT _IOR('W', 54, sbintime_t) /* get total timeout */
42 #define WDIOC_GETTIMELEFT _IOR('W', 55, sbintime_t) /* get time left */
43 #define WDIOC_GETPRETIMEOUT _IOR('W', 56, sbintime_t) /* get the pre-timeout */
44 #define WDIOC_SETPRETIMEOUT _IOW('W', 57, sbintime_t) /* set the pre-timeout */
46 #define WDIOC_SETPRETIMEOUTACT _IOW('W', 48, int)
49 #define WDIOC_SETSOFT _IOW('W', 49, int)
50 #define WDIOC_SETSOFTTIMEOUTACT _IOW('W', 50, int)
52 #define WDIOC_CONTROL _IOW('W', 51, int) /* configure watchdog */
[all …]
/freebsd/contrib/wpa/src/crypto/
H A Dsha1-internal.c144 #define R0(v,w,x,y,z,i) \ argument
145 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \
146 w = rol(w, 30);
147 #define R1(v,w,x,y,z,i) \ argument
148 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \
149 w = rol(w, 30);
150 #define R2(v,w,x,y,z,i) \ argument
151 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); w = rol(w, 30);
152 #define R3(v,w,x,y,z,i) \ argument
153 z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \
[all …]
/freebsd/sys/crypto/
H A Dsha1.c69 #define W(n) (ctxt->m.b32[(n)]) macro
114 ctxt->m.b8[28] = tctxt.m.b8[31]; ctxt->m.b8[29] = tctxt.m.b8[30]; in sha1_step()
115 ctxt->m.b8[30] = tctxt.m.b8[29]; ctxt->m.b8[31] = tctxt.m.b8[28]; in sha1_step()
139 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
141 tmp = S(5, a) + F0(b, c, d) + e + W(s) + K(t); in sha1_step()
142 e = d; d = c; c = S(30, b); b = a; a = tmp; in sha1_step()
146 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
147 tmp = S(5, a) + F1(b, c, d) + e + W(s) + K(t); in sha1_step()
148 e = d; d = c; c = S(30, b); b = a; a = tmp; in sha1_step()
152 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
[all …]
/freebsd/contrib/ntp/libntp/lib/isc/
H A Dsha1.c107 #define R0(v,w,x,y,z,i) \ argument
108 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \
109 w = rol(w, 30);
110 #define R1(v,w,x,y,z,i) \ argument
111 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \
112 w = rol(w, 30);
113 #define R2(v,w,x,y,z,i) \ argument
114 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); \
115 w = rol(w, 30);
116 #define R3(v,w,x,y,z,i) \ argument
[all …]
/freebsd/lib/libc/nls/
H A Dpl_PL.ISO8859-2.msg20 7 Zbyt d�uga lista argument�w
26 10 Brak proces�w potomnych
28 11 Unikni�to zakleszczenia zasob�w
52 23 Zbyt wiele otwartych plik�w w systemie
54 24 Zbyt wiele otwartych plik�w
66 30 System plik�w tylko do odczytu
78 36 Operacja jest w�a�nie wykonywana
98 46 Nieobs�ugiwana rodzina protoko��w
100 47 Rodzina adres�w nie jest obs�ugiwana przez rodzin� protoko��w
102 48 Adres jest ju� w u�yciu
[all …]
/freebsd/contrib/ntp/sntp/unity/auto/
H A Dcolour_prompt.rb7 if RUBY_PLATFORM =~/(win|w)32$/
24 if RUBY_PLATFORM =~/(win|w)32$/
33 if RUBY_PLATFORM =~/(win|w)32$/
36 "\033[30;#{posix_colour(new_colour)};22m"
65 when :black then 30
74 30
80 when /(win|w)32$/
/freebsd/crypto/openssl/crypto/sha/
H A Dsha_local.h87 (b)=ROTATE((b),30);
92 (b)=ROTATE((b),30);
97 (b)=ROTATE((b),30);
102 (b)=ROTATE((b),30);
107 (b)=ROTATE((b),30);
112 (b)=ROTATE((b),30);
159 const SHA_LONG *W = (const SHA_LONG *)data; in HASH_BLOCK_DATA_ORDER() local
161 X(0) = W[0]; in HASH_BLOCK_DATA_ORDER()
162 X(1) = W[1]; in HASH_BLOCK_DATA_ORDER()
164 X(2) = W[2]; in HASH_BLOCK_DATA_ORDER()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dcad72 #>>>>30 ubyte x \b, attindx \%o
74 # >>30 string \026\105 DGNFile
75 # >>30 string \034\105 DGNFile
76 # >>30 string \073\107 DGNFile
77 # >>30 string \073\110 DGNFile
78 # >>30 string \106\107 DGNFile
79 # >>30 string \110\103 DGNFile
80 # >>30 string \120\104 DGNFile
81 # >>30 string \172\104 DGNFile
82 # >>30 string \172\105 DGNFile
[all …]
H A Dvms12 # 00000 b0 00 30 00 44 00 60 00 00 00 00 00 30 32 30 35 ..0.D.`.....0205
16 >44032 string PK\003\004 \b, Info-ZIP SFX archive v5.12 w/decryption
30 >>75264 string PK\003\004 \b, Info-ZIP SFX archive v5.12 w/decryption
/freebsd/contrib/libarchive/cpio/test/
H A Dtest_option_c.c61 filelist = fopen("filelist", "w"); in DEFINE_TEST()
76 now = time(NULL); /* They were all created w/in last two seconds. */ in DEFINE_TEST()
116 assert(is_octal(e + 30, 6)); /* gid */ in DEFINE_TEST()
117 gid = (int)from_octal(e + 30, 6); in DEFINE_TEST()
124 assert(t >= now - 2); /* File was created w/in last 2 secs. */ in DEFINE_TEST()
143 assertEqualInt(gid, from_octal(e + 30, 6)); /* gid */ in DEFINE_TEST()
150 assert(t >= now - 2); /* File was created w/in last 2 secs. */ in DEFINE_TEST()
177 assert(is_octal(e + 30, 6)); /* gid */ in DEFINE_TEST()
178 assertEqualInt(gid, from_octal(e + 30, 6)); in DEFINE_TEST()
186 assert(t >= now - 2); /* File was created w/in last 2 secs. */ in DEFINE_TEST()
[all …]
/freebsd/usr.sbin/watchdogd/
H A Dwatchdogd.8128 .Bl -tag -width 30m
143 .It Fl w
229 Set the watchdog to trip at 30 seconds. (-t 30)
264 Warn us when the script takes longer than 1 second to run (-w)
268 watchdogd --debug -t 30 \\
271 -e 'sleep 60' -w
293 Log if your script takes a longer than 15 seconds to run time. (-w -T 15)
299 -e '/path/to/your/script 60' -w -T 15
/freebsd/bin/date/
H A Ddate.150 .Ar val Op Cm y | m | w | d | H | M | S
63 .Ar val Op Cm y | m | w | d | H | M | S
85 .Ar val Op Cm y | m | w | d | H | M | S
218 .Ar val Op Cm y | m | w | d | H | M | S
254 .Cm w ,
277 So, assuming the current date is March 26, 0:30 and that the DST adjustment
280 will adjust the date to March 26, 2:30.
281 Likewise, if the date is October 29, 0:30 and the DST adjustment means that
284 will be necessary to reach October 29, 2:30.
287 (for example March 26, 1:30 BST 2000 in the Europe/London timezone),
[all …]
/freebsd/usr.bin/w/
H A Dw.132 .Nm w
102 $ w
105 fernape v0 - 7:30PM - tmux: client (/tmp/tmux-1001/default) (tmux)
107 fernape pts/0 tmux(1391).%0 8:04PM - w
112 $ w -d
118 fernape v0 - 7:30PM - tmux: client (/tmp/tmux-1001/default) (tmux)
123 1515 w -d
124 fernape pts/0 tmux(1509).%0 8:11PM - w -d
129 $ w -d -h root
140 .Fl w
/freebsd/contrib/libxo/tests/core/
H A Dtest_02.c47 xo_set_flags(NULL, XOF_UNITS); /* Always test w/ this */ in main()
82 (uintmax_t) 20, (uintmax_t) 30, (uintmax_t) 40, "file"); in main()
93 10, 20, 30); in main()
114 xo_emit("({[:/%d}{n:min/15}/{n:cur/20}/{:max/%d}{]:})\n", 30, 125); in main()
115 xo_emit("({[:30}{:min/%u}/{:cur/%u}/{:max/%u}{]:})\n", 15, 20, 125); in main()
116 xo_emit("({[:-30}{n:min/15}/{n:cur/20}/{n:max/125}{]:})\n"); in main()
117 xo_emit("({[:}{:min/%u}/{:cur/%u}/{:max/%u}{]:/%d})\n", 15, 20, 125, -30); in main()
140 xo_emit("{W:this is an warning}\n"); in main()
141 xo_emit("{W:/%s more warning%s}\n", "two", "s" ); in main()
/freebsd/contrib/netbsd-tests/net/mpls/
H A Dt_mpls_fw.sh75 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
76 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
89 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
90 atf_check -s exit:0 rump.sysctl -q -w net.mpls.forwarding=1
91 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
92 atf_check -s exit:0 rump.route -q add -mpls 25 -tag 30 -inet 10.0.2.2
104 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
105 atf_check -s exit:0 rump.sysctl -q -w net.mpls.forwarding=1
106 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
107 atf_check -s exit:0 rump.route -q add -mpls 30 -tag ${1} -inet 10.0.3.2
[all …]
H A Dt_rfc4182.sh77 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
78 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
91 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
92 atf_check -s exit:0 rump.sysctl -q -w net.mpls.forwarding=1
93 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
94 atf_check -s exit:0 rump.route -q add -mpls 25 -tag 30,0 -inet 10.0.2.2
106 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
107 atf_check -s exit:0 rump.sysctl -q -w net.mpls.forwarding=1
108 atf_check -s exit:0 rump.sysctl -q -w net.inet.ip.forwarding=0
109 atf_check -s exit:0 rump.route -q add -mpls 30 -tag 3 -inet 10.0.3.2
[all …]
/freebsd/share/man/man7/
H A Dascii.751 120 P 121 Q 122 R 123 S 124 T 125 U 126 V 127 W
55 160 p 161 q 162 r 163 s 164 t 165 u 166 v 167 w
69 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
73 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
77 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
88 24 CAN 25 EM 26 SUB 27 ESC 28 FS 29 GS 30 RS 31 US
95 80 P 81 Q 82 R 83 S 84 T 85 U 86 V 87 W
99 112 p 113 q 114 r 115 s 116 t 117 u 118 v 119 w
132 ETB 7 W w 10111
/freebsd/contrib/netbsd-tests/dev/sysmon/
H A Dt_swsensor.sh146 rump.sysctl -w hw.swsensor.cur_value=$(( $2 + 1 ))
160 rump.sysctl -w hw.swsensor.cur_value=$(( $3 - $5 ))
177 rump.sysctl -w hw.swsensor.cur_value=$(( $3 + $5 ))
203 rump.sysctl -w hw.swsensor.cur_value=$(( $3 - $4 - $5 ))
220 rump.sysctl -w hw.swsensor.cur_value=$(( $3 - $4 + $5 ))
249 rump.sysctl -w hw.swsensor.cur_value=$(( $3 - $4 - $5 ))
293 rump.sysctl -w hw.swsensor.cur_value=$3
295 rump.sysctl -w hw.swsensor.cur_value=$(( $3 + $4 ))
313 rump.sysctl -w hw.swsensor.cur_value=$3
316 rump.sysctl -w hw.swsensor.cur_value=$(( $3 + $4 ))
[all …]

12345678910>>...43