Home
last modified time | relevance | path

Searched refs:s (Results 1 – 10 of 10) sorted by relevance

/hypervisor/arch/x86/lib/
A Dmemory.c27 void memcpy_erms(void *d, const void *s, size_t slen) in memcpy_erms() argument
30 : "=&D"(d), "=&S"(s) in memcpy_erms()
31 : "c"(slen), "0" (d), "1" (s) in memcpy_erms()
36 void memcpy_erms_backwards(void *d, const void *s, size_t slen) in memcpy_erms_backwards() argument
39 : "=&D"(d), "=&S"(s) in memcpy_erms_backwards()
40 : "c"(slen), "0" (d), "1" (s) in memcpy_erms_backwards()
56 int32_t memcpy_s(void *d, size_t dmax, const void *s, size_t slen) in memcpy_s() argument
60 if ((d != NULL) && (s != NULL) && (dmax >= slen) && ((d > (s + slen)) || (s > (d + dmax)))) { in memcpy_s()
62 memcpy_erms(d, s, slen); in memcpy_s()
/hypervisor/debug/
A Dstring.c15 const char *s = nptr; in strtol_deci() local
25 c = *s; in strtol_deci()
26 s++; in strtol_deci()
31 c = *s; in strtol_deci()
32 s++; in strtol_deci()
34 c = *s; in strtol_deci()
35 s++; in strtol_deci()
74 c = *s; in strtol_deci()
75 s++; in strtol_deci()
A Dprintf.c16 const char *s = s_arg; in charout() local
21 const char *p = s; in charout()
27 len = console_write(s, sz); in charout()
28 s += len; in charout()
31 nchars += (s - p); in charout()
36 console_putc(s); in charout()
A Dconsole.c83 size_t console_write(const char *s, size_t len) in console_write() argument
85 return uart16550_puts(s, len); in console_write()
/hypervisor/lib/
A Dstring.c39 c = *s; in strtoul_hex()
40 s++; in strtoul_hex()
43 if ((c == '0') && ((*s == 'x') || (*s == 'X'))) { in strtoul_hex()
44 c = s[1]; in strtoul_hex()
45 s += 2; in strtoul_hex()
62 c = *s; in strtoul_hex()
63 s++; in strtoul_hex()
75 char *s = s_arg; in strchr() local
76 while ((*s != '\0') && (*s != ch)) { in strchr()
77 ++s; in strchr()
[all …]
A Dsprintf.c85 ++s; in get_param()
89 while ((*s >= '0') && (*s <= '9')) { in get_param()
92 s++; in get_param()
95 return s; in get_param()
132 ++s; in get_flags()
146 return s; in get_flags()
155 s++; in get_length_modifier()
159 ++s; in get_length_modifier()
166 s++; in get_length_modifier()
169 ++s; in get_length_modifier()
[all …]
/hypervisor/include/lib/
A Drtl.h40 int32_t strncpy_s(char *d, size_t dmax, const char *s, size_t slen);
44 int32_t memcpy_s(void *d, size_t dmax, const void *s, size_t slen);
45 void memcpy_erms(void *d, const void *s, size_t slen);
46 void memcpy_erms_backwards(void *d, const void *s, size_t slen);
/hypervisor/include/debug/
A Dconsole.h26 size_t console_write(const char *s, size_t len);
/hypervisor/hw/
A Dpci.c426 uint32_t s = 0U, e = 0U; /* start and end index into queue */ in scan_pci_hierarchy() local
431 while (s < e) { in scan_pci_hierarchy()
432 current_bus_index = bus_map[s].bus_under_scan; in scan_pci_hierarchy()
433 current_drhd_index = bus_map[s].bus_drhd_index; in scan_pci_hierarchy()
434 s = s + 1U; in scan_pci_hierarchy()
/hypervisor/lib/crypto/mbedtls/
A DChangeLog364 a migration path for those depending on the library's ABI.
511 non-v3 CRT's.
1127 compiler's command line.
1270 * Removed r and s from ecdsa_context
1363 (detected by Clang's 3.6 UBSan).
1686 stored in RAM due to missing 'const's (found by Gergely Budai).
1782 * Relaxed some SHA2 ciphersuite's version requirements
2510 * Debug output of MPI's now the same independent of underlying
2534 * Support more exotic OID's when parsing certificates
2772 as the Klima-Pokorny-Rosa extension of Bleichenbacher's attack
[all …]

Completed in 20 milliseconds