Home
last modified time | relevance | path

Searched +full:- +full:z (Results 1 – 25 of 1115) sorted by relevance

12345678910>>...45

/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/blockfiles/
H A DMakefile8 ${PACKAGE}FILES+= zfs-broken-mirror1.dat.Z
9 ${PACKAGE}FILES+= zfs-broken-mirror2.dat.Z
10 ${PACKAGE}FILES+= zfs-pool-v1.dat.Z
11 ${PACKAGE}FILES+= zfs-pool-v10.dat.Z
12 ${PACKAGE}FILES+= zfs-pool-v11.dat.Z
13 ${PACKAGE}FILES+= zfs-pool-v12.dat.Z
14 ${PACKAGE}FILES+= zfs-pool-v13.dat.Z
15 ${PACKAGE}FILES+= zfs-pool-v14.dat.Z
16 ${PACKAGE}FILES+= zfs-pool-v15.dat.Z
17 ${PACKAGE}FILES+= zfs-pool-v1mirror1.dat.Z
[all …]
/freebsd/lib/msun/tests/
H A Dctrig_test.c1 /*-
2 * Copyright (c) 2008-2011 David Schultz <das@FreeBSD.org>
38 #include "test-utils.h"
56 #define test_p(func, z, result, exceptmask, excepts, checksign) \ argument
58 volatile long double complex _d = z; \
74 #define test_p_tol(func, z, result, tol) do { \ argument
76 creall(z), cimagl(z), creall(result), cimagl(result)); \
77 CHECK_CFPEQUAL_TOL((func)(z), (result), (tol), FPE_ABS_ZERO); \
80 /* These wrappers apply the identities f(conj(z)) = conj(f(z)). */
81 #define test(func, z, result, exceptmask, excepts, checksign) do { \ argument
[all …]
H A Dinvctrig_test.c1 /*-
2 * Copyright (c) 2008-2013 David Schultz <das@FreeBSD.org>
38 #include "test-utils.h"
56 #define test_p(func, z, result, exceptmask, excepts, checksign) do { \ argument
57 volatile long double complex _d = z; \
63 #func, #z); \
70 #define test_p_tol(func, z, result, tol) do { \ argument
72 creall(z), cimagl(z), creall(result), cimagl(result)); \
73 CHECK_CFPEQUAL_TOL((func)(z), (result), (tol), CS_BOTH); \
76 /* These wrappers apply the identities f(conj(z)) = conj(f(z)). */
[all …]
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem1 -----BEGIN CERTIFICATE-----
6 z
55 z
70 Z
86 Z
90 Z
106 Z
110 Z
116 Z
122 Z
[all …]
H A Ddsa-onecolumn.pem1 -----BEGIN DSA PRIVATE KEY-----
2 Proc-Type: 4,ENCRYPTED
3 DEK-Info: AES-256-CBC,A2A7FA3E5E454B59C8777564E7AF3CD6
34 z
70 z
187 Z
227 Z
255 z
291 Z
297 z
[all …]
/freebsd/contrib/tcpdump/
H A Dprint-zephyr.c27 #include "netdissect-stdinc.h"
33 #include "netdissect-ctype.h"
75 { Z_PACKET_HMACK, "hm-ack" },
76 { Z_PACKET_HMCTL, "hm-ctl" },
77 { Z_PACKET_SERVACK, "serv-ack" },
78 { Z_PACKET_SERVNAK, "serv-nak" },
79 { Z_PACKET_CLIENTACK, "client-ack" },
105 (*len)--; in parse_field()
109 (*len)--; in parse_field()
119 z_buf[sizeof(z_buf)-1] = '\0'; in z_triple()
[all …]
/freebsd/contrib/netbsd-tests/lib/libm/
H A Dt_pow.c3 /*-
34 #include <atf-c.h>
69 atf_tc_set_md_var(tc, "descr", "Test pow(-Inf, y) == +-Inf || +-0.0"); in ATF_TC_HEAD()
74 const double x = -1.0L / 0.0L; in ATF_TC_BODY()
75 double z; in ATF_TC_BODY() local
78 * If y is odd, y > 0, and x is -Inf, -Inf is returned. in ATF_TC_BODY()
79 * If y is even, y > 0, and x is -Inf, +Inf is returned. in ATF_TC_BODY()
81 z = pow(x, 3.0); in ATF_TC_BODY()
83 if (isinf(z) == 0 || signbit(z) == 0) in ATF_TC_BODY()
84 atf_tc_fail_nonfatal("pow(-Inf, 3.0) != -Inf"); in ATF_TC_BODY()
[all …]
/freebsd/lib/msun/src/
H A Dk_sincosl.h1 /*-
20 C1hi = 0.041666666666666664, /* 0x15555555555555.0p-57 */
21 C1lo = 2.2598839032744733e-18, /* 0x14d80000000000.0p-111 */
22 S1hi = -0.16666666666666666, /* -0x15555555555555.0p-55 */
23 S1lo = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */
28 C1 = 0.0416666666666666666136L, /* 0xaaaaaaaaaaaaaa9b.0p-68 */
29 S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */
33 C2 = -0.0013888888888888874, /* -0x16c16c16c16c10.0p-62 */
34 C3 = 0.000024801587301571716, /* 0x1a01a01a018e22.0p-68 */
35 C4 = -0.00000027557319215507120, /* -0x127e4fb7602f22.0p-74 */
[all …]
H A De_acos.c15 * acos(x) = pi/2 - asin(x)
16 * acos(-x) = pi/2 + asin(x)
18 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
20 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
21 * = 2asin(sqrt((1-x)/2))
22 * = 2s + 2s*z*R(z) ...z=(1-x)/2, s=sqrt(z)
23 * = 2f + (2c + 2s*z*R(z))
24 * where f=hi part of s, and c = (z-f*f)/(s+f) is the correction term
25 * for f so that f+c ~ sqrt(z).
26 * For x<-0.5
[all …]
H A Dcatrig.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG>
47 FOUR_SQRT_MIN = 0x1p-509, /* >= 4 * sqrt(DBL_MIN) */
49 m_e = 2.7182818284590452e0, /* 0x15bf0a8b145769.0p-51 */
50 m_ln2 = 6.9314718055994531e-1, /* 0x162e42fefa39ef.0p-53 */
51 pio2_hi = 1.5707963267948966e0, /* 0x1921fb54442d18.0p-52 */
53 SQRT_3_EPSILON = 2.5809568279517849e-8, /* 0x1bb67ae8584caa.0p-78 */
54 SQRT_6_EPSILON = 3.6500241499888571e-8, /* 0x13988e1409212e.0p-77 */
55 SQRT_MIN = 0x1p-511; /* >= sqrt(DBL_MIN) */
[all …]
H A De_j0.c14 * Method -- j0(x):
15 * 1. For tiny x, we use j0(x) = 1 - x^2/4 + x^4/64 - ...
16 * 2. Reduce x to |x| since j0(x)=j0(-x), and
18 * j0(x) = 1-z/4+ z^2*R0/S0, where z = x*x;
19 * (precision: |j0-1+z/4-z^2R0/S0 |<2**-63.67 )
21 * j0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)-q0(x)*sin(x0))
22 * where x0 = x-pi/4. It is better to compute sin(x0),cos(x0)
26 * sin(x0) = sin(x)cos(pi/4)-cos(x)sin(pi/4)
27 * = 1/sqrt(2) * (sin(x) - cos(x))
29 * sin(x) +- cos(x) = -cos(2x)/(sin(x) -+ cos(x))
[all …]
/freebsd/share/colldef/
H A Dhu_HU.ISO8859-2.src3 # -----------------------------------------------------------------------------
9 collating-element <c-s> from "<c><s>"
10 collating-element <C-s> from "<C><s>"
11 collating-element <C-S> from "<C><S>"
12 collating-element <c-LATIN_SMALL_LETTER_S_WITH_ACUTE> from "<c><LATIN_SMALL_LETTER_S_WITH_ACUTE>"
13 collating-element <C-LATIN_SMALL_LETTER_S_WITH_ACUTE> from "<C><LATIN_SMALL_LETTER_S_WITH_ACUTE>"
14 collating-element <C-LATIN_CAPITAL_LETTER_S_WITH_ACUTE> from "<C><LATIN_CAPITAL_LETTER_S_WITH_ACUTE…
15 collating-element <c-LATIN_SMALL_LETTER_S_WITH_CARON> from "<c><LATIN_SMALL_LETTER_S_WITH_CARON>"
16 collating-element <C-LATIN_SMALL_LETTER_S_WITH_CARON> from "<C><LATIN_SMALL_LETTER_S_WITH_CARON>"
17 collating-element <C-LATIN_CAPITAL_LETTER_S_WITH_CARON> from "<C><LATIN_CAPITAL_LETTER_S_WITH_CARON…
[all …]
/freebsd/crypto/openssl/crypto/cast/
H A Dc_skey.c2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
35 CAST_LONG z[16]; in CAST_set_key() local
37 CAST_LONG X[4], Z[4]; in CAST_set_key() local
48 key->short_key = 1; in CAST_set_key()
50 key->short_key = 0; in CAST_set_key()
61 CAST_exp(l, Z, z, 0); in CAST_set_key()
62 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]]; in CAST_set_key()
63 CAST_exp(l, Z, z, 4); in CAST_set_key()
64 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]]; in CAST_set_key()
65 CAST_exp(l, Z, z, 8); in CAST_set_key()
[all …]
/freebsd/contrib/bearssl/src/ec/
H A Dec_c25519_m64.c72 * A field element is encoded as four 64-bit integers, in basis 2^63.
77 #define MASK63 (((uint64_t)1 << 63) - (uint64_t)1)
87 m = -(uint64_t)ctl; in f255_cswap()
103 unsigned __int128 z; in f255_add() local
105 z = (unsigned __int128)a[0] + (unsigned __int128)b[0]; in f255_add()
106 t0 = (uint64_t)z; in f255_add()
107 z = (unsigned __int128)a[1] + (unsigned __int128)b[1] + (z >> 64); in f255_add()
108 t1 = (uint64_t)z; in f255_add()
109 z = (unsigned __int128)a[2] + (unsigned __int128)b[2] + (z >> 64); in f255_add()
110 t2 = (uint64_t)z; in f255_add()
[all …]
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_fsplit.sh3 # Copyright (c) 2007-2016 The NetBSD Foundation, Inc.
32 # In particular this means that in ${x-word}, 'word' must be expanded as if
33 # the "${x-" and "}" were absent from the input line.
35 # So: sh -c 'set ${x-a b c}; echo $#' should give 3.
36 # and: sh -c 'set -- ${x-}' echo $#' shold give 0
54 result=$( ${TEST_SH} -c "unset x; $1" )
66 set -- "$(expr "$1" : '\(............\).*')..." "$2" ;;
102 # Check that IFS is applied to text from ${x-...} unless it is inside
104 check 'set -- ${x-a b c}; echo $#' 3
106 check 'set -- ${x-"a b" c}; echo $#' 2
[all …]
/freebsd/contrib/unbound/services/
H A Dlocalzone.c2 * services/localzone.c - local zones authority service.
61 local_zone_out(struct local_zone* z) in local_zone_out() argument
65 RBTREE_FOR(d, struct local_data*, &z->data) { in local_zone_out()
66 for(p = d->rrsets; p; p = p->next) { in local_zone_out()
67 log_nametypeclass(NO_VERBOSE, "rrset", d->name, in local_zone_out()
68 ntohs(p->rrset->rk.type), in local_zone_out()
69 ntohs(p->rrse in local_zone_out()
75 local_zone_print(struct local_zone * z) local_zone_print() argument
88 struct local_zone* z; local_zones_print() local
115 struct local_zone* z = (struct local_zone*)n->key; lzdel() local
131 local_zone_delete(struct local_zone * z) local_zone_delete() argument
187 struct local_zone* z = (struct local_zone*)calloc(1, sizeof(*z)); local_zone_create() local
214 struct local_zone* z = local_zone_create(nm, len, labs, t, c); lz_enter_zone_dname() local
249 struct local_zone* z; lz_enter_zone() local
460 local_zone_find_data(struct local_zone * z,uint8_t * nm,size_t nmlen,int nmlabs) local_zone_find_data() argument
472 lz_find_create_node(struct local_zone * z,uint8_t * nm,size_t nmlen,int nmlabs,struct local_data ** res) lz_find_create_node() argument
512 lz_mark_soa_for_zone(struct local_zone * z,struct ub_packed_rrset_key * soa_rrset,uint8_t * rdata,size_t rdata_len,time_t ttl,const char * rrstr) lz_mark_soa_for_zone() argument
549 local_zone_enter_rr(struct local_zone * z,uint8_t * nm,size_t nmlen,int nmlabs,uint16_t rrtype,uint16_t rrclass,time_t ttl,uint8_t * rdata,size_t rdata_len,const char * rrstr) local_zone_enter_rr() argument
606 lz_enter_rr_into_zone(struct local_zone * z,const char * rrstr) lz_enter_rr_into_zone() argument
645 struct local_zone* z; lz_enter_rr_str() local
674 struct local_zone* z; lz_enter_zone_tag() local
711 struct local_zone* z; lz_enter_override() local
789 struct local_zone* z; lz_enter_zones() local
808 struct local_zone z; lz_exists() local
850 struct local_zone* z; add_empty_default() local
874 struct local_zone* z; local_zone_enter_defaults() local
1061 struct local_zone* z = local_zones_lookup(zones, lz_setup_implicit() local
1117 struct local_zone* z; lz_setup_implicit() local
1471 local_data_answer(struct local_zone * z,struct module_env * env,struct query_info * qinfo,struct edns_data * edns,struct comm_reply * repinfo,sldns_buffer * buf,struct regional * temp,int labs,struct local_data ** ldp,enum localzone_type lz_type,int tag,struct config_strlist ** tag_datas,size_t tag_datas_size,char ** tagname,int num_tags) local_data_answer() argument
1608 local_zone_does_not_cover(struct local_zone * z,struct query_info * qinfo,int labs) local_zone_does_not_cover() argument
1643 local_zones_zone_answer(struct local_zone * z,struct module_env * env,struct query_info * qinfo,struct edns_data * edns,struct comm_reply * repinfo,sldns_buffer * buf,struct regional * temp,struct local_data * ld,enum localzone_type lz_type) local_zones_zone_answer() argument
1764 lz_inform_print(struct local_zone * z,struct query_info * qinfo,struct sockaddr_storage * addr,socklen_t addrlen) lz_inform_print() argument
1847 struct local_zone* z = NULL; local_zones_answer() local
2006 set_kiddo_parents(struct local_zone * z,struct local_zone * match,struct local_zone * newp) set_kiddo_parents() argument
2037 struct local_zone* z = local_zone_create(name, len, labs, tp, dclass); local_zones_add_zone() local
2065 local_zones_del_zone(struct local_zones * zones,struct local_zone * z) local_zones_del_zone() argument
2086 struct local_zone* z; local_zones_add_RR() local
2130 del_empty_term(struct local_zone * z,struct local_data * d,uint8_t * name,size_t len,int labs) del_empty_term() argument
2168 struct local_zone* z; local_zones_del_data() local
[all...]
/freebsd/crypto/openssl/crypto/md5/asm/
H A Dmd5-aarch64.pl2 # Copyright 2021-2025 The OpenSSL Project Authors. All Rights Reserved.
22 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or
23 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or
24 die "can't locate arm-xlate.pl";
38 // Save all callee-saved registers
39 stp x19,x20,[sp,#-80]!
45 ldp w10, w11, [x0, #0] // Load MD5 state->A and state->B
46 ldp w12, w13, [x0, #8] // Load MD5 state->C and state->D
49 eor x17, x12, x13 // Begin aux function round 1 F(x,y,z)=(((y^z)&x)^z)
50 and x16, x17, x11 // Continue aux function round 1 F(x,y,z)=(((y^z)&x)^z)
[all …]
/freebsd/contrib/lua/src/
H A Dlzio.c23 int luaZ_fill (ZIO *z) { in luaZ_fill() argument
25 lua_State *L = z->L; in luaZ_fill()
28 buff = z->reader(L, z->data, &size); in luaZ_fill()
32 z->n = size - 1; /* discount char being returned */ in luaZ_fill()
33 z->p = buff; in luaZ_fill()
34 return cast_uchar(*(z->p++)); in luaZ_fill()
38 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { in luaZ_init() argument
39 z->L = L; in luaZ_init()
40 z->reader = reader; in luaZ_init()
41 z->data = data; in luaZ_init()
[all …]
/freebsd/crypto/openssl/ssl/quic/
H A Duint_set.c2 * Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
83 if (x->range.start - 1 != xprev->range.end) in uint_set_merge_adjacent()
86 x->range.start = xprev->range.start; in uint_set_merge_adjacent()
108 return u64_min(a->end, b->end) in uint_range_overlaps()
109 >= u64_max(a->start, b->start); in uint_range_overlaps()
120 x->range.start = start; in create_set_item()
121 x->range.end = end; in create_set_item()
127 UINT_SET_ITEM *x, *xnext, *z, *zprev, *f; in ossl_uint_set_insert() local
128 uint64_t start = range->start, end = range->end; in ossl_uint_set_insert()
142 z = ossl_list_uint_set_tail(s); in ossl_uint_set_insert()
[all …]
/freebsd/contrib/tzdata/
H A Detcetera4 # 2009-05-17 by Arthur David Olson.
12 # Starting with POSIX 1003.1-2001, the entries below are all
14 # instead of TZ='Etc/GMT+4' one can use the POSIX setting TZ='<-04>+4'.
21 Zone Etc/UTC 0 - UTC
25 #Zone GMT 0 - GMT
27 Zone Etc/GMT 0 - GMT
41 # the abbreviation "-04" and corresponds to 4 hours behind UT
45 # Earlier incarnations of this package were not POSIX-compliant,
47 # Zone GMT-1
[all...]
/freebsd/sys/crypto/openssl/aarch64/
H A Dmd5-aarch64.S1 /* Do not modify. This file is auto-generated from md5-aarch64.pl. */
9 // Save all callee-saved registers
10 stp x19,x20,[sp,#-80]!
16 ldp w10, w11, [x0, #0] // .Load MD5 state->A and state->B
17 ldp w12, w13, [x0, #8] // .Load MD5 state->C and state->D
20 eor x17, x12, x13 // Begin aux function round 1 F(x,y,z)=(((y^z)&x)^z)
21 and x16, x17, x11 // Continue aux function round 1 F(x,y,z)=(((y^z)&x)^z)
30 eor x14, x16, x13 // End aux function round 1 F(x,y,z)=(((y^z)&x)^z)
37 eor x5, x11, x12 // Begin aux function round 1 F(x,y,z)=(((y^z)&x)^z)
39 and x8, x5, x4 // Continue aux function round 1 F(x,y,z)=(((y^z)&x)^z)
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlzio.c1 // SPDX-License-Identifier: MIT
20 int luaZ_fill (ZIO *z) { in luaZ_fill() argument
22 lua_State *L = z->L; in luaZ_fill()
25 buff = z->reader(L, z->data, &size); in luaZ_fill()
29 z->n = size - 1; /* discount char being returned */ in luaZ_fill()
30 z->p = buff; in luaZ_fill()
31 return cast_uchar(*(z->p++)); in luaZ_fill()
35 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { in luaZ_init() argument
36 z->L = L; in luaZ_init()
37 z->reader = reader; in luaZ_init()
[all …]
/freebsd/usr.bin/compress/tests/
H A Dcompress_test.sh30 "Test uncompress without options, filename with .Z"
39 \050\123\252\134\211\360\206\002" >file1.Z
40 atf_check uncompress file1.Z
42 atf_check test ! -e file1.Z
49 "Test uncompress without options, filename without .Z"
58 \050\123\252\134\211\360\206\002" >file1.Z
61 atf_check test ! -e file1.Z
77 \050\123\252\134\211\360\206\002" >file1.Z
78 atf_check -o file:expectfile1 -x 'uncompress <file1.Z'
85 "Test uncompress with -c"
[all …]
/freebsd/contrib/bearssl/src/symcipher/
H A Dpoly1305_ctmul32.c34 * Implementation notes: we split the 130-bit values into ten in poly1305_inner()
35 * 13-bit words. This gives us some space for carries and allows in poly1305_inner()
36 * using only 32x32->32 multiplications, which are way faster than in poly1305_inner()
37 * 32x32->64 multiplications on the ARM Cortex-M0/M0+, and also in poly1305_inner()
38 * help in making constant-time code on the Cortex-M3. in poly1305_inner()
40 * Since we compute modulo 2^130-5, the "upper words" become in poly1305_inner()
45 * In each loop iteration, a[] and r[] words are 13-bit each, in poly1305_inner()
55 uint32_t z, cc1, cc2; in poly1305_inner() local
58 * If there is a partial block, right-pad it with zeros. in poly1305_inner()
108 * a 32-bit word and still have some room for carries. in poly1305_inner()
[all …]
/freebsd/contrib/file/tests/
H A Dmatilde.arm.testfile3z����P<��s��`8A{1e�d!�Tkr(��n���u�RP<Rby��z��z�;+~��*�s�'�7q#�ڰ<p�l���-*�Bm� h2U�v��ښ�m…
4 R��0-as�Aꏾ�<�H���Ҵ�_d)Q����A����Kp���@< <J?�9a�V�9u8�9��Fp�ך�"��P<
5 �Hpc��A��Z�%�;�.s
6 �%Vйa����@<x@m1�A�"J�)��C�.t4�c��d0<zg���Y*˴fRMg�J5o��;�κ�h�<< Pg����*�0�*=�K|�K~��%…
9 !�:���=K����[��<Ɖ�lH��!L��-��I��w�9:y��<�U'�ԫ�Lc�\vyY>�Ԫ�ϧ�4p<&@i�~#�������)J$��
10 …(�\�W�!"-@��C]�4�<&F����*�2;[��v�w�>�=�����<!x @;����e�R!���F�iW�M���0<{��~a�A�ʞ�L…
11 …<,��~kT��ܩZ ݍ�\�cBP�B:�<6BmЩ���2Z��8Ђ�ׯ�^��lFaP< ���I�a-��0� Z���p~iz�PP��� �<4xcC��…
14 ,�3۳ޢl�<`e�/ wb��0���n�(R�! p&�K�0<& qX�?��kƳ��y���fD�.+2D��`<L{��K��E2�)5Em@Z�.�fN@…

12345678910>>...45