Home
last modified time | relevance | path

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

12345678910>>...64

/titanic_50/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[%i%d;%dR (on VT100/ANSI/ECMA-48-compatible terminals).
337 :do=\E[B:le=\E[D:nd=\E[C:up=\E[A:
339 :DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:tc=ansi+local1:
[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[%i%d;%dR (on VT100/ANSI/ECMA-48-compatible terminals).
338 cub1=\E[D, cud1=\E[B, cuf1=\E[C, cuu1=\E[A,
340 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC,
[all …]
/titanic_50/usr/src/lib/libshell/common/tests/
H A Dsubstring.sh308 D=$';' E=$'\\\\' Q=$'"' S=$'\'' M='nested pattern substitution failed'
367 [[ ${x/*%(()D${D}E${E})*/\1} == '(-\;-)' ]] || err_exit $M
369 [[ ${x/*%(()D${D}E${E})*/\1} == '(-)' ]] || err_exit $M
371 [[ ${x/*%(()D${D}E${E})*/\1} == '(-)' ]] || err_exit $M
407 [[ ${x/*%(()E${E})*/\1} == '(-\)-)' ]] || err_exit $M
409 [[ ${x/*%(()E${E})*/\1} == '(-\\)' ]] || err_exit $M
411 [[ ${x/*%(()E${E}Q${Q})*/\1} == '(-\")' ]] || err_exit $M
413 [[ ${x/*%(()E${E}Q${Q})*/\1} == '(-\")' ]] || err_exit $M
415 [[ ${x/*%(()E${E}Q${S}Q${Q})*/\1} == $'-(-\'")"-)-' ]] || err_exit $M
417 [[ ${x/*%(()E${E}Q${S}Q${Q})*/\1} == $'(-\\\'")"-)' ]] || err_exit $M
[all …]
H A Dshtests93 E=error
100 then echo test $i passed ${time:+"at $(date +%Y-%m-%d+%H:%M:%S)"} "[ $t $T 0 ${E}s ]"
104 E=signal
107 then E=${E}s
109 echo test $i failed ${time:+"at $(date +%Y-%m-%d+%H:%M:%S)"} with exit code $e "[ $t $T $e $E ]"
129 E=error
135 then echo test $o passed ${time:+"at $(date +%Y-%m-%d+%H:%M:%S)"} "[ $t $T 0 ${E}s ]"
139 E=signal
142 then E=${E}s
144 echo test $o failed ${time:+"at $(date +%Y-%m-%d+%H:%M:%S)"} with exit code $e "[ $t $T $e $E ]"
[all …]
/titanic_50/usr/src/lib/libm/common/C/
H A Dlibm_macros.h61 #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))
72 #define XTOI(E, I) \ argument
73 I = ((E[2]<<16) | (0xffff & (E[1]>>15)))
/titanic_50/usr/src/lib/libsqlite/src/
H A Dhash.h102 #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
/titanic_50/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,V42,/SKL/skylake_uncore_v42.json,uncore
[all …]
/titanic_50/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->sc_cmd_flags |= SC_CMD_EOF; in engine_cmd_getc()
78 E->sc_cmd_flags |= SC_CMD_EOF; in engine_cmd_getc()
83 E->sc_cmd_buf = gl_get_line(E->sc_gl, "> ", NULL, -1); in engine_cmd_getc()
[all …]
/titanic_50/usr/src/cmd/dtrace/test/tst/common/printf/
H A Dtst.printeE.d.out3 %E = 0.000000E+00
5 %E = 0.000000E+00
/titanic_50/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
/titanic_50/usr/src/lib/libcrypt/common/
H A Ddes_crypt.c136 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_50/usr/src/lib/gss_mechs/mech_krb5/crypto/des/
H A Dafsstring2key.c375 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[i] = e[i]; in krb5_afs_crypt_setkey()
487 memcpy(E, e, 48); in krb5_afs_crypt_setkey()
495 static void krb5_afs_encrypt(char *block, char *E, char (*KS)[48]) in krb5_afs_encrypt() argument
[all …]
/titanic_50/usr/src/lib/libm/common/complex/
H A Dcatanl.c117 E = 2.910383045673370361328125000000000000000e-11L, /* 2**-35 */ variable
120 E = 8.673617379884035472059622406959533691406e-19L, /* 2**-60 */
186 } else if (ay < E * (one + ax)) { in catanl()
255 if (ax < E) in catanl()
278 } else if (ax < E * E * E * E) { in catanl()
/titanic_50/usr/src/lib/libshell/common/scripts/
H A Dgnaw.sh987 ["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[1;33m")"
995 ["fg_blue"]="$(print -n "\E[34m")"
996 ["fg_lightblue"]="$(print -n "\E[1;34m")"
[all …]
/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A D_crypt.c146 #define E (_c->_E) macro
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[6*i+j+24]; in _crypt()
429 E[6*i+j+24] = temp; in _crypt()
469 E[i] = e[i]; in _cryptinit()
/titanic_50/usr/src/lib/iconv_modules/utf-8/common/binarytables/srcs/
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 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 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 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 …]
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 DCP1256+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
177 0x81 0xD9BE // U+067E
192 0x84 0xE2809E // U+201E
[all …]
/titanic_50/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_50/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> 2
[all …]
/titanic_50/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>>...64