Lines Matching defs:bytes

483 	size_t bytes = area_page_protections_size(area->Size());
484 area->page_protections = (uint8*)malloc_etc(bytes,
494 bytes);
543 size_t bytes = area_page_protections_size(areaSize);
544 return (uint8*)realloc_etc(pageProtections, bytes, allocationFlags);
767 size_t bytes = area_page_protections_size(area->Size());
768 memcpy(newProtections, area->page_protections, bytes);
2807 size_t bytes = area_page_protections_size(source->Size());
2808 targetPageProtections = (uint8*)malloc_etc(bytes,
2815 memcpy(targetPageProtections, source->page_protections, bytes);
2818 for (size_t i = 0; i < bytes; i++) {
3223 "\tdl - 8 bytes\n"
3224 "\tdw - 4 bytes\n"
3225 "\tds - 2 bytes\n"
3268 kprintf("NOTE: number of bytes has been cut to page size\n");
3768 kprintf("Available memory: %" B_PRIdOFF "/%" B_PRIuPHYSADDR " bytes\n",
4469 add_debugger_command("db", &display_mem, "dump memory bytes (8-bit)");
5209 //dprintf("try to reserve %lu bytes, %Lu left\n", amount, sAvailableMemory);
5445 size_t bytes = area_page_protections_size(newSize);
5447 = (uint8*)realloc(area->page_protections, bytes);
5459 areaProtection | (areaProtection << 4), bytes - offset);
5528 The memory range starting at \a unsafeMemory with a length of \a size bytes
5539 \param size The number of bytes to be copied.
5646 \param size Size in bytes of the string buffer pointed to by \a to.
6170 TRACE(("get_memory_map_etc(%" B_PRId32 ", %p, %lu bytes, %" B_PRIu32 " "
6194 addr_t bytes = min_c(numBytes - offset, B_PAGE_SIZE);
6213 if (bytes > B_PAGE_SIZE - pageOffset)
6214 bytes = B_PAGE_SIZE - pageOffset;
6225 table[index].size = bytes;
6228 table[index].size += bytes;
6231 offset += bytes;