Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 1997) sorted by path

12345678910>>...80

/illumos-gate/
H A DCODE_OF_CONDUCT.md60 community include using an official project e-mail address, posting via an
/illumos-gate/usr/src/
H A DMakefile.msg.targ50 $(SED) -e '/^\# msgid/,/^\# msgstr/d' -e '/^domain/d' \
51 -e '/^\#$$/d' -e '/^\#, /d' \
H A DREADME.license-files41 you'll put one in each source directory (i.e. one per library,
/illumos-gate/usr/src/boot/efi/loader/arch/arm/
H A Dexec.c67 Elf_Ehdr *e; in __elfN() local
74 e = (Elf_Ehdr *)&fmp->md_data; in __elfN()
82 entry = efi_translate(e->e_entry); in __elfN()
/illumos-gate/usr/src/boot/forth/
H A Dmenu.rc31 set maintoggled_text[1]="R[e]covery (root/root) [Enter]"
/illumos-gate/usr/src/boot/i386/libi386/
H A Dvidconsole.c488 uint8_t msl, s, e; in vidc_text_set_cursor() local
492 e = vga_get_crtc(VGA_REG_ADDR, VGA_CRTC_CESL); in vidc_text_set_cursor()
498 e = msl; in vidc_text_set_cursor()
503 vga_set_crtc(VGA_REG_ADDR, VGA_CRTC_CESL, e); in vidc_text_set_cursor()
/illumos-gate/usr/src/boot/include/
H A Dassert.h49 #define assert(e) ((void)0) argument
50 #define _assert(e) ((void)0) argument
52 #define _assert(e) assert(e) argument
54 #define assert(e) ((e) ? (void)0 : __assert(__func__, __FILE__, \ argument
55 __LINE__, #e))
/illumos-gate/usr/src/boot/libsa/
H A Ddosfs.c110 #define entsec(e) ((e) >> DSHIFT) argument
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c130 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
143 e = H[4]; f = H[5]; g = H[6]; h = H[7]; in SHA256Transform()
147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
149 h = g; g = f; f = e; e = d + T1; in SHA256Transform()
155 H[4] += e; H[5] += f; H[6] += g; H[7] += h; in SHA256Transform()
161 uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80]; in SHA512Transform() local
177 e = H[4]; f = H[5]; g = H[6]; h = H[7]; in SHA512Transform()
181 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t]; in SHA512Transform()
183 h = g; g = f; f = e; e = d + T1; in SHA512Transform()
189 H[4] += e; H[5] += f; H[6] += g; H[7] += h; in SHA512Transform()
/illumos-gate/usr/src/cmd/abi/appcert/etc/
H A Detc.tweaks.in108 # These special symbols are well-known, e.g. crt, and uninteresting.
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm995 if (! -e $file) {
1023 if (! -e $tmp1) {
1026 if (! -e $tmp1) {
1380 if (-e $file) {
1543 if (-e $lib) {
1799 if (-e $lib64) {
1804 if (-e $lib64) {
1809 if (-e $lib64) {
1817 if ($lib2 !~ m,/, || ! -e $lib2) {
H A Dappcert.pl278 if (! -e $item) {
504 if (-e $dirpath) {
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dbindings.c98 ENTRY *e; in need_exception_binding() local
101 exception = ((e = symtab_get_exception()) != NULL)? in need_exception_binding()
102 (name_of(e)? name_of(e): ""): ""; in need_exception_binding()
165 ENTRY *e = symtab_get_errval(); in generate_a_binding() local
166 char *errvar = (e == NULL)? NULL: name_of(e); in generate_a_binding()
H A Dinterceptor.c294 ENTRY *e; in generate_i_bindings() local
297 exception = ((e = symtab_get_exception()) != NULL)? in generate_i_bindings()
298 (name_of(e)? name_of(e): ""): ""; in generate_i_bindings()
362 ENTRY *e; in generate_i_prints() local
365 if ((e = symtab_get_first_arg()) != NULL || !is_void(e)) { in generate_i_prints()
H A Dprintfuncs.c53 ENTRY *e; in generate_printf() local
62 for (e = symtab_get_first_arg(); e != NULL; e = symtab_get_next_arg()) { in generate_printf()
65 if (is_void(e)) { in generate_printf()
115 li = levels_of(e); in prepare_printf_part()
146 ENTRY *e; in generate_printfunc_calls() local
153 for (e = symtab_get_first_arg(); e != NULL; e = symtab_get_next_arg()) { in generate_printfunc_calls()
154 if (is_void(e)) { in generate_printfunc_calls()
172 li = levels_of(e); in generate_printfunc_calls()
288 is_void(ENTRY *e) in is_void() argument
290 if ((e != NULL) && in is_void()
[all …]
H A Dsymtab.c667 if (e != NULL && (e->e_kind == PRIMITIVE || e->e_kind == VARARG)) in x_type_of()
684 if (e != NULL && (e->e_kind == PRIMITIVE || e->e_kind == VARARG)) { in type_of()
704 if (e != NULL && (e->e_kind == PRIMITIVE || e->e_kind == VARARG)) in basetype_of()
713 if (e != NULL && (e->e_kind == PRIMITIVE || e->e_kind == VARARG)) in levels_of()
723 if (e != NULL && e->e_kind == COMPOSITE) in inverse_of()
733 if (e != NULL && e->e_kind == VARARG) in selector_of()
743 if (e) in preuses_of()
753 if (e) in postuses_of()
799 e->e_name = strset(e->e_name, name); in set_entry()
802 e->e_file = strset(e->e_file, file); in set_entry()
[all …]
/illumos-gate/usr/src/cmd/acct/lib/
H A Dexpand.c47 int e; in expand() local
53 e = (ct >> 13) & 07; in expand()
56 while (e-- > 0) in expand()
/illumos-gate/usr/src/cmd/allocate/
H A Ddevalloc_defaults37 # e.g.: minlabel="TS A B";maxlabel="TS AB";auths=solaris.device.allocate;\
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Dfloat195 uint32_t e[sizeof(double)/4];
H A Diconv125 #define iconv_init(d,e) (memset(d,0,sizeof(*(d))),(d)->version=ICONV_VERSION,(d)->errorf=(Iconv_er…
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Dfloat196 uint32_t e[sizeof(double)/4];
205 uint32_t e[sizeof(_ast_fltmax_t)/4];
H A Diconv125 #define iconv_init(d,e) (memset(d,0,sizeof(*(d))),(d)->version=ICONV_VERSION,(d)->errorf=(Iconv_er…
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Dfloat196 uint32_t e[sizeof(double)/4];
205 uint32_t e[sizeof(_ast_fltmax_t)/4];
H A Diconv125 #define iconv_init(d,e) (memset(d,0,sizeof(*(d))),(d)->version=ICONV_VERSION,(d)->errorf=(Iconv_er…
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Dfloat195 uint32_t e[sizeof(double)/4];
204 uint32_t e[sizeof(_ast_fltmax_t)/4];

12345678910>>...80