Searched refs:memory (Results 76 - 100 of 122) sorted by last modified time

12345

/haiku/src/tests/system/network/ipv6/
H A Dmulticast_sender.cpp8 #include <memory.h>
/haiku/src/tests/system/network/
H A Dipv46_server.cpp2 #include <memory.h>
H A Dipv46_client.cpp2 #include <memory.h>
/haiku/src/bin/debug/ltrace/
H A Dltrace_stub.cpp36 // TODO memory should be executable, use mmap with PROT_EXEC
37 void* memory = malloc(_ALIGN(sizeof(PatchEntry)) local
39 if (memory == NULL)
42 PatchEntry* entry = new(memory) PatchEntry;
44 void* stub = (uint8*)memory + _ALIGN(sizeof(PatchEntry));
/haiku/src/add-ons/accelerants/radeon/
H A DInitAccelerant.c71 if( ai->si->memory[mt_PCI].area > 0 ) {
74 B_READ_AREA | B_WRITE_AREA, ai->si->memory[mt_PCI].area );
81 if( ai->si->memory[mt_AGP].area > 0 ) {
84 B_READ_AREA | B_WRITE_AREA, ai->si->memory[mt_AGP].area );
316 di->memory = ai->si->memory[mt_local].size;
H A DProposeDisplayMode.c379 // take care of that when calculating memory consumption
385 // if we haven't enough memory, reduce virtual height
389 // of graphics memory)
391 // careful about additionally required memory:
393 if ((row_bytes * target->virtual_height) > si->memory[mt_local].size - 1024 )
394 target->virtual_height = (si->memory[mt_local].size - 1024) / row_bytes;
398 SHOW_ERROR( 4, "not enough memory for this mode (could show only %d of %d lines)",
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp443 // create the memory block manager
2280 _NotifyUser("Inspect Address", "Failed to allocate memory block");
2290 TeamMemory* memory = fTeam->GetTeamMemory(); local
2294 new(std::nothrow) RetrieveMemoryBlockJob(fTeam, memory,
2301 _NotifyUser("Inspect Address", "Failed to retrieve memory data: %s",
2318 TeamMemory* memory = fTeam->GetTeamMemory(); local
2322 new(std::nothrow) WriteMemoryJob(fTeam, memory, address, data, size),
2324 _NotifyUser("Write Memory", "Failed to write memory data: %s",
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAll.h39 #include <memory.h>
195 // memory errors (2000's)
231 { ERROR_INSUFFICIENT_MEMORY , "insufficient memory" }, \
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex600 the usual memory page size of current x86 architectures and therefore the
/haiku/src/system/kernel/slab/
H A DHashedObjectCache.h87 void Free(void* memory) const
89 slab_internal_free(memory, 0);
/haiku/headers/os/add-ons/graphics/
H A DAccelerant.h92 uint32 memory; /* amount of memory on the device, */ member in struct:__anon8
125 /* buffer in virtual memory */
128 /* buffer in physical memory for DMA */
/haiku/headers/libs/print/libprint/
H A DPrintProcess.h11 #include <memory>
/haiku/src/add-ons/print/drivers/pcl6/
H A DDeltaRowCompression.cpp11 #include <memory.h>
/haiku/headers/private/graphics/via/
H A DDriverInterface.h91 uint32 memory; member in struct:settings
178 uint32 use_clone_bugfix; /*for 4.5.0, cloning of physical memory does not work*/
181 /*memory mappings*/
182 area_id regs_area; /* Kernel's area_id for the memory mapped registers.
190 void *framebuffer; /* As viewed from virtual memory */
193 void *pseudo_dma; /* As viewed from virtual memory */
275 uint32 std_memory_clock; /* card memory clock speed needed (Mhz) */
292 uint32 memory_size; /* memory (in bytes) */
/haiku/src/add-ons/accelerants/via/
H A DGetDeviceInfo.c41 adi->memory = si->ps.memory_size;
/haiku/src/add-ons/accelerants/via/engine/
H A Dinfo.c111 /* override memory detection if requested by user */
112 if (si->settings.memory != 0)
114 LOG(2,("INFO: forcing memory size (specified in settings file)\n"));
115 si->ps.memory_size = si->settings.memory * 1024 * 1024;
/haiku/headers/private/graphics/radeon/
H A Dradeon_interface.h76 // type of memory
78 mt_local, // local graphics memory
79 mt_PCI, // PCI memory (read: fully cachable)
80 mt_AGP, // AGP memory (read: not cachable; currently not supported)
81 mt_nonlocal, // non-local graphics memory (alias to one of the
275 uint32 mem_handle; // memory handle
402 uint32 fb_mem_handle; // memory handle
449 // ring buffer (in non-local memory)
451 uint32 mem_offset; // offset in non-local memory
463 uint32 mem_handle; // handle of memory o
550 memory_type_info memory[mt_last]; // info about memory types member in struct:__anon33
[all...]
/haiku/src/kits/storage/mime/
H A DTextSnifferAddon.cpp122 #include <memory.h>
/haiku/src/tests/servers/app/benchmark/
H A DBenchmark.cpp6 #include <memory>
154 fprintf(stderr, "Insufficient memory to create the test. Sorry.\n");
/haiku/src/libs/print/libprint/
H A DHalftone.cpp9 #include <memory>
/haiku/src/bin/rc/
H A Dlexer.l205 abort_compile(B_NO_MEMORY, "out of memory");
266 abort_compile(B_NO_MEMORY, "out of memory");
/haiku/src/apps/glteapot/
H A Dutil.h9 #include <memory.h>
258 #if 0 /* leaks memory */
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6_utils.cpp30 #include <memory.h>
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeon.cpp159 PRINT(("CRadeon::CRadeon() - Can't map memory apertures\n"));
196 return fSharedInfo->memory[mt_local].virtual_addr_start;
H A DVideoIn.cpp13 #include <memory.h>
386 // always copy into main memory first, even if it must be converted by CPU -

Completed in 218 milliseconds

12345