Home
last modified time | relevance | path

Searched refs:em (Results 1 – 25 of 738) sorted by relevance

12345678910>>...30

/netbsd-src/external/apache2/llvm/dist/llvm/docs/_themes/llvm-theme/static/
H A Dllvm-theme.css51 padding: 0.5em 20px 20px 20px;
56 font-size: 1em;
61 height: 2em;
69 height: 2em;
81 line-height: 1.75em;
95 padding: 0.5em 15px 15px 0;
98 font-size: 1em;
103 margin: 1em 0 0.5em 0;
104 font-size: 1em;
105 padding: 0.1em 0 0.1em 0.5em;
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dconfigure.tgt30 # em emulation; identifies the config/te-* files
38 em=generic
125 # Assign object format. Set fmt, em, and bfd_gas.
131 aarch64*-*-haiku*) fmt=elf em=haiku ;;
133 aarch64*-*-linux*) fmt=elf em=linux
137 aarch64*-*-gnu*) fmt=elf em=gnu ;;
138 aarch64*-*-netbsd*) fmt=elf em=nbsd;;
141 aarch64*-*-pe* | aarch64*-*-mingw*) fmt=coff em=pepaarch64 ;;
145 alpha-*-linux-*) fmt=elf em=linux ;;
146 alpha-*-netbsd* | alpha-*-openbsd*) fmt=elf em=nbsd ;;
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dconfigure.tgt30 # em emulation; identifies the config/te-* files
38 em=generic
124 # Assign object format. Set fmt, em, and bfd_gas.
130 aarch64*-*-haiku*) fmt=elf em=haiku ;;
132 aarch64*-*-linux*) fmt=elf em=linux
136 aarch64*-*-netbsd*) fmt=elf em=nbsd;;
141 alpha-*-linux-*) fmt=elf em=linux ;;
142 alpha-*-netbsd* | alpha-*-openbsd*) fmt=elf em=nbsd ;;
149 arm-*-eabi* | arm-*-rtems* | arm-*-genode*) fmt=elf em=armeabi ;;
153 fmt=elf em=freebsd ;;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/_ocamldoc/
H A Dstyle.css5 a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp, selector
17 body { font: normal 10pt/1.375em helvetica, arial, sans-serif; text-align:left;
18 margin: 1.375em 10%; min-width: 40ex; max-width: 72ex;
22 em { font-style: italic } selector
25 font-size: 1em; }
27 .codepre { margin-bottom:1.375em /* after code example we introduce space. */ }
30 { font-size : 0.813em; line-height:0; margin-left:0.4ex;}
44 h1 + pre { margin-bottom:1.375em} /* Toplevel module description */
48 /* .navbar { margin-bottom: -1.375em } */
49 h1 { font-weight: bold; font-size: 1.5em; /* margin-top:1.833em; */
[all …]
/netbsd-src/external/bsd/mdocml/dist/
H A Dmandoc.css13 html { max-width: 65em; }
15 table { margin-top: 0em;
16 margin-bottom: 0em;
23 padding-left: 0.2em;
24 padding-right: 0.2em;
26 ul, ol, dl { margin-top: 0em;
27 margin-bottom: 0em; }
28 li, dt { margin-top: 1em; }
39 border-radius: 1em;
44 table.results { margin-top: 1em;
[all …]
H A Ddba_array.c31 int32_t *em; /* Array of map positions. */ member
49 array->em = mandoc_reallocarray(NULL, ea, sizeof(*array->em)); in dba_array_new()
70 free(array->em); in dba_array_free()
85 array->em[ie] = 0; in dba_array_set()
95 array->em = mandoc_reallocarray(array->em, in dba_array_add()
96 2, sizeof(*array->em) * array->ea); in dba_array_add()
105 if (ie < 0 || ie >= array->eu || array->em[ie] == -1) in dba_array_get()
123 while (array->ec < array->eu && array->em[array->ec] == -1) in dba_array_next()
131 if (array->ec < array->eu && array->em[array->ec] != -1) { in dba_array_del()
132 array->em[array->ec] = -1; in dba_array_del()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/_static/
H A Dllvm.css15 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
16 margin-right: 1em; margin-bottom: 1em; }
46 margin: 1.5em 0.5em 0.5em 0.5em }
48 h4, .doc_subsubsection { margin: 2.0em 0.5em 0.5em 0.5em;
68 margin: 0 1em 0 1em;
69 padding: 0 1em 0 1em;
74 padding: 1em 2em 1em 1em;
77 margin: 0 1em 0 1em;
91 pre.doc_code, .literal-block { padding: 1em 2em 1em 1em }
94 display: table; padding: 0 1em 0 .1em }
/netbsd-src/sys/kern/
H A Dkern_scdebug.c124 #define CODE_NOT_OK(code, em) ((int)(code) < 0) argument
126 #define CODE_NOT_OK(code, em) (((int)(code) < 0) || \ argument
127 ((int)(code) >= (em)->e_nsysent))
137 const struct emul *em; in scdebug_call() local
146 em = p->p_emul; in scdebug_call()
147 sy = &em->e_sysent[code]; in scdebug_call()
150 (CODE_NOT_OK(code, em) || sy->sy_call == sys_nosys)) { in scdebug_call()
171 if (CODE_NOT_OK(code, em)) { in scdebug_call()
225 printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name); in scdebug_call()
226 if (CODE_NOT_OK(code, em)) in scdebug_call()
[all …]
H A Dkern_syscall.c65 const struct emul *em; in sys_nomodule() local
84 em = l->l_proc->p_emul; in sys_nomodule()
85 code = sy - em->e_sysent; in sys_nomodule()
87 if ((auto_list = em->e_sc_autoload) != NULL) in sys_nomodule()
107 syscall_establish(const struct emul *em, const struct syscall_package *sp) in syscall_establish() argument
114 if (em == NULL) { in syscall_establish()
115 em = &emul_netbsd; in syscall_establish()
117 sy = em->e_sysent; in syscall_establish()
145 syscall_disestablish(const struct emul *em, const struct syscall_package *sp) in syscall_disestablish() argument
154 if (em == NULL) { in syscall_disestablish()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A DChangeLog-200721 * emultempl/pe.em: (init): Add __ImageBase symbol.
25 * emultempl/pep.em: Likewise.
69 * emultempl/pep.em (pep_find_data_imports): Issue a warning
72 * emultempl/pe.em (pe_find_data_imports): Likewise.
75 * emultempl/armelf.em (arm_elf_finish): Fix spelling typo.
88 * emultemp/pe.em (..._get_script): Support the use of the auto
125 * emultempl/elf32.em: Check DF_BIND_NOW instead of DT_BIND_NOW.
130 * emultempl/elf32.em (write_build_id_section): Correct test for
172 * emultempl/alphaelf.em: Format option help.
173 * emultempl/armcoff.em: Likewise.
[all …]
H A DChangeLog-200825 * emultempl/spuelf.em (params): Init new field.
32 * emultempl/spuelf.em (params): New var, used instead of various others.
55 * emultempl/cr16elf.em (cr16_after_open): New function to handle
64 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_new_vers_pattern): Update
93 * emultempl/pep.em (..._before_parse): initialize
98 * emultempl/pe.em (..._before_parse): initialize
137 * emultempl/armelf.em (arm_elf_after_open): Move check for using a
179 * emultempl/elf32.em (enum orphan_save_index): Add orphan_nonalloc.
185 * emultempl/armelf.em (PARSE_AND_LIST_OPTIONS): Correct typo in
194 * emultempl/beos.em (gld${EMULATION_NAME}_place_orphan): Likewise.
[all …]
H A DChangeLog-20143 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Exclude
9 * emultempl/avrelf.em: Add include of elf/avr.h.
72 * emultempl/ppc64elf.em (plt_stub_align): Delete. Use and set
78 * emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
111 * emultempl/aarch64elf.em: Add command-line option for erratum 835769.
123 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Don't attempt
164 * emultempl/nds32elf.em (nds32_elf_after_open): Do not keep
180 * emultempl/pe.em (write_build_id, setup_build_id): Change pe/coff
182 * emultempl/pep.em (write_build_id, setup_build_id): Ditto.
191 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_after_allocation): Call
[all …]
H A DChangeLog-20059 * emultempl/xtensaelf.em (elf_xtensa_place_orphan): Delete.
85 * emultempl/ppc32elf.em (emit_stub_syms): New var.
103 * emultempl/elf32.em (gld${EMULATION_NAME}_find_exp_assignment):
121 * emultempl/pe.em (place_orphan): Likewise.
159 * emultempl/armelf.em (arm_elf_set_bfd_for_interworking): Likewise.
160 * emultempl/beos.em (sort_by_file_name): Access bfd by section->owner.
163 * emultempl/elf32.em (place_orphan): Remove "file" param. Adjust
165 * emultempl/hppaelf.em (hppaelf_add_stub_section): Adjust
168 * emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Adjust
170 * emultempl/mmo.em (mmo_place_orphan): Remove "file" param. Adjust
[all …]
H A DChangeLog-20153 * emultempl/armelf.em (gld${EMULATION_NAME}_after_allocation): Call
33 * emultempl/armelf.em (_set_symbols): New function. Enables
78 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Pass
80 * emultempl/mmo.em (mmo_place_orphan): Merge flags for any
83 * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
84 * emultempl/pep.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
95 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Check flags
106 * emultempl/armelf.em (stm32l4xx_fix): New.
152 * emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Set
203 * emultempl/arclinux.em: Likewise.
[all …]
H A DChangeLog-020316 * emultempl/pe.em (_after_open): When scanning MS import
40 * emultempl/ia64elf.em (gld${EMULATION_NAME}_after_parse): Set
55 * emultempl/netbsd.em (gld${EMULATION_NAME}_before_parse): Declare.
56 * Makefile.am (ens32knbsd.c): Depend on netbsd.em.
71 * emultempl/beos.em: Remove ARGSUSED.
75 * emultempl/pe.em (pe_fixup_stdcalls): Update for renamed
79 * emultempl/sunos.em (before_allocation): Likewise.
100 * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Test
102 * emultempl/hppaelf.em (hppaelf_create_output_section_statements):
142 * emultempl/pe.em (gld_${EMULATION_NAME}_after_open): Only do
[all …]
/netbsd-src/external/gpl3/binutils/dist/ld/
H A DChangeLog-200721 * emultempl/pe.em: (init): Add __ImageBase symbol.
25 * emultempl/pep.em: Likewise.
69 * emultempl/pep.em (pep_find_data_imports): Issue a warning
72 * emultempl/pe.em (pe_find_data_imports): Likewise.
75 * emultempl/armelf.em (arm_elf_finish): Fix spelling typo.
88 * emultemp/pe.em (..._get_script): Support the use of the auto
125 * emultempl/elf32.em: Check DF_BIND_NOW instead of DT_BIND_NOW.
130 * emultempl/elf32.em (write_build_id_section): Correct test for
172 * emultempl/alphaelf.em: Format option help.
173 * emultempl/armcoff.em: Likewise.
[all …]
H A DChangeLog-200825 * emultempl/spuelf.em (params): Init new field.
32 * emultempl/spuelf.em (params): New var, used instead of various others.
55 * emultempl/cr16elf.em (cr16_after_open): New function to handle
64 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_new_vers_pattern): Update
93 * emultempl/pep.em (..._before_parse): initialize
98 * emultempl/pe.em (..._before_parse): initialize
137 * emultempl/armelf.em (arm_elf_after_open): Move check for using a
179 * emultempl/elf32.em (enum orphan_save_index): Add orphan_nonalloc.
185 * emultempl/armelf.em (PARSE_AND_LIST_OPTIONS): Correct typo in
194 * emultempl/beos.em (gld${EMULATION_NAME}_place_orphan): Likewise.
[all …]
H A DChangeLog-20143 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Exclude
9 * emultempl/avrelf.em: Add include of elf/avr.h.
72 * emultempl/ppc64elf.em (plt_stub_align): Delete. Use and set
78 * emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
111 * emultempl/aarch64elf.em: Add command-line option for erratum 835769.
123 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Don't attempt
164 * emultempl/nds32elf.em (nds32_elf_after_open): Do not keep
180 * emultempl/pe.em (write_build_id, setup_build_id): Change pe/coff
182 * emultempl/pep.em (write_build_id, setup_build_id): Ditto.
191 * emultempl/ppc64elf.em (gld${EMULATION_NAME}_after_allocation): Call
[all …]
H A DChangeLog-20059 * emultempl/xtensaelf.em (elf_xtensa_place_orphan): Delete.
85 * emultempl/ppc32elf.em (emit_stub_syms): New var.
103 * emultempl/elf32.em (gld${EMULATION_NAME}_find_exp_assignment):
121 * emultempl/pe.em (place_orphan): Likewise.
159 * emultempl/armelf.em (arm_elf_set_bfd_for_interworking): Likewise.
160 * emultempl/beos.em (sort_by_file_name): Access bfd by section->owner.
163 * emultempl/elf32.em (place_orphan): Remove "file" param. Adjust
165 * emultempl/hppaelf.em (hppaelf_add_stub_section): Adjust
168 * emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Adjust
170 * emultempl/mmo.em (mmo_place_orphan): Remove "file" param. Adjust
[all …]
H A DChangeLog-20153 * emultempl/armelf.em (gld${EMULATION_NAME}_after_allocation): Call
33 * emultempl/armelf.em (_set_symbols): New function. Enables
78 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Pass
80 * emultempl/mmo.em (mmo_place_orphan): Merge flags for any
83 * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
84 * emultempl/pep.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
95 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Check flags
106 * emultempl/armelf.em (stm32l4xx_fix): New.
152 * emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Set
203 * emultempl/arclinux.em: Likewise.
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
H A Drsa_ssl.c66 unsigned char *em = NULL; in RSA_padding_check_SSLv23() local
78 em = OPENSSL_malloc(num); in RSA_padding_check_SSLv23()
79 if (em == NULL) { in RSA_padding_check_SSLv23()
89 for (from += flen, em += num, i = 0; i < num; i++) { in RSA_padding_check_SSLv23()
93 *--em = *from & mask; in RSA_padding_check_SSLv23()
96 good = constant_time_is_zero(em[0]); in RSA_padding_check_SSLv23()
97 good &= constant_time_eq(em[1], 2); in RSA_padding_check_SSLv23()
105 unsigned int equals0 = constant_time_is_zero(em[i]); in RSA_padding_check_SSLv23()
112 threes_in_row &= found_zero_byte | constant_time_eq(em[i], 3); in RSA_padding_check_SSLv23()
164 em[i] = constant_time_select_8(mask, em[i + msg_index], em[i]); in RSA_padding_check_SSLv23()
[all …]
H A Drsa_pk1.c160 unsigned char *em = NULL; in RSA_padding_check_PKCS1_type_2() local
178 em = OPENSSL_malloc(num); in RSA_padding_check_PKCS1_type_2()
179 if (em == NULL) { in RSA_padding_check_PKCS1_type_2()
189 for (from += flen, em += num, i = 0; i < num; i++) { in RSA_padding_check_PKCS1_type_2()
193 *--em = *from & mask; in RSA_padding_check_PKCS1_type_2()
196 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_type_2()
197 good &= constant_time_eq(em[1], 2); in RSA_padding_check_PKCS1_type_2()
202 unsigned int equals0 = constant_time_is_zero(em[i]); in RSA_padding_check_PKCS1_type_2()
243 em[i] = constant_time_select_8(mask, em[i + msg_index], em[i]); in RSA_padding_check_PKCS1_type_2()
247 to[i] = constant_time_select_8(mask, em[i + RSA_PKCS1_PADDING_SIZE], to[i]); in RSA_padding_check_PKCS1_type_2()
[all …]
/netbsd-src/external/mit/libcbor/dist/docs/stylesheets/
H A Dstylesheet.css37 @media screen and (min-width: 64em) {
41 @media screen and (min-width: 42em) and (max-width: 64em) {
46 @media screen and (max-width: 42em) {
62 @media screen and (min-width: 64em) {
66 @media screen and (min-width: 42em) and (max-width: 64em) {
70 @media screen and (max-width: 42em) {
78 @media screen and (min-width: 64em) {
82 @media screen and (min-width: 42em) and (max-width: 64em) {
86 @media screen and (max-width: 42em) {
95 @media screen and (min-width: 64em) {
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddenum.c79 EnumMember *em = (*members)[i]->isEnumMember(); in addMember() local
80 em->ed = this; in addMember()
82 em->addMember(sc, isAnonymous() ? scopesym : this); in addMember()
215 EnumMember *em = (*members)[i]->isEnumMember(); in semantic() local
216 if (em) in semantic()
217 em->_scope = sce; in semantic()
251 EnumMember *em = (*members)[i]->isEnumMember(); in semantic() local
252 if (em) in semantic()
254 em->ed = this; in semantic()
255 em->addMember(sc, scopesym); in semantic()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rsa/
H A Drsa_pk1.c173 unsigned char *em = NULL; in RSA_padding_check_PKCS1_type_2() local
190 em = OPENSSL_malloc(num); in RSA_padding_check_PKCS1_type_2()
191 if (em == NULL) { in RSA_padding_check_PKCS1_type_2()
201 for (from += flen, em += num, i = 0; i < num; i++) { in RSA_padding_check_PKCS1_type_2()
205 *--em = *from & mask; in RSA_padding_check_PKCS1_type_2()
208 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_type_2()
209 good &= constant_time_eq(em[1], 2); in RSA_padding_check_PKCS1_type_2()
214 unsigned int equals0 = constant_time_is_zero(em[i]); in RSA_padding_check_PKCS1_type_2()
255 em[i] = constant_time_select_8(mask, em[i + msg_index], em[i]); in RSA_padding_check_PKCS1_type_2()
259 to[i] = constant_time_select_8(mask, em[i + RSA_PKCS1_PADDING_SIZE], to[i]); in RSA_padding_check_PKCS1_type_2()
[all …]

12345678910>>...30