HomeSort by: relevance | last modified time | path
    Searched defs:em (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/gpl3/binutils/dist/bfd/
cpu-arc.c 54 ARC (bfd_mach_arc_arcv2, "EM", false, &arch_info_struct[6]),
63 "feature-rich", that is, can run both A and B. ARCv2, EM and HS all has
68 example, compatible (ARCv2, EM) returns ARCv2, but compatible (EM, ARCv2)
69 returns EM, hence GDB is not sure if they are compatible and prints a
75 const bfd_arch_info_type * const em = &arch_info_struct[5]; local
90 /* ARCv2|EM and EM. */
91 if ((a->mach == bfd_mach_arc_arcv2 && b == em)
92 || (b->mach == bfd_mach_arc_arcv2 && a == em))
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
cpu-arc.c 54 ARC (bfd_mach_arc_arcv2, "EM", false, &arch_info_struct[6]),
63 "feature-rich", that is, can run both A and B. ARCv2, EM and HS all has
68 example, compatible (ARCv2, EM) returns ARCv2, but compatible (EM, ARCv2)
69 returns EM, hence GDB is not sure if they are compatible and prints a
75 const bfd_arch_info_type * const em = &arch_info_struct[5]; local
90 /* ARCv2|EM and EM. */
91 if ((a->mach == bfd_mach_arc_arcv2 && b == em)
92 || (b->mach == bfd_mach_arc_arcv2 && a == em))
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
cpu-arc.c 54 ARC (bfd_mach_arc_arcv2, "EM", false, &arch_info_struct[6]),
63 "feature-rich", that is, can run both A and B. ARCv2, EM and HS all has
68 example, compatible (ARCv2, EM) returns ARCv2, but compatible (EM, ARCv2)
69 returns EM, hence GDB is not sure if they are compatible and prints a
75 const bfd_arch_info_type * const em = &arch_info_struct[5]; local
90 /* ARCv2|EM and EM. */
91 if ((a->mach == bfd_mach_arc_arcv2 && b == em)
92 || (b->mach == bfd_mach_arc_arcv2 && a == em))
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
cpu-arc.c 54 ARC (bfd_mach_arc_arcv2, "EM", false, &arch_info_struct[6]),
63 "feature-rich", that is, can run both A and B. ARCv2, EM and HS all has
68 example, compatible (ARCv2, EM) returns ARCv2, but compatible (EM, ARCv2)
69 returns EM, hence GDB is not sure if they are compatible and prints a
75 const bfd_arch_info_type * const em = &arch_info_struct[5]; local
90 /* ARCv2|EM and EM. */
91 if ((a->mach == bfd_mach_arc_arcv2 && b == em)
92 || (b->mach == bfd_mach_arc_arcv2 && a == em))
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
rsa_pk1.c 159 /* |em| is the encoded message, zero-padded to exactly |num| bytes */
160 unsigned char *em = NULL; local
178 em = OPENSSL_malloc(num);
179 if (em == NULL) {
189 for (from += flen, em += num, i = 0; i < num; i++) {
193 *--em = *from & mask;
196 good = constant_time_is_zero(em[0]);
197 good &= constant_time_eq(em[1], 2);
202 unsigned int equals0 = constant_time_is_zero(em[i]);
210 * PS must be at least 8 bytes long, and it starts two bytes into |em|
    [all...]
rsa_ssl.c 65 /* |em| is the encoded message, zero-padded to exactly |num| bytes */
66 unsigned char *em = NULL; local
78 em = OPENSSL_malloc(num);
79 if (em == NULL) {
89 for (from += flen, em += num, i = 0; i < num; i++) {
93 *--em = *from & mask;
96 good = constant_time_is_zero(em[0]);
97 good &= constant_time_eq(em[1], 2);
105 unsigned int equals0 = constant_time_is_zero(em[i]);
112 threes_in_row &= found_zero_byte | constant_time_eq(em[i], 3)
    [all...]
rsa_oaep.c 126 * |em| is the encoded message, zero-padded to exactly |num| bytes: em =
129 unsigned char *db = NULL, *em = NULL, seed[EVP_MAX_MD_SIZE], local
163 em = OPENSSL_malloc(num);
164 if (em == NULL) {
176 for (from += flen, em += num, i = 0; i < num; i++) {
180 *--em = *from & mask;
188 good = constant_time_is_zero(em[0]);
190 maskedseed = em + 1;
191 maskeddb = em + 1 + mdlen
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
count.cc 232 char *em = strerror (errno); local
233 if (em == NULL)
236 dbe_write (2, GTXT ("execve of %s failed: %s\n"), narglist[0], em);
gp-collect-app.cc 309 char *em = strerror (errno); local
311 if (em == NULL)
314 dbe_write (2, GTXT ("memso %s of %s failed: %s\n"), extype, argv[targ_index], em);
429 char *em = strerror (errno); local
438 if (em == NULL)
441 dbe_write (2, GTXT ("%s of %s failed: %s\n"), extype, argv[targ_index], em);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
count.cc 232 char *em = strerror (errno); local
233 if (em == NULL)
236 dbe_write (2, GTXT ("execve of %s failed: %s\n"), narglist[0], em);
gp-collect-app.cc 309 char *em = strerror (errno); local
311 if (em == NULL)
314 dbe_write (2, GTXT ("memso %s of %s failed: %s\n"), extype, argv[targ_index], em);
429 char *em = strerror (errno); local
438 if (em == NULL)
441 dbe_write (2, GTXT ("%s of %s failed: %s\n"), extype, argv[targ_index], em);
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_pk1.c 172 /* |em| is the encoded message, zero-padded to exactly |num| bytes */
173 unsigned char *em = NULL; local
190 em = OPENSSL_malloc(num);
191 if (em == NULL) {
201 for (from += flen, em += num, i = 0; i < num; i++) {
205 *--em = *from & mask;
208 good = constant_time_is_zero(em[0]);
209 good &= constant_time_eq(em[1], 2);
214 unsigned int equals0 = constant_time_is_zero(em[i]);
222 * PS must be at least 8 bytes long, and it starts two bytes into |em|
    [all...]
rsa_oaep.c 96 /* step 3i: EM = 00000000 || maskedMGF || maskedDB */
168 * |em| is the encoded message, zero-padded to exactly |num| bytes: em =
171 unsigned char *db = NULL, *em = NULL, seed[EVP_MAX_MD_SIZE], local
211 em = OPENSSL_malloc(num);
212 if (em == NULL) {
223 for (from += flen, em += num, i = 0; i < num; i++) {
227 *--em = *from & mask;
235 good = constant_time_is_zero(em[0]);
237 maskedseed = em + 1
    [all...]
  /src/external/gpl2/groff/dist/src/utils/addftinfo/
guess.h 25 int em; member in struct:font_params
  /src/sys/kern/
kern_scdebug.c 124 #define CODE_NOT_OK(code, em) ((int)(code) < 0)
126 #define CODE_NOT_OK(code, em) (((int)(code) < 0) || \
127 ((int)(code) >= (em)->e_nsysent))
137 const struct emul *em; local
146 em = p->p_emul;
147 sy = &em->e_sysent[code];
150 (CODE_NOT_OK(code, em) || sy->sy_call == sys_nosys)) {
171 if (CODE_NOT_OK(code, em)) {
225 printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
226 if (CODE_NOT_OK(code, em))
248 const struct emul *em; local
    [all...]
kern_syscall.c 67 const struct emul *em; local
86 em = l->l_proc->p_emul;
87 code = sy - em->e_sysent;
89 if ((auto_list = em->e_sc_autoload) != NULL)
109 syscall_establish(const struct emul *em, const struct syscall_package *sp)
116 if (em == NULL) {
117 em = &emul_netbsd;
119 sy = em->e_sysent;
147 syscall_disestablish(const struct emul *em, const struct syscall_package *sp)
156 if (em == NULL)
    [all...]
  /src/external/bsd/mdocml/dist/
dba_array.c 33 int32_t *em; /* Array of map positions. */ member in struct:dba_array
51 array->em = mandoc_reallocarray(NULL, ea, sizeof(*array->em));
72 free(array->em);
87 array->em[ie] = 0;
97 array->em = mandoc_reallocarray(array->em,
98 2, sizeof(*array->em) * array->ea);
107 if (ie < 0 || ie >= array->eu || array->em[ie] == -1)
125 while (array->ec < array->eu && array->em[array->ec] == -1
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_oaep.c 108 /* step 3i: EM = 00000000 || maskedMGF || maskedDB */
178 * |em| is the encoded message, zero-padded to exactly |num| bytes: em =
181 unsigned char *db = NULL, *em = NULL, seed[EVP_MAX_MD_SIZE], local
231 em = OPENSSL_malloc(num);
232 if (em == NULL)
241 for (from += flen, em += num, i = 0; i < num; i++) {
245 *--em = *from & mask;
253 good = constant_time_is_zero(em[0]);
255 maskedseed = em + 1
    [all...]
rsa_pk1.c 175 /* |em| is the encoded message, zero-padded to exactly |num| bytes */
176 unsigned char *em = NULL; local
193 em = OPENSSL_malloc(num);
194 if (em == NULL)
202 for (from += flen, em += num, i = 0; i < num; i++) {
206 *--em = *from & mask;
209 good = constant_time_is_zero(em[0]);
210 good &= constant_time_eq(em[1], 2);
215 unsigned int equals0 = constant_time_is_zero(em[i]);
223 * PS must be at least 8 bytes long, and it starts two bytes into |em|
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tset_sj.c 201 intmax_t em; local
205 em = i == -2 ? INTMAX_MIN : INTMAX_MAX;
216 em = ep[i];
257 inex2 = mpfr_set_sj_2exp (x2, j, em, (mpfr_rnd_t) rnd);
272 inex2 = mpfr_set_uj_2exp (x2, j, em, (mpfr_rnd_t) rnd);
287 printf ("e = %jd\n", em);
  /src/games/backgammon/backgammon/
move.c 67 static int em; /* farthest man back */ variable
443 for (em = bar; em != home; em += cturn)
444 if (board[em] * cturn > 0)
446 em = abs(home - em);
452 fprintf(trace, "\n\tem = %d\n", em);
455 "\n\tch = %d, pt = %d, em = %d, frc = %d, frp = %d\n",
456 ch, pt, em, frc, frp)
    [all...]
  /src/external/gpl2/groff/dist/src/roff/troff/
number.cpp 610 hunits em = curenv->get_size(); local
611 *v = scale(*v, em.is_zero() ? hresolution : em.to_units(), divisor);
616 hunits em = curenv->get_size(); local
617 *v = scale(*v, em.is_zero() ? hresolution : em.to_units(), divisor*100);
  /src/external/bsd/elftoolchain/dist/libelf/
elf_update.c 731 int em; local
767 em = _libelf_elfmachine(e);
841 if (_libelf_xlate(&dst, d, e->e_byteorder, ec, em, ELF_TOFILE)
858 int em; local
876 em = _libelf_elfmachine(e);
889 if (_libelf_xlate(&dst, &src, e->e_byteorder, ec, em, ELF_TOFILE) ==
903 int em; local
930 em = _libelf_elfmachine(e);
952 if (_libelf_xlate(&dst, &src, e->e_byteorder, ec, em, ELF_TOFILE) ==
966 int em; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 891 // Determine the approximate size of the message bubble in em.
892 unsigned em; local
896 em = max_token / 2;
909 em = characters / 2;
912 if (em < max_line/2)
913 os << "; max-width:" << em << "em"; local
916 os << "; max-width:100em";
  /src/usr.bin/mail/
complete.c 1129 my_gets(el_mode_t *em, const char *prompt, char *string)
1141 el_push(em->el, string);
1149 buf = el_gets(em->el, &cnt);
1167 if (em->hist) {
1171 if (*p && history(em->hist, &ev, H_ENTER, line) == 0)
1186 el_mode_t em; local
1188 (void)memset(&em, 0, sizeof(em));
1193 if ((em.el = el_init(getprogname(), stdin, stdout, nullfp)) == NULL) {
1195 return em;
    [all...]

Completed in 35 milliseconds

1 2