Searched refs:bytes (Results 1 – 8 of 8) sorted by relevance
| /common/ |
| A D | malloc_simple.c | 19 static void *alloc_simple(size_t bytes, int align) in alloc_simple() argument 25 new_ptr = addr + bytes - gd->malloc_base; in alloc_simple() 26 log_debug("size=%lx, ptr=%lx, limit=%x: ", (ulong)bytes, new_ptr, in alloc_simple() 34 ptr = map_sysmem(addr, bytes); in alloc_simple() 40 void *malloc_simple(size_t bytes) in malloc_simple() argument 44 ptr = alloc_simple(bytes, 1); in malloc_simple() 49 VALGRIND_MALLOCLIKE_BLOCK(ptr, bytes, 0, false); in malloc_simple() 54 void *memalign_simple(size_t align, size_t bytes) in memalign_simple() argument 58 ptr = alloc_simple(bytes, align); in memalign_simple() 62 VALGRIND_MALLOCLIKE_BLOCK(ptr, bytes, 0, false); in memalign_simple()
|
| A D | dlmalloc.c | 1245 Void_t* mALLOc_impl(bytes) size_t bytes; in mALLOc_impl() 1279 if (bytes > CONFIG_SYS_MALLOC_LEN || (long)bytes < 0) 1662 Void_t* rEALLOc_impl(oldmem, bytes) Void_t* oldmem; size_t bytes; in rEALLOc_impl() 1687 if (!bytes) { 1693 if (bytes > CONFIG_SYS_MALLOC_LEN || (long)bytes < 0) 1905 Void_t* mEMALIGn_impl(alignment, bytes) size_t alignment; size_t bytes; in mEMALIGn_impl() 1918 if (bytes > CONFIG_SYS_MALLOC_LEN || (long)bytes < 0) 2059 Void_t* vALLOc(bytes) size_t bytes; in vALLOc() 2073 Void_t* pvALLOc(bytes) size_t bytes; in pvALLOc() 2185 if (bytes == 0) { in rEALLOc() [all …]
|
| A D | dlmalloc.src | 118 the worst case wastage for a request of zero bytes is 24 bytes. 2102 Void_t* mALLOc(size_t bytes) 2104 Void_t* mALLOc(bytes) size_t bytes; 2497 Void_t* rEALLOc(oldmem, bytes) Void_t* oldmem; size_t bytes; 2534 nb = request2size(bytes); 2546 newmem = mALLOc(bytes); 2648 newmem = mALLOc (bytes); 2716 Void_t* mEMALIGn(alignment, bytes) size_t alignment; size_t bytes; 2741 nb = request2size(bytes); 2822 Void_t* vALLOc(bytes) size_t bytes; [all …]
|
| A D | edid.c | 571 unsigned char *bytes = (unsigned char *)monitor; in edid_print_dtd() local 575 if (bytes[0] == 0 && bytes[1] == 0) { in edid_print_dtd()
|
| A D | Kconfig | 795 hex "Size of the bootparam buffer to malloc in bytes" 960 Default seed size (64 bytes) can be overridden by a decimal 1023 at offset 0) fails its checksum. The offset is in bytes and must be 1117 Sets the size of the bloblist in bytes. This must include all 1127 Sets the size of the bloblist in bytes after relocation. Since U-Boot
|
| /common/spl/ |
| A D | Kconfig.vpl | 262 hex "Maximum size (in bytes) for the VPL stage" 266 The maximum size (in bytes) of the TPL stage. This size is determined
|
| A D | Kconfig.tpl | 128 hex "Maximum size (in bytes) for the TPL stage" 135 The maximum size (in bytes) of the TPL stage.
|
| A D | Kconfig | 188 occurrence of non 0xaa bytes. 200 This adds a small amount to SPL code size, perhaps 100 bytes. 475 SRAM which is limited to SYS_MALLOC_F_LEN bytes. 599 in raw mode. Units: MMC sectors (1 sector = 512 bytes). 784 by around 60 bytes. 1000 in raw mode. Units: NAND disk sectors (1 sector = 512 bytes). 1091 The offset in bytes to the LEB within a PEB. 1386 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
|
Completed in 32 milliseconds