| /hypervisor/ |
| A D | Makefile | 167 LIB_C_SRCS += lib/string.c 173 LIB_C_SRCS += lib/sprintf.c 194 BOOT_C_SRCS += boot/boot.c 225 HW_C_SRCS += arch/x86/pm.c 235 HW_C_SRCS += common/irq.c 240 HW_C_SRCS += common/sbuf.c 254 HW_C_SRCS += hw/pci.c 311 VP_DM_C_SRCS += dm/vpic.c 312 VP_DM_C_SRCS += dm/vrtc.c 314 VP_DM_C_SRCS += dm/vuart.c [all …]
|
| /hypervisor/debug/ |
| A D | string.c | 16 char c; in strtol_deci() local 25 c = *s; in strtol_deci() 27 } while (is_space(c)); in strtol_deci() 29 if (c == '-') { in strtol_deci() 31 c = *s; in strtol_deci() 33 } else if (c == '+') { in strtol_deci() 34 c = *s; in strtol_deci() 63 while ((c >= '0') && (c <= '9')) { in strtol_deci() 64 c -= '0'; in strtol_deci() 71 acc += (uint64_t)c; in strtol_deci() [all …]
|
| A D | Makefile | 6 SRCS += $(wildcard $(FILE_PATH)/*.c) 7 OBJS += $(patsubst %.c,$(HV_OBJDIR)/%.o,$(SRCS)) 23 $(HV_OBJDIR)/%.o: %.c
|
| A D | console.c | 155 char c = vuart_getchar(vu); in vuart_console_tx_chars() local 157 while(c != -1) { in vuart_console_tx_chars() 158 printf("%c", c); in vuart_console_tx_chars() 159 c = vuart_getchar(vu); in vuart_console_tx_chars()
|
| A D | trace.c | 26 uint32_t a, b, c, d; member 76 void TRACE_4I(uint32_t evid, uint32_t a, uint32_t b, uint32_t c, uint32_t d) in TRACE_4I() argument 87 entry.payload.fields_32.c = c; in TRACE_4I()
|
| A D | uart16550.c | 244 static void uart16550_putc(char c) in uart16550_putc() argument 254 temp = (uint8_t)c; in uart16550_putc()
|
| /hypervisor/lib/ |
| A D | string.c | 11 char c; in hex_digit_value() local 13 c = ch - '0'; in hex_digit_value() 15 c = ch - 'a' + 10; in hex_digit_value() 17 c = ch - 'A' + 10; in hex_digit_value() 19 c = -1; in hex_digit_value() 21 return c; in hex_digit_value() 30 char c, digit; in strtoul_hex() local 39 c = *s; in strtoul_hex() 41 } while (is_space(c)); in strtoul_hex() 44 c = s[1]; in strtoul_hex() [all …]
|
| A D | sprintf.c | 529 char c[2]; in do_print() local 531 c[0] = (char)__builtin_va_arg(args, int32_t); in do_print() 532 c[1] = 0; in do_print() 533 print_string(param, c); in do_print()
|
| /hypervisor/include/lib/ |
| A D | rtl.h | 27 static inline bool is_space(char c) in is_space() argument 29 return ((c == ' ') || (c == '\t')); in is_space() 32 static inline bool is_eol(char c) in is_eol() argument 34 return ((c == 0x0d) || (c == 0x0a) || (c == '\0')); in is_eol()
|
| /hypervisor/release/ |
| A D | Makefile | 6 SRCS += $(wildcard $(FILE_PATH)/*.c) 7 OBJS += $(patsubst %.c,$(HV_OBJDIR)/%.o,$(SRCS)) 23 $(HV_OBJDIR)/%.o: %.c
|
| A D | trace.c | 12 __unused uint32_t c, __unused uint32_t d) in TRACE_4I() argument
|
| /hypervisor/scripts/ |
| A D | genconf.sh | 59 transform vm_configurations.c 61 transform pt_intx.c 64 transform pci_dev.c 68 find ${out}/scenarios/${scenario} -iname *.h -o -iname *.c \
|
| /hypervisor/lib/crypto/mbedtls/ |
| A D | hkdf.c | 129 uint8_t c = (uint8_t)(i & 0xffU); in mbedtls_hkdf_expand() local 143 ret = mbedtls_md_hmac_update(&ctx, &c, 1); in mbedtls_hkdf_expand()
|
| A D | ChangeLog | 534 * Fix programs/pkey/dh_server.c so that it actually works with dh_client.c. 768 * Fix unused variable/function compilation warnings in pem.c, x509_crt.c and 857 * Fixed the sample applications gen_key.c, cert_req.c and cert_write.c for 862 subramanyam-c. #622 869 Found by subramanyam-c. #626 885 * Renamed source file library/net.c to library/net_sockets.c to avoid 1622 * Typos in platform.c and pkcs11.c (found by Daniel Phillips and Steffan 1785 * Split off curves from ecp.c into ecp_curves.c 2643 * Changed typo in #ifdef in x509parse.c (found 2854 * Fixed a couple memory leak in x509_read.c [all …]
|
| A D | sha256.c | 130 static inline void hash_computation( uint32_t a, uint32_t b, uint32_t c, in hash_computation() argument 136 temp2 = sigma2(a) + majority(a, b, c); in hash_computation()
|
| /hypervisor/dm/ |
| A D | vuart.c | 78 char c = -1; in fifo_getchar() local 81 c = fifo->buf[fifo->rindex]; in fifo_getchar() 85 return c; in fifo_getchar() 123 char c; in vuart_getchar() local 126 c = fifo_getchar(&vu->txfifo); in vuart_getchar() 128 return c; in vuart_getchar()
|
| /hypervisor/include/debug/ |
| A D | trace.h | 49 void TRACE_4I(uint32_t evid, uint32_t a, uint32_t b, uint32_t c, uint32_t d);
|