Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd/contrib/llvm-project/lld/docs/llvm-theme/static/
H A Dllvm.css21 letter-spacing: -0.01em;
53 padding: 0.5em 20px 20px 20px;
57 font-size: 1em;
62 height: 2em;
70 height: 2em;
82 line-height: 1.75em;
96 padding: 0.5em 15px 15px 0;
99 font-size: 1em;
104 margin: 1em 0 0.5em 0;
105 font-size: 1em;
[all …]
/freebsd/sys/compat/linux/
H A Dlinux_emul.c64 struct linux_emuldata *em; in em_find() local
66 em = td->td_emuldata; in em_find()
68 return (em); in em_find()
139 struct linux_emuldata *em; in linux_proc_init() local
147 em = malloc(sizeof(*em), M_LINUX, M_WAITOK | M_ZERO); in linux_proc_init()
152 em->em_tid = newtd->td_tid; in linux_proc_init()
156 em->em_tid = p->p_pid; in linux_proc_init()
162 newtd->td_emuldata = em; in linux_proc_init()
173 em = em_find(td); in linux_proc_init()
174 KASSERT(em != NULL, ("proc_init: thread emuldata not found.\n")); in linux_proc_init()
[all …]
H A Dlinux_fork.c133 struct linux_emuldata *em; in linux_clone_proc() local
179 em = em_find(td2); in linux_clone_proc()
180 KASSERT(em != NULL, ("clone_proc: emuldata not found.\n")); in linux_clone_proc()
183 em->child_set_tid = args->child_tid; in linux_clone_proc()
185 em->child_set_tid = NULL; in linux_clone_proc()
188 em->child_clear_tid = args->child_tid; in linux_clone_proc()
190 em->child_clear_tid = NULL; in linux_clone_proc()
239 struct linux_emuldata *em; in linux_clone_thread() local
288 em = em_find(newtd); in linux_clone_thread()
289 KASSERT(em != NULL, ("clone_thread: emuldata not found.\n")); in linux_clone_thread()
[all …]
H A Dlinux_futex.c360 struct linux_emuldata *em; in linux_futex_lock_pi() local
367 em = em_find(td); in linux_futex_lock_pi()
400 rv = casueword32(args->uaddr, FUTEX_UNOWNED, &owner, em->em_tid); in linux_futex_lock_pi()
433 if ((owner & FUTEX_TID_MASK) == em->em_tid) { in linux_futex_lock_pi()
445 owner |= em->em_tid; in linux_futex_lock_pi()
569 struct linux_emuldata *em; in linux_futex_unlock_pi() local
574 em = em_find(td); in linux_futex_unlock_pi()
582 if (!rb && (owner & FUTEX_TID_MASK) != em->em_tid) in linux_futex_unlock_pi()
875 struct linux_emuldata *em; in linux_set_robust_list() local
880 em = em_find(td); in linux_set_robust_list()
[all …]
/freebsd/contrib/mandoc/
H A Dmandoc.css13 html { max-width: 65em;
20 table { margin-top: 0em;
21 margin-bottom: 0em;
28 padding-left: 0.2em;
29 padding-right: 0.2em;
31 ul, ol, dl { margin-top: 0em;
32 margin-bottom: 0em; }
33 li, dt { margin-top: 1em; }
45 border-radius: 1em;
50 table.results { margin-top: 1em;
[all …]
H A Ddba_array.c33 int32_t *em; /* Array of map positions. */ member
51 array->em = mandoc_reallocarray(NULL, ea, sizeof(*array->em)); in dba_array_new()
72 free(array->em); in dba_array_free()
87 array->em[ie] = 0; in dba_array_set()
97 array->em = mandoc_reallocarray(array->em, in dba_array_add()
98 2, sizeof(*array->em) * array->ea); in dba_array_add()
107 if (ie < 0 || ie >= array->eu || array->em[ie] == -1) in dba_array_get()
125 while (array->ec < array->eu && array->em[array->ec] == -1) in dba_array_next()
133 if (array->ec < array->eu && array->em[array->ec] != -1) { in dba_array_del()
134 array->em[array->ec] = -1; in dba_array_del()
[all …]
H A Dman-cgi.css2 body > div { padding-left: 2em;
3 padding-top: 1em; }
4 body > div#mancgi { padding-left: 0em;
5 padding-top: 0em; }
9 border-radius: 1em;
13 padding-right: 1em; }
/freebsd/contrib/googletest/docs/_sass/
H A Dmain.scss24 font-size: 1.5em;
29 font-size: 0.8em;
31 margin-bottom: 0.8em;
32 padding-left: 2.5em;
38 padding: 2em;
56 height: 3em;
58 right: 1em;
59 top: 1.5em;
60 width: 3em;
67 height: 0.7em;
[all …]
/freebsd/contrib/libxo/doc/_static/
H A Dbasic.css_t81 font-size: 1em;
134 font-size: 1.3em;
161 padding-left: 0em;
182 margin: 1em 0 1em 0;
183 padding: 0.4em;
189 margin: 1em 0 1em 0;
190 padding: 0.4em;
240 padding: 0.5em;
255 margin-right: 1em;
261 margin-left: 1em;
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.css13 min-width: 20em;
22 padding-right: 0.5em;
26 margin-bottom: 0.5em;
27 padding-top: 0.5em;
40 min-width: 2em; /* Enough space for two digits and a colon */
57 width: 4em;
59 padding: 0.3em 0.5em;
76 padding-left: 0.2em;
79 padding-right: 0.2em;
108 width: 2em;
[all …]
/freebsd/crypto/openssl/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 …]
H A Drsa_oaep.c171 unsigned char *db = NULL, *em = NULL, seed[EVP_MAX_MD_SIZE], in RSA_padding_check_PKCS1_OAEP_mgf1() local
211 em = OPENSSL_malloc(num); in RSA_padding_check_PKCS1_OAEP_mgf1()
212 if (em == NULL) { in RSA_padding_check_PKCS1_OAEP_mgf1()
223 for (from += flen, em += num, i = 0; i < num; i++) { in RSA_padding_check_PKCS1_OAEP_mgf1()
227 *--em = *from & mask; in RSA_padding_check_PKCS1_OAEP_mgf1()
235 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_OAEP_mgf1()
237 maskedseed = em + 1; in RSA_padding_check_PKCS1_OAEP_mgf1()
238 maskeddb = em + 1 + mdlen; in RSA_padding_check_PKCS1_OAEP_mgf1()
320 OPENSSL_clear_free(em, num); in RSA_padding_check_PKCS1_OAEP_mgf1()
/freebsd/contrib/libfido2/man/
H A Dstyle.css5 font-size: 1em;
7 max-width: 54em;
10 ul { margin-left: 1em; }
12 .Sh { font-size: 1em; padding-top: 1em; padding-bottom: 1em; }
13 .foot { padding-top: 1em; }
H A Ddyc.css13 .Sh { font-size: 1.5em; padding-top: 1em; padding-bottom: 1em; }
/freebsd/contrib/lua/doc/
H A Dlua.css15 max-width: 70em ;
37 padding-right: 0.5em ;
59 padding-bottom: 0.5em ;
63 margin-left: 2.5em ;
100 border-radius: 2em ;
105 height: 2em ;
110 padding: 1em ;
131 padding-bottom: 1em ;
141 padding-right: 1em ;
152 margin-top: 0.25em ;
/freebsd/crypto/heimdal/doc/
H A Dheimdal.css5 max-width: 40em;
12 padding: 0.5em 0 0.5em 5%;
30 margin-left: 2em;
31 padding: 1em 0em;
/freebsd/contrib/ntp/html/drivers/scripts/
H A Dstyle.css7 p, h4, hr, li {margin-top: .6em; margin-bottom: .6em}
10 ul, dl, ol, {margin-top: .6em; margin-bottom: .6em; margin-left 5em}
12 dt {margin-top: .6em}
13 dd {margin-bottom: .6em}
/freebsd/contrib/ntp/html/scripts/
H A Dstyle.css7 p, h4, hr, li {margin-top: .6em; margin-bottom: .6em}
10 ul, dl, ol, {margin-top: .6em; margin-bottom: .6em; margin-left 5em}
12 dt {margin-top: .6em}
13 dd {margin-bottom: .6em}
/freebsd/crypto/libecc/src/examples/sig/rsa/
H A Drsa.c834 int emsa_pss_encode(const u8 *m, u32 mlen, u8 *em, u32 embits, in emsa_pss_encode() argument
849 u8 *dbmask = em; in emsa_pss_encode()
866 MUST_HAVE((m != NULL) && (em != NULL) && (eminlen != NULL), ret, err); in emsa_pss_encode()
944 ret = local_memcpy(&em[dblen], h, hlen); EG(ret, err); in emsa_pss_encode()
945 em[emlen - 1] = 0xbc; in emsa_pss_encode()
955 int emsa_pss_verify(const u8 *m, u32 mlen, const u8 *em, in emsa_pss_verify() argument
975 const u8 *h, *salt, *maskeddb = em; in emsa_pss_verify()
989 MUST_HAVE((m != NULL) && (em != NULL), ret, err); in emsa_pss_verify()
1010 MUST_HAVE((em[emlen - 1] == 0xbc), ret, err); in emsa_pss_verify()
1024 h = &em[dblen]; in emsa_pss_verify()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/renesas/
H A Demev2.dtsi159 compatible = "renesas,em-sti";
167 compatible = "renesas,em-uart";
175 compatible = "renesas,em-uart";
183 compatible = "renesas,em-uart";
191 compatible = "renesas,em-uart";
204 compatible = "renesas,em-gio";
217 compatible = "renesas,em-gio";
230 compatible = "renesas,em-gio";
243 compatible = "renesas,em-gio";
256 compatible = "renesas,em-gio";
/freebsd/sys/dev/e1000/
H A DREADME31 These drivers are em and igb.
34 - The em driver supports all other gigabit network connections.
55 example, use /home/username/em or /usr/local/src/em.
59 # tar xzf em-x.x.x.tar.gz
61 This will create the em-x.x.x directory.
65 # cd em-x.x.x
66 # gzip -c em.4 > /usr/share/man/man4/em.4.gz
70 # cd em-x.x.x/src
76 # ifconfig em<interface_num> <IP_address>
86 # cd em-x.x.x/src
[all …]
/freebsd/contrib/expat/doc/
H A Dok.min.css2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,mo…
/freebsd/contrib/elftoolchain/libelf/
H A Delf_update.c722 int ec, em; in _libelf_write_scn() local
756 em = _libelf_elfmachine(e); in _libelf_write_scn()
758 assert(em >= EM_NONE && em < EM__LAST__); in _libelf_write_scn()
833 if (_libelf_xlate(&dst, d, e->e_byteorder, ec, em, ELF_TOFILE) in _libelf_write_scn()
850 int ec, em; in _libelf_write_ehdr() local
867 em = _libelf_elfmachine(e); in _libelf_write_ehdr()
880 if (_libelf_xlate(&dst, &src, e->e_byteorder, ec, em, ELF_TOFILE) == in _libelf_write_ehdr()
894 int ec, em; in _libelf_write_phdr() local
920 em = _libelf_elfmachine(e); in _libelf_write_phdr()
942 if (_libelf_xlate(&dst, &src, e->e_byteorder, ec, em, ELF_TOFILE) == in _libelf_write_phdr()
[all …]
/freebsd/contrib/kyua/engine/
H A Dconfig.cpp82 for (auto em : execenv::execenvs()) in set_defaults() local
83 if (em->is_supported()) in set_defaults()
84 supported.insert(em->name()); in set_defaults()
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md15 TEST(<em>TestSuiteName</em>, <em>TestName</em>) {
16 ... <em>statements</em> ...
34 TEST_F(<em>TestFixtureName</em>, <em>TestName</em>) {
35 ... <em>statements</em> ...
54 TEST_P(<em>TestFixtureName</em>, <em>TestName</em>) {
55 ... <em>statements</em> ...
195 TYPED_TEST(<em>TestSuiteName</em>, <em>TestName</em>) {
196 ... <em>statements</em> ...
246 TYPED_TEST_P(<em>TestSuiteName</em>, <em>TestName</em>) {
247 ... <em>statements</em> ...

12345678910>>...13