Home
last modified time | relevance | path

Searched refs:Z (Results 1 – 25 of 1296) sorted by relevance

12345678910>>...52

/titanic_41/usr/src/lib/libc/sparc/fp/
H A D_Q_lltoq.c45 Z.l.msw = 0xc03e0000; in _Q_lltoq()
46 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Q_lltoq()
47 QUAD_RETURN(Z); in _Q_lltoq()
52 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Q_lltoq()
53 QUAD_RETURN(Z); in _Q_lltoq()
61 Z.l.msw = ((unsigned long long) x >> (e - 16)) & 0xffff; in _Q_lltoq()
62 Z.l.frac2 = (unsigned long long) x >> (e - 48); in _Q_lltoq()
63 Z.l.frac3 = (unsigned long long) x << (80 - e); in _Q_lltoq()
65 Z.l.msw = ((unsigned long long) x >> (e - 16)) & 0xffff; in _Q_lltoq()
66 Z.l.frac2 = (unsigned long long) x << (48 - e); in _Q_lltoq()
[all …]
H A D_Q_itoq.c60 Z.l.msw = 0xc01e0000; in _Qp_itoq()
61 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
62 QUAD_RETURN(Z); in _Qp_itoq()
67 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
68 QUAD_RETURN(Z); in _Qp_itoq()
76 Z.l.msw = ((unsigned) x >> (e - 16)) & 0xffff; in _Qp_itoq()
77 Z.l.frac2 = (unsigned) x << (48 - e); in _Qp_itoq()
79 Z.l.msw = ((unsigned) x << (16 - e)) & 0xffff; in _Qp_itoq()
80 Z.l.frac2 = 0; in _Qp_itoq()
82 Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
[all …]
H A D_Q_ulltoq.c42 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Q_ulltoq()
43 QUAD_RETURN(Z); in _Q_ulltoq()
51 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Q_ulltoq()
52 Z.l.frac2 = x >> (e - 48); in _Q_ulltoq()
53 Z.l.frac3 = x << (80 - e); in _Q_ulltoq()
55 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Q_ulltoq()
56 Z.l.frac2 = x << (48 - e); in _Q_ulltoq()
57 Z.l.frac3 = 0; in _Q_ulltoq()
59 Z.l.msw = (x << (16 - e)) & 0xffff; in _Q_ulltoq()
60 Z.l.frac2 = Z.l.frac3 = 0; in _Q_ulltoq()
[all …]
H A D_Q_sub.c89 __quad_fsubq(ox, oy, &Z); in _Qp_sub()
91 Z = (xm & 0x8000)? *y : *oy; in _Qp_sub()
92 Z.l.msw |= 0x8000; in _Qp_sub()
97 QUAD_RETURN(Z); in _Qp_sub()
100 Z = *oy; in _Qp_sub()
101 QUAD_RETURN(Z); in _Qp_sub()
109 __quad_fsubq(ox, oy, &Z); in _Qp_sub()
111 Z.l.msw = 0x7fffffff; in _Qp_sub()
112 Z.l.frac2 = Z.l.frac3 = in _Qp_sub()
113 Z.l.frac4 = 0xffffffff; in _Qp_sub()
[all …]
H A D_Q_add.c86 __quad_faddq(ox, oy, &Z); in _Qp_add()
88 Z = (xm & 0x8000)? *y : *oy; in _Qp_add()
89 Z.l.msw |= 0x8000; in _Qp_add()
94 QUAD_RETURN(Z); in _Qp_add()
97 Z = *oy; in _Qp_add()
98 QUAD_RETURN(Z); in _Qp_add()
106 __quad_faddq(ox, oy, &Z); in _Qp_add()
108 Z.l.msw = 0x7fffffff; in _Qp_add()
109 Z.l.frac2 = Z.l.frac3 = in _Qp_add()
110 Z.l.frac4 = 0xffffffff; in _Qp_add()
[all …]
H A D_Q_utoq.c57 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_uitoq()
58 QUAD_RETURN(Z); in _Qp_uitoq()
66 Z.l.msw = ((unsigned) x >> (e - 16)) & 0xffff; in _Qp_uitoq()
67 Z.l.frac2 = (unsigned) x << (48 - e); in _Qp_uitoq()
69 Z.l.msw = ((unsigned) x << (16 - e)) & 0xffff; in _Qp_uitoq()
70 Z.l.frac2 = 0; in _Qp_uitoq()
72 Z.l.frac3 = Z.l.frac4 = 0; in _Qp_uitoq()
73 Z.l.msw |= ((e + 0x3fff) << 16); in _Qp_uitoq()
74 QUAD_RETURN(Z); in _Qp_uitoq()
H A D_Q_mul.c107 __quad_fmulq(x, y, &Z); in _Qp_mul()
109 Z = *y; in _Qp_mul()
110 Z.l.msw |= 0x8000; in _Qp_mul()
115 QUAD_RETURN(Z); in _Qp_mul()
119 __quad_fmulq(x, y, &Z); in _Qp_mul()
121 Z = *x; in _Qp_mul()
122 Z.l.msw |= 0x8000; in _Qp_mul()
127 QUAD_RETURN(Z); in _Qp_mul()
129 Z = *y; in _Qp_mul()
130 QUAD_RETURN(Z); in _Qp_mul()
[all …]
H A D_Q_div.c125 __quad_fdivq(x, y, &Z); in _Qp_div()
127 Z = *y; in _Qp_div()
128 Z.l.msw |= 0x8000; in _Qp_div()
133 QUAD_RETURN(Z); in _Qp_div()
137 __quad_fdivq(x, y, &Z); in _Qp_div()
139 Z = *x; in _Qp_div()
140 Z.l.msw |= 0x8000; in _Qp_div()
145 QUAD_RETURN(Z); in _Qp_div()
147 Z = *y; in _Qp_div()
148 QUAD_RETURN(Z); in _Qp_div()
[all …]
H A D_Q_sqrt.c104 Z = *x; in _Qp_sqrt()
105 QUAD_RETURN(Z); in _Qp_sqrt()
119 __quad_fsqrtq(x, &Z); in _Qp_sqrt()
121 Z = *x; in _Qp_sqrt()
122 Z.l.msw |= 0x8000; in _Qp_sqrt()
127 QUAD_RETURN(Z); in _Qp_sqrt()
129 Z = *x; in _Qp_sqrt()
130 QUAD_RETURN(Z); in _Qp_sqrt()
135 __quad_fsqrtq(x, &Z); in _Qp_sqrt()
137 Z.l.msw = 0x7fffffff; in _Qp_sqrt()
[all …]
H A D_Q_stoq.c83 __quad_fstoq(&x, &Z); in _Qp_stoq()
84 QUAD_RETURN(Z); in _Qp_stoq()
92 Z.l.msw = m | (u.l & 0x80000000) | ((u.l & 0x7fff80) >> 7); in _Qp_stoq()
93 Z.l.frac2 = u.l << 25; in _Qp_stoq()
94 Z.l.frac3 = Z.l.frac4 = 0; in _Qp_stoq()
95 QUAD_RETURN(Z); in _Qp_stoq()
H A D_Q_dtoq.c83 __quad_fdtoq(&x, &Z); in _Qp_dtoq()
84 QUAD_RETURN(Z); in _Qp_dtoq()
92 Z.l.msw = m | (u.l.hi & 0x80000000) | ((u.l.hi & 0xffff0) >> 4); in _Qp_dtoq()
93 Z.l.frac2 = (u.l.hi << 28) | (u.l.lo >> 4); in _Qp_dtoq()
94 Z.l.frac3 = u.l.lo << 28; in _Qp_dtoq()
95 Z.l.frac4 = 0; in _Qp_dtoq()
96 QUAD_RETURN(Z); in _Qp_dtoq()
H A D_Q_neg.c54 Z.l.msw = x->l.msw ^ 0x80000000; in _Qp_neg()
55 Z.l.frac2 = x->l.frac2; in _Qp_neg()
56 Z.l.frac3 = x->l.frac3; in _Qp_neg()
57 Z.l.frac4 = x->l.frac4; in _Qp_neg()
58 QUAD_RETURN(Z); in _Qp_neg()
/titanic_41/usr/src/lib/libc/sparcv9/fp/
H A D_Qp_xtoq.c44 Z.l.msw = 0xc03e0000; in _Qp_xtoq()
45 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_xtoq()
46 QUAD_RETURN(Z); in _Qp_xtoq()
51 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_xtoq()
52 QUAD_RETURN(Z); in _Qp_xtoq()
60 Z.l.msw = ((unsigned long) x >> (e - 16)) & 0xffff; in _Qp_xtoq()
61 Z.l.frac2 = (unsigned long) x >> (e - 48); in _Qp_xtoq()
62 Z.l.frac3 = (unsigned long) x << (80 - e); in _Qp_xtoq()
64 Z.l.msw = ((unsigned long) x >> (e - 16)) & 0xffff; in _Qp_xtoq()
65 Z.l.frac2 = (unsigned long) x << (48 - e); in _Qp_xtoq()
[all …]
H A D_Qp_uxtoq.c41 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_uxtoq()
42 QUAD_RETURN(Z); in _Qp_uxtoq()
50 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Qp_uxtoq()
51 Z.l.frac2 = x >> (e - 48); in _Qp_uxtoq()
52 Z.l.frac3 = x << (80 - e); in _Qp_uxtoq()
54 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Qp_uxtoq()
55 Z.l.frac2 = x << (48 - e); in _Qp_uxtoq()
56 Z.l.frac3 = 0; in _Qp_uxtoq()
58 Z.l.msw = (x << (16 - e)) & 0xffff; in _Qp_uxtoq()
59 Z.l.frac2 = Z.l.frac3 = 0; in _Qp_uxtoq()
[all …]
/titanic_41/usr/src/cmd/csh/
H A Dsh.char.h24 #define isauxspZ (!isascii(Z)&&!(Z&QUOTE)&&iswspace(Z))
25 #define isauxsp(c) (Z=((unsigned)(c)), isauxspZ)
38 unsigned int Z; /* A place to save macro arg to avoid side-effect!*/ variable
54 #define cmapZ(bits) (isascii(Z)?(_cmap[Z] & (bits)):0)
55 #define cmap(c, bits) (Z=((unsigned)(c)), cmapZ(bits))
60 #define issp(c) (Z=((unsigned)(c)), cmapZ( _SP)||isauxspZ)
62 #define isspnl(c) (Z=((unsigned)(c)), cmapZ( _SP|_NL)||isauxspZ)
64 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\
65 ||isphonogram(Z)||isideogram(Z)))
67 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\
[all …]
/titanic_41/usr/src/cmd/vi/port/
H A Dmakeoptions1 #ident "%Z%%M% %I% %E% SMI"
78 %s/\([A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]*\)\( \)/\1/
86 #ident "%Z%%M% %I% %E% SMI"
/titanic_41/usr/src/lib/libxcurses/src/libc/mks/
H A Dm_ord.c152 int A,Z,a,z; in main() local
155 Z = m_ord('Z'); in main()
159 A, Z, m_chr(A), m_chr(Z)); in main()
/titanic_41/usr/src/cmd/fs.d/ufs/volcopy/
H A Dvolcopy.h39 #define EQ(X,Y,Z) !strncmp(X,Y,Z) argument
40 #define NOT_EQ(X,Y,Z) strncmp(X,Y,Z) argument
/titanic_41/usr/src/lib/libsqlite/src/
H A Dparse.y294 select(A) ::= select(X) multiselect_op(Y) oneselect(Z). {
295 if( Z ){
296 Z->op = Y;
297 Z->pPrior = X;
299 A = Z;
307 groupby_opt(P) having_opt(Q) orderby_opt(Z) limit_opt(L). {
308 A = sqliteSelectNew(W,X,Y,P,Q,Z,D,L.limit,L.offset);
371 seltablist(A) ::= stl_prefix(X) nm(Y) dbnm(D) as(Z) on_opt(N) using_opt(U). {
373 if( Z.n ) sqliteSrcListAddAlias(A,&Z);
384 as(Z) on_opt(N) using_opt(U). {
[all …]
H A Ddate.c339 int Z, A, B, C, D, E, X1; in computeYMD() local
346 Z = p->rJD + 0.5; in computeYMD()
347 A = (Z - 1867216.25)/36524.25; in computeYMD()
348 A = Z + 1 + A - (A/4); in computeYMD()
365 int Z, s; in computeHMS() local
367 Z = p->rJD + 0.5; in computeHMS()
368 s = (p->rJD + 0.5 - Z)*86400000.0 + 0.5; in computeHMS()
516 int Z; in parseModifier() local
521 Z = p->rJD + 1.5; in parseModifier()
522 Z %= 7; in parseModifier()
[all …]
/titanic_41/usr/src/cmd/svr4pkg/pkgscripts/
H A Di.CompCpio.sh299 if [ -r $PKGSRC/reloc.cpio.Z ]; then
301 Reloc_Arch=$PKGSRC/reloc.cpio.Z
305 if [ -r $PKGSRC/root.cpio.Z ]; then
307 Root_Arch=$PKGSRC/root.cpio.Z
323 if [ -r $PKGSRC/reloc.Z ]; then
325 Reloc_Arch=$PKGSRC/reloc.Z
329 if [ -r $PKGSRC/root.Z ]; then
331 Root_Arch=$PKGSRC/root.Z
/titanic_41/usr/src/cmd/loadkeys/type_4/
H A Ddenmark26 #ident "%Z%%M% %I% %E% SMI"
58 key 100 base z shift Z caps Z ctrl ^Z altg nop
59 key 100 base z shift Z caps Z ctrl ^Z altg nop
/titanic_41/usr/src/test/zfs-tests/tests/functional/history/
H A DMakefile37 DATAFILES = i386.migratedpool.DAT.Z \
39 sparc.migratedpool.DAT.Z \
41 zfs-pool-v4.dat.Z
/titanic_41/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dlex.l37 symbol [_a-zA-Z][_a-zA-Z0-9]*
38 varstring \$[_a-zA-Z][_a-zA-Z0-9]* /* $<name> */
39 hexnumber 0[xX][0-9a-zA-Z]+
/titanic_41/usr/src/cmd/troff/troff.d/
H A Dmaketables1 #ident "%Z%%M% %I% %E% SMI"
72 [A-Z]) $MAKEDEV $i;;
74 [A-Z][0-9]) $MAKEDEV $i;;
76 [A-Z][A-Z]) $MAKEDEV $i;;

12345678910>>...52