Home
last modified time | relevance | path

Searched refs:z (Results 76 – 100 of 1832) sorted by relevance

12345678910>>...74

/freebsd/contrib/libfido2/src/
H A Dcompress.c18 int z; in rfc1950_inflate() local
36 __func__, z, olen, out->len); in rfc1950_inflate()
50 int r, z; in rfc1951_inflate() local
61 if ((z = inflateInit2(&zs, -MAX_WBITS)) != Z_OK) { in rfc1951_inflate()
76 if ((z = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { in rfc1951_inflate()
77 fido_log_debug("%s: inflate: %d", __func__, z); in rfc1951_inflate()
89 if ((z = inflateEnd(&zs)) != Z_OK) { in rfc1951_inflate()
90 fido_log_debug("%s: inflateEnd: %d", __func__, z); in rfc1951_inflate()
105 int r, z; in rfc1951_deflate() local
132 fido_log_debug("%s: inflate: %d", __func__, z); in rfc1951_deflate()
[all …]
/freebsd/contrib/gdtoa/
H A Dg_ddfmt.c45 Bigint *x, *y, *z; local
111 x = z;
122 z = diff(x, y);
124 z->sign = 1 - z->sign;
127 z = sum(x, y);
129 z->sign = 1;
134 bits = zx = z->x;
139 rshift(z, i);
142 fpi.nbits = z->wds * 32 - hi0bits(z->x[j = z->wds-1]);
156 Bfree(z);
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Ddivtc3.c30 Qcomplex z; in __divtc3() local
31 COMPLEXTF_REAL(z) = in __divtc3()
33 COMPLEXTF_IMAGINARY(z) = in __divtc3()
35 if (crt_isnan(COMPLEXTF_REAL(z)) && crt_isnan(COMPLEXTF_IMAGINARY(z))) { in __divtc3()
37 COMPLEXTF_REAL(z) = crt_copysigntf(CRT_INFINITY, __c) * __a; in __divtc3()
38 COMPLEXTF_IMAGINARY(z) = crt_copysigntf(CRT_INFINITY, __c) * __b; in __divtc3()
43 COMPLEXTF_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divtc3()
44 COMPLEXTF_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divtc3()
49 COMPLEXTF_REAL(z) = 0.0 * (__a * __c + __b * __d); in __divtc3()
50 COMPLEXTF_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d); in __divtc3()
[all …]
/freebsd/lib/msun/ld80/
H A Db_expl.c79 long double hi, lo, z; in __exp__D() local
88 z = invln2 * x; in __exp__D()
89 k = z + copysignl(0.5L, x); in __exp__D()
100 z = x * x; in __exp__D()
101 c = x - z * (p1 + z * (p2 + z * (p3 + z * (p4 + in __exp__D()
102 z * (p5 + z * (p6 + z * p7)))))); in __exp__D()
H A De_powl.c414 z = x*x; in powl()
421 z = LOG2EA * w; in powl()
422 z += w; in powl()
423 z += LOG2EA * x; in powl()
424 z += x; in powl()
443 F = z * y + w * yb; in powl()
488 z = w * z; /* 2**-e * ( 1 + (2**Hb-1) ) */ in powl()
489 z = z + w; in powl()
490 z = ldexpl( z, i ); /* multiply by integer power of 2 */ in powl()
502 z = -z; /* odd exponent */ in powl()
[all …]
/freebsd/share/colldef/
H A Dhu_HU.ISO8859-2.src33 collating-element <d-z> from "<d><z>"
34 collating-element <D-z> from "<D><z>"
45 collating-element <d-d-z> from "<d><d><z>"
46 collating-element <D-d-z> from "<D><d><z>"
117 collating-element <s-z> from "<s><z>"
118 collating-element <S-z> from "<S><z>"
153 collating-element <z-s> from "<z><s>"
165 collating-element <z-z-s> from "<z><z><s>"
168 collating-element <z-z-LATIN_SMALL_LETTER_S_WITH_ACUTE> from "<z><z><LATIN_SMALL_LETTER_S_WITH_ACUT…
171 collating-element <z-z-LATIN_SMALL_LETTER_S_WITH_CARON> from "<z><z><LATIN_SMALL_LETTER_S_WITH_CARO…
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt25 x/y/z axis.
28 x/y/z axis.
29 - st,click-thresh-{x,y,z}: set the x/y/z axis threshold
47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
61 - st,{min,max}-limit-{x,y,z} set the min/max limits for x/y/z axis
76 st,click-single-z;
86 st,wakeup-z-lo;
87 st,wakeup-z-hi;
110 st,wakeup-z-lo;
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/
H A Dtst.execcast.d30 z = 0xfff0;
32 x = (int32_t)(int16_t)z;
34 x = (int32_t)(uint16_t)z;
36 x = (uint32_t)(int16_t)z;
38 x = (uint32_t)(uint16_t)z;
42 x = (int16_t)(int32_t)z;
44 x = (int16_t)(uint32_t)z;
46 x = (uint16_t)(int32_t)z;
48 x = (uint16_t)(uint32_t)z;
/freebsd/lib/msun/bsdsrc/
H A Db_exp.c88 double hi, lo, z; in __exp__D() local
97 z = invln2 * x; in __exp__D()
98 k = z + copysign(0.5, x); in __exp__D()
109 z = x * x; in __exp__D()
110 c = x - z * (p1 + z * (p2 + z * (p3 + z * (p4 + in __exp__D()
111 z * p5)))); in __exp__D()
/freebsd/lib/msun/src/
H A Ds_fmal.c179 return (x * y + z); in fmal()
180 if (z == 0.0) in fmal()
183 return (x * y + z); in fmal()
184 if (!isfinite(z)) in fmal()
185 return (z); in fmal()
189 zs = frexpl(z, &ez); in fmal()
200 if (!isnormal(z)) in fmal()
204 return (z); in fmal()
207 return (z); in fmal()
212 return (z); in fmal()
[all …]
H A Dcatrig.c280 x = creal(z); in casinh()
281 y = cimag(z); in casinh()
314 return (z); in casinh()
320 return (z); in casinh()
337 double complex w = casinh(CMPLX(cimag(z), creal(z))); in casin()
362 x = creal(z); in cacos()
363 y = cimag(z); in cacos()
434 w = cacos(z); in cacosh()
459 x = creal(z); in clog_for_large_values()
615 return (z); in catanh()
[all …]
H A Dcatrigf.c151 x = crealf(z); in casinhf()
152 y = cimagf(z); in casinhf()
176 return (z); in casinhf()
181 return (z); in casinhf()
194 float complex w = casinhf(CMPLXF(cimagf(z), crealf(z))); in casinf()
207 x = crealf(z); in cacosf()
208 y = cimagf(z); in cacosf()
264 w = cacosf(z); in cacoshf()
282 x = crealf(z); in clog_for_large_values()
368 return (z); in catanhf()
[all …]
H A Dcatrigl.c170 x = creall(z); in casinhl()
171 y = cimagl(z); in casinhl()
195 return (z); in casinhl()
200 return (z); in casinhl()
215 w = casinhl(CMPLXL(cimagl(z), creall(z))); in casinl()
227 x = creall(z); in cacosl()
228 y = cimagl(z); in cacosl()
284 w = cacosl(z); in cacoshl()
302 x = creall(z); in clog_for_large_values()
389 return (z); in catanhl()
[all …]
H A Dk_tanf.c36 double z,r,w,s,t,u; in __kernel_tandf() local
38 z = x*x; in __kernel_tandf()
53 r = T[4]+z*T[5]; in __kernel_tandf()
54 t = T[2]+z*T[3]; in __kernel_tandf()
55 w = z*z; in __kernel_tandf()
56 s = z*x; in __kernel_tandf()
57 u = T[0]+z*T[1]; in __kernel_tandf()
H A Ds_tanl.c53 union IEEEl2bits z; in tanl() local
58 z.e = x; in tanl()
59 s = z.bits.sign; in tanl()
60 z.bits.sign = 0; in tanl()
63 if (z.bits.exp == 0) in tanl()
67 if (z.bits.exp == 32767) in tanl()
73 if (z.e < M_PI_4) { in tanl()
74 hi = __kernel_tanl(z.e, 0, 0); in tanl()
H A Dk_cosf.c34 double r, w, z; in __kernel_cosdf() local
37 z = x*x; in __kernel_cosdf()
38 w = z*z; in __kernel_cosdf()
39 r = C2+z*C3; in __kernel_cosdf()
40 return ((one+z*C0) + w*C1) + (w*z)*r; in __kernel_cosdf()
/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dtanf_3u3.c26 eval_P (float z) in eval_P() argument
28 return pw_horner_5_f32 (z, z * z, __tanf_poly_data.poly_tan); in eval_P()
32 eval_Q (float z) in eval_Q() argument
34 return pairwise_poly_3_f32 (z, z * z, __tanf_poly_data.poly_cotan); in eval_Q()
171 float z = alt ? -r : r; in tanf() local
175 float offset = alt ? 1.0f / z : z; in tanf()
176 float scale = alt ? z : z * z2; in tanf()
/freebsd/contrib/bearssl/src/ec/
H A Dec_p256_m31.c484 c = z >> 31; in mul_f256()
693 memcpy(t1, P->z, sizeof P->z); in p256_to_affine()
704 memcpy(t2, P->z, sizeof P->z); in p256_to_affine()
736 mul_f256(P->z, P->z, t2); in p256_to_affine()
921 mul_f256(t1, P1->z, P2->z); in p256_add()
1030 mul_f256(P1->z, P1->z, t2); in p256_add_mixed()
1090 memset(P->z, 0, sizeof P->z); in p256_decode()
1286 memset(T->z, 0, sizeof T->z); in lookup_Gwin()
1437 z = 0; in api_muladd()
1439 z |= P.z[i]; in api_muladd()
[all …]
/freebsd/tools/tools/net80211/scripts/
H A Dconfig28 test -z "$WIRED" && WIRED=$i
31 test -z "$WIRELESS" && WIRELESS=$i
35 test -z "$WIRED" && { echo "No wired device detected!"; exit; }
36 test -z "$WIRELESS" && { echo "No wireless device detected!"; exit; }
46 test -z "$WPA_PASSPHRASE" && WPA_PASSPHRASE='I am not a geek'
49 test -z "$SSID" && SSID=freebsd-ap
52 test -z "$MESHID" && MESHID=freebsd-mesh
55 test -z "$TMPDIR" && TMPDIR=.
60 test -z "$HOSTAPD" && HOSTAPD=/usr/sbin/hostapd
61 test -z "$WLANWATCH" && WLANWATCH=/usr/local/bin/wlanwatch
[all …]
/freebsd/crypto/openssl/crypto/ec/curve448/
H A Dcurve448.c73 gf_sqr(p->x, q->z); in point_double_internal()
102 gf_add(b->z, a->z, a->z); in pt_to_pniels()
114 gf_sqr(e->z, d->z); in pniels_to_pt()
172 gf_mul(L0, p->z, pn->z); in add_pniels_to_pt()
182 gf_mul(L0, p->z, pn->z); in sub_pniels_from_pt()
216 gf_sqr(b, p->z); in ossl_curve448_point_valid()
283 gf x, y, z, t; in ossl_curve448_point_mul_by_ratio_and_encode_like_eddsa() local
310 gf_invert(z, z, 1); in ossl_curve448_point_mul_by_ratio_and_encode_like_eddsa()
311 gf_mul(t, x, z); in ossl_curve448_point_mul_by_ratio_and_encode_like_eddsa()
312 gf_mul(x, y, z); in ossl_curve448_point_mul_by_ratio_and_encode_like_eddsa()
[all …]
/freebsd/usr.bin/sed/tests/
H A Dhanoi.sed43 /[^a-z:]/{a\
44 Illegal characters: use only a-z and ":". Try again.
47 /^:[a-z]*:[a-z]*:[a-z]*:$/!{a\
53 /\([a-z]\).*\1/{a\
59 s/[a-z]/ /g
61 s/^:\( *\):\( *\):\( *\):\n:\([a-z]*\):\([a-z]*\):\([a-z]*\):$/:1\4\2\3:2\5\1\3:3\6\1\2:0/
62 s/[a-z]/&2/g
79 /^\(.\).*:1[^:]*\11/s/^\(.\)\(.*\1\([a-z]\).*\)\3./\3\2\31/
80 /^\(.\).*:1[^:]*\12/s/^\(.\)\(.*\1\([a-z]\).*\)\3./\3\2\33/
81 /^\(.\).*:1[^:]*\13/s/^\(.\)\(.*\1\([a-z]\).*\)\3./\3\2\32/
[all …]
/freebsd/contrib/arm-optimized-routines/string/aarch64/
H A Dstrcmp-sve.S26 0: ldff1b z0.b, p1/z, [x0, x2]
27 ldff1b z1.b, p1/z, [x1, x2]
28 rdffrs p0.b, p1/z
34 cmpeq p2.b, p1/z, z0.b, z1.b /* compare strings */
35 cmpne p3.b, p1/z, z0.b, 0 /* search for ~zero */
36 nands p2.b, p1/z, p2.b, p3.b /* ~(eq & ~zero) -> ne | zero */
40 1: brkb p2.b, p1/z, p2.b /* find first such */
50 cmpeq p2.b, p0/z, z0.b, z1.b /* compare strings, as above */
51 cmpne p3.b, p0/z, z0.b, 0
52 nands p2.b, p0/z, p2.b, p3.b
H A Dstrncmp-sve.S27 ldff1b z0.b, p0/z, [x0, x3]
28 ldff1b z1.b, p0/z, [x1, x3]
29 rdffrs p1.b, p0/z
38 cmpeq p1.b, p0/z, z0.b, z1.b /* compare strings */
39 cmpne p2.b, p0/z, z0.b, 0 /* search for ~zero */
40 nands p2.b, p0/z, p1.b, p2.b /* ~(eq & ~zero) -> ne | zero */
44 1: brkb p2.b, p0/z, p2.b /* find first such */
52 2: cmpeq p2.b, p1/z, z0.b, z1.b /* compare strings, as above */
53 cmpne p3.b, p1/z, z0.b, 0
54 nands p2.b, p1/z, p2.b, p3.b
/freebsd/contrib/diff/lib/
H A Dunlocked-io.h69 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument
71 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument
87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) argument
89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z) argument
93 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) argument
95 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z) argument
/freebsd/sys/dev/syscons/
H A Dsysmouse.c88 smdev_evdev_write(int x, int y, int z, int buttons) in smdev_evdev_write() argument
98 switch (z) { in smdev_evdev_write()
101 evdev_push_rel(sysmouse_evdev, REL_WHEEL, -z); in smdev_evdev_write()
118 evdev_push_rel(sysmouse_evdev, REL_WHEEL, -z); in smdev_evdev_write()
260 int x, y, z; in sysmouse_event() local
272 z = info->u.data.z; in sysmouse_event()
275 x = y = z = 0; in sysmouse_event()
287 mouse_status.dz += z; in sysmouse_event()
316 z = imax(imin(z, 127), -128); in sysmouse_event()
317 buf[5] = (z >> 1) & 0x7f; in sysmouse_event()
[all …]

12345678910>>...74