Searched refs:byte_size (Results 1 – 5 of 5) sorted by relevance
| /openbmc/qemu/include/ |
| H A D | glib-compat.h | 96 static inline gpointer g_memdup2_qemu(gconstpointer mem, gsize byte_size) in g_memdup2_qemu() argument 99 return g_memdup2(mem, byte_size); in g_memdup2_qemu() 103 if (mem && byte_size != 0) { in g_memdup2_qemu() 104 new_mem = g_malloc(byte_size); in g_memdup2_qemu() 105 memcpy(new_mem, mem, byte_size); in g_memdup2_qemu()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
| H A D | 0001-Bug-fix-for-data-type-length-judgment.patch | 7 if (byte_size == sizeof(long)) { 31 @@ -190,7 +190,7 @@ static bool get_integer_base_type(enum arg_type *type, int byte_size, 35 - if (byte_size == sizeof(long)) { 36 + if (byte_size == sizeof(long long)) {
|
| /openbmc/qemu/contrib/plugins/ |
| H A D | lockstep.c | 110 static inline gpointer g_memdup2_qemu(gconstpointer mem, gsize byte_size) in g_memdup2_qemu() argument 113 return g_memdup2(mem, byte_size); in g_memdup2_qemu() 117 if (mem && byte_size != 0) { in g_memdup2_qemu() 118 new_mem = g_malloc(byte_size); in g_memdup2_qemu() 119 memcpy(new_mem, mem, byte_size); in g_memdup2_qemu()
|
| /openbmc/u-boot/cmd/ |
| H A D | pci.c | 493 int byte_size; in pci_cfg_display() local 496 byte_size = pci_byte_size(size); in pci_cfg_display() 498 length = 0x40 / byte_size; /* Standard PCI config space */ in pci_cfg_display() 503 nbytes = length * byte_size; in pci_cfg_display() 507 for (i = 0; i < linebytes; i += byte_size) { in pci_cfg_display() 516 addr += byte_size; in pci_cfg_display()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pidgin/pidgin-sipe/ |
| H A D | 0001-Migrate-to-use-g_memdup2.patch | 18 g_memdup2(gconstpointer mem, gsize byte_size) { 21 if(mem && byte_size != 0) { 22 new_mem = g_malloc (byte_size); 23 memcpy (new_mem, mem, byte_size);
|