Home
last modified time | relevance | path

Searched refs:E (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/titanic_52/usr/src/cmd/terminfo/
H A Dtermcap.src4 # by Thomas E. Dickey (TD).
69 # by global-replacing \E(B and \E)B with the appropriate ISO 6429 enablers
70 # for your character set. \E(A and \E)A enables the British character set
75 # so \E)0 should be avoided in <enacs> and initialization strings.
205 # from the terminal. Common values for <u9> will be ^E (on older ASCII
206 # terminals) or \E[c (on newer VT100/ANSI/ECMA-48-compatible terminals).
209 # report. A typical value (for VT100 terminals) is \E[6n.
223 # \E[
[all...]
H A Dterminfo.src4 # by Thomas E. Dickey (TD).
69 # by global-replacing \E(B and \E)B with the appropriate ISO 6429 enablers
70 # for your character set. \E(A and \E)A enables the British character set
75 # so \E)0 should be avoided in <enacs> and initialization strings.
205 # from the terminal. Common values for <u9> will be ^E (on older ASCII
206 # terminals) or \E[c (on newer VT100/ANSI/ECMA-48-compatible terminals).
209 # report. A typical value (for VT100 terminals) is \E[6n.
223 # \E[
[all...]
/titanic_52/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dsubstring.sh302 [[ ${.sh.match[@]:2:4} == 'B C D E' ]] || err_exit '${.sh.match[@]:2:4} incorrect'
304 D=$';' E=$'\\\\' Q=$'"' S=$'\'' M='nested pattern substitution failed'
363 [[ ${x/*%(()D${D}E${E})*/\1} == '(-\;-)' ]] || err_exit $M
365 [[ ${x/*%(()D${D}E${E})*/\1} == '(-)' ]] || err_exit $M
367 [[ ${x/*%(()D${D}E${E})*/\1} == '(-)' ]] || err_exit $M
403 [[ ${x/*%(()E${E})*/\
[all...]
H A Dpty.sh191 c echo he\E
214 c echo bad\E
321 w echo ESC=:\cV\E:
322 u ^ESC=:\E:\r?\n$
356 c echo save\E
376 c echo hello\E
380 c A world\E
403 c \E
417 c \E
435 u :$|:\E|line
[all...]
/titanic_52/usr/src/lib/libm/common/C/
H A Dlibm_macros.h58 * x86 extended double precision value ("E"); the low-order bits
61 #define ITOX(I, E) \ argument
62 E[2] = 0xffff & ((I) >> 16); \
63 E[1] = (((I) & 0x7fff0000) == 0)? \
64 (E[1] & 0x7fff) | (0x7fff8000 & ((I) << 15)) :\
65 0x80000000 | (E[1] & 0x7fff) | (0x7fff8000 & ((I) << 15))
69 * extended double precision value ("E") to the high-order 32 bits
72 #define XTOI(E, I) \ argument
73 I = ((E[2]<<16) | (0xffff & (E[
[all...]
/titanic_52/usr/src/lib/libsqlite/src/
H A Dhash.h2 #pragma ident "%Z%%M% %I% %E% SMI"
102 #define sqliteHashNext(E) ((E)->next) argument
103 #define sqliteHashData(E) ((E)->data) argument
104 #define sqliteHashKey(E) ((E)->pKey) argument
105 #define sqliteHashKeysize(E) ((E)->nKey) argument
H A Dparse.y35 #pragma ident "%Z%%M% %I% %E% SMI"
424 on_opt(N) ::= ON expr(E). {N = E;}
538 expr(A) ::= LP(B) expr(X) RP(E). {A = X; sqliteExprSpan(A,&B,&E); }
561 expr(A) ::= ID(X) LP exprlist(Y) RP(E). {
563 sqliteExprSpan(A,&X,&E);
565 expr(A) ::= ID(X) LP STAR RP(E). {
567 sqliteExprSpan(A,&X,&E);
605 expr(A) ::= expr(X) ISNULL(E)
[all...]
/titanic_52/usr/src/data/perfmon/
H A Dmapfile.csv2 GenuineIntel-6-2E,V2,/NHM-EX/NehalemEX_core_V2.json,core
3 GenuineIntel-6-1E,V2,/NHM-EP/NehalemEP_core_V2.json,core
33 GenuineIntel-6-3E,V20,/IVT/ivytown_core_v20.json,core
34 GenuineIntel-6-3E,V20,/IVT/ivytown_matrix_v20.json,offcore
35 GenuineIntel-6-3E,V20,/IVT/ivytown_uncore_v20.json,uncore
61 GenuineIntel-6-4E,V42,/SKL/skylake_core_v42.json,core
62 GenuineIntel-6-5E,V42,/SKL/skylake_core_v42.json,core
63 GenuineIntel-6-4E,V42,/SKL/skylake_matrix_v42.json,offcore
64 GenuineIntel-6-5E,V42,/SKL/skylake_matrix_v42.json,offcore
65 GenuineIntel-6-4E,V4
[all...]
/titanic_52/usr/src/cmd/svc/svccfg/
H A Dsvccfg_engine.c56 engine_cmd_getc(engine_state_t *E) in engine_cmd_getc() argument
58 if (E->sc_cmd_file != NULL) in engine_cmd_getc()
59 return (getc(E->sc_cmd_file)); in engine_cmd_getc()
61 if (E->sc_cmd_flags & SC_CMD_EOF) in engine_cmd_getc()
64 if (E->sc_cmd_bufoff < E->sc_cmd_bufsz) in engine_cmd_getc()
65 return (*(E->sc_cmd_buf + E->sc_cmd_bufoff++)); in engine_cmd_getc()
67 if (!(E->sc_cmd_flags & SC_CMD_IACTIVE)) { in engine_cmd_getc()
68 E in engine_cmd_getc()
120 engine_cmd_ungetc(engine_state_t * E,char c) engine_cmd_ungetc() argument
133 engine_cmd_nputs(engine_state_t * E,char * c,size_t n) engine_cmd_nputs() argument
[all...]
/titanic_52/usr/src/cmd/dtrace/test/tst/common/printf/
H A Dtst.printeE.d.out3 %E = 0.000000E+00
5 %E = 0.000000E+00
/titanic_52/usr/src/common/crypto/sha1/amd64/
H A Dsha1-x86_64.pl50 my ($code, $ctx, $inp, $num, $xi, $t0, $t1, $i, @V, $A, $B, $C, $D, $E, $T);
78 $E="%r11d";
82 @V=($A,$B,$C,$D,$E,$T);
103 mov 16($ctx),$E
252 add 0($ctx),$E
257 mov $E,0($ctx)
263 xchg $E,$A # mov $E,$A
265 xchg $E,$C # mov $A,$C
267 # mov $C,$E
[all...]
/titanic_52/usr/src/lib/libcrypt/common/
H A Ddes_crypt.c134 * The E bit-selection table.
136 static char E[48]; variable
199 E[i] = e2[i]; in des_setkey_nolock()
293 preS, E, KS, S, f, tempL, P, FP); in des_encrypt_nolock()
296 preS, E, KS, S, f, tempL, P, FP); in des_encrypt_nolock()
362 temp = E[6*i+j]; in des_crypt()
363 E[6*i+j] = E[6*i+j+24]; in des_crypt()
364 E[6*i+j+24] = (char)temp; in des_crypt()
/titanic_52/usr/src/lib/gss_mechs/mech_krb5/crypto/des/
H A Dafsstring2key.c292 * The E bit-selection table.
375 char E[48]; in afs_crypt() local
391 krb5_afs_crypt_setkey(block, E, KS); in afs_crypt()
404 temp = E[6*i+j]; in afs_crypt()
405 E[6*i+j] = E[6*i+j+24]; in afs_crypt()
406 E[6*i+j+24] = temp; in afs_crypt()
412 krb5_afs_encrypt(block,E,KS); in afs_crypt()
435 static void krb5_afs_crypt_setkey(char *key, char *E, char (*KS)[48]) in krb5_afs_crypt_setkey() argument
484 E[ in krb5_afs_crypt_setkey()
495 krb5_afs_encrypt(char * block,char * E,char (* KS)[48]) krb5_afs_encrypt() argument
[all...]
/titanic_52/usr/src/lib/libm/common/complex/
H A Dcatanl.c90 * EXCEPTION CASES (conform to ISO/IEC 9899:1999(E)):
117 E = 2.910383045673370361328125000000000000000e-11L, /* 2**-35 */ variable
120 E = 8.673617379884035472059622406959533691406e-19L, /* 2**-60 */
186 } else if (ay < E * (one + ax)) { in catanl()
190 * |y| < E*(1+|x|) in catanl()
191 * where E=2**-29, -35, -60 for double, extended, quad precision in catanl()
250 * B = - log [ -----] = - log (1+ ---) = [ |x|<E, else 0.25* in catanl()
255 if (ax < E) in catanl()
265 * when |x| > 1/E^2, in catanl()
278 } else if (ax < E * in catanl()
[all...]
/titanic_52/usr/src/cmd/ast/libshell/common/scripts/
H A Dgnaw.sh383 ~(Fi)q | $'\E')
747 if [[ "$c" == $'\E' ]] ; then
987 ["bg_black"]="$(print -n "\E[40m")"
988 ["fg_black"]="$(print -n "\E[30m")"
989 ["fg_red"]="$(print -n "\E[31m")"
990 ["fg_lightred"]="$(print -n "\E[1;31m")"
991 ["fg_green"]="$(print -n "\E[32m")"
992 ["fg_lightgreen"]="$(print -n "\E[1;32m")"
993 ["fg_yellow"]="$(print -n "\E[33m")"
994 ["fg_lightyellow"]="$(print -n "\E[
[all...]
/titanic_52/usr/src/lib/libbc/libc/gen/common/
H A D_crypt.c30 #pragma ident "%Z%%M% %I% %E% SMI"
125 * The E bit-selection table.
146 #define E (_c->_E) macro
215 * The E bit-selection table.
331 * Expand R to 48 bits using the E selector; in encrypt()
335 preS[j] = R[E[j]-1] ^ KS[i][j]; in encrypt()
415 E[i] = e[i]; in _crypt()
427 temp = E[6*i+j]; in _crypt()
428 E[6*i+j] = E[ in _crypt()
[all...]
/titanic_52/usr/src/lib/iconv_modules/utf-8/common/binarytables/srcs/
H A DIBM-866+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
186 0x8E 0xD09E // U+041E
202 0x9E 0xD0AE // U+042E
[all...]
H A DCP1251+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
188 0x84 0xE2809E // U+201E
244 0xA1 0xD08E // U+040E
[all...]
H A DCP866+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
186 0x8E 0xD09E // U+041E
202 0x9E 0xD0AE // U+042E
[all...]
H A DIBM-855+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
196 0x98 0xD19E // U+045E
197 0x99 0xD08E // U+040E
[all...]
H A DCP1250+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
174 0x84 0xE2809E // U+201E
225 0x9E 0xC5BE // U+017E
[all...]
H A DCP855+UTF-8.src54 0x0E 0x0E // U+000E
70 0x1E 0x1E // U+001E
86 0x2E 0x2E // U+002E
102 0x3E 0x3E // U+003E
118 0x4E 0x4E // U+004E
134 0x5E 0x5E // U+005E
150 0x6E 0x6E // U+006E
166 0x7E 0x7E // U+007E
196 0x98 0xD19E // U+045E
197 0x99 0xD08E // U+040E
[all...]
/titanic_52/usr/src/lib/iconv_modules/ko/common/
H A Dutf_euc.h45 enum { E, CI, V, CF } prev_state; enumerator
49 cd->ci = cd->v = cd->cf = CVC_FILL; cd->prev_state = E;
55 if (cd->prev_state != E)\
/titanic_52/usr/src/cmd/localedef/data/
H A Dwidths.txt529 <HANGUL_JUNGSEONG_O-E> 0
545 <HANGUL_JUNGSEONG_YU-E> 0
2273 <CJK_UNIFIED_IDEOGRAPH-340E> 2
2289 <CJK_UNIFIED_IDEOGRAPH-341E> 2
2305 <CJK_UNIFIED_IDEOGRAPH-342E> 2
2321 <CJK_UNIFIED_IDEOGRAPH-343E> 2
2337 <CJK_UNIFIED_IDEOGRAPH-344E> 2
2353 <CJK_UNIFIED_IDEOGRAPH-345E> 2
2369 <CJK_UNIFIED_IDEOGRAPH-346E> 2
2385 <CJK_UNIFIED_IDEOGRAPH-347E>
[all...]
/titanic_52/usr/src/uts/common/io/i40e/
H A Di40e_osdep.h36 #define DEBUGOUT5(S, A, B, C, D, E) \ argument
37 i40e_debug(NULL, 0, S, A, B, C, D, E)
38 #define DEBUGOUT6(S, A, B, C, D, E, F) \ argument
39 i40e_debug(NULL, 0, S, A, B, C, D, E, F)
40 #define DEBUGOUT7(S, A, B, C, D, E, F, G) \ argument
41 i40e_debug(NULL, 0, S, A, B, C, D, E, F, G)

12345678910>>...65