Searched refs:memory (Results 1 - 25 of 2269) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/
H A Dmemory-map-selftests.c1 /* Self tests for memory-map for GDB, the GNU debugger.
22 #include "memory-map.h"
32 <!DOCTYPE memory-map
34 "http://sourceware.org/gdb/gdb-memory-map.dtd">
35 <memory-map>
36 <memory type="ram" start="0" length="4096" />
37 <memory type="rom" start="65536" length="256" />
38 <memory type="flash" start="131072" length="65536">
40 </memory>
41 </memory
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/
H A Dmemory-map-selftests.c1 /* Self tests for memory-map for GDB, the GNU debugger.
22 #include "memory-map.h"
32 <!DOCTYPE memory-map
34 "http://sourceware.org/gdb/gdb-memory-map.dtd">
35 <memory-map>
36 <memory type="ram" start="0" length="4096" />
37 <memory type="rom" start="65536" length="256" />
38 <memory type="flash" start="131072" length="65536">
40 </memory>
41 </memory
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/utils/
H A Dshared_ptr.hpp38 # include <memory>
40 # include <tr1/memory>
H A Dmemory_test.cpp33 #include "utils/memory.hpp"
47 const units::bytes memory = utils::physical_memory(); local
50 ATF_REQUIRE(memory == 0);
52 ATF_REQUIRE(memory > 0);
53 ATF_REQUIRE(memory < 100 * units::TB); // Large enough for now...
55 fail("Unimplemented memory query type");
/netbsd-current/external/gpl3/gdb.old/dist/sim/common/
H A Dhw-alloc.c1 /* Hardware memory allocator.
55 struct hw_alloc_data *memory = ZALLOC (struct hw_alloc_data); local
56 memory->alloc = zalloc (size);
57 memory->next = me->alloc_of_hw;
58 me->alloc_of_hw = memory;
59 return memory->alloc;
65 struct hw_alloc_data *memory = ZALLOC (struct hw_alloc_data); local
66 memory->alloc = zalloc (size);
67 memory->next = me->alloc_of_hw;
68 me->alloc_of_hw = memory;
76 struct hw_alloc_data **memory; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dhw-alloc.c1 /* Hardware memory allocator.
54 struct hw_alloc_data *memory = ZALLOC (struct hw_alloc_data); local
55 memory->alloc = zalloc (size);
56 memory->next = me->alloc_of_hw;
57 me->alloc_of_hw = memory;
58 return memory->alloc;
64 struct hw_alloc_data *memory = ZALLOC (struct hw_alloc_data); local
65 memory->alloc = zalloc (size);
66 memory->next = me->alloc_of_hw;
67 me->alloc_of_hw = memory;
75 struct hw_alloc_data **memory; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dallocator-inst.cc29 #include <memory>
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dallocator-inst.cc29 #include <memory>
/netbsd-current/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/
H A Dunknown_gc.d5 import core.memory;
/netbsd-current/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.init_fini/
H A Dtest18996.d7 import core.memory;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUMacroFusion.h13 #include <memory>
H A DAMDGPUExportClustering.h13 #include <memory>
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dhw_core.c54 core *memory = (core*)device_data(me); local
55 core_init(memory);
68 core *memory = (core*)device_data(me); local
71 core_attach(memory,
88 core *memory = (core*)device_data(me); local
89 return core_map_read_buffer(core_readable(memory),
104 core *memory = (core*)device_data(me); local
106 ? core_readable(memory)
107 : core_writeable(memory));
133 core *memory local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dhw_core.c54 core *memory = (core*)device_data(me); local
55 core_init(memory);
68 core *memory = (core*)device_data(me); local
71 core_attach(memory,
88 core *memory = (core*)device_data(me); local
89 return core_map_read_buffer(core_readable(memory),
104 core *memory = (core*)device_data(me); local
106 ? core_readable(memory)
107 : core_writeable(memory));
133 core *memory local
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_memory.c29 #include <core/memory.h>
35 nvkm_memory_tags_put(struct nvkm_memory *memory, struct nvkm_device *device, argument
44 kfree(memory->tags);
45 memory->tags = NULL;
53 nvkm_memory_tags_get(struct nvkm_memory *memory, struct nvkm_device *device, argument
61 if ((tags = memory->tags)) {
62 /* If comptags exist for the memory, but a different amount
89 * As memory can be mapped in multiple places, we still
99 *ptags = memory->tags = tags;
106 struct nvkm_memory *memory)
105 nvkm_memory_ctor(const struct nvkm_memory_func *func, struct nvkm_memory *memory) argument
115 struct nvkm_memory *memory = container_of(kref, typeof(*memory), kref); local
126 struct nvkm_memory *memory = *pmemory; local
134 nvkm_memory_ref(struct nvkm_memory *memory) argument
147 struct nvkm_memory *memory; local
[all...]
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Dms-buffer.h19 ms_buffer_initialize (void (*memory) (struct buffer *),
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
H A Dmemory.d13 module rt.memory;
16 import core.memory;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86MacroFusion.h17 #include <memory>
/netbsd-current/external/mit/expat/dist/lib/
H A Dwinconfig.h42 #include <memory.h>
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/rt/
H A Dmemory.d13 module rt.memory;
16 import core.memory;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/msp430/
H A Dattr-430-small-bad.l3 [^:]*:2: Error: file was compiled for the small memory model, but the large memory model is selected
4 [^:]*:3: Error: file was compiled for the small memory model, but the large memory model is selected
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-scripts/
H A Dregion-alias-1.d3 #error: .*:[0-9]+: error: redefinition of memory region alias `MY_ALIAS'
H A Dregion-alias-2.d3 #error: .*:[0-9]+: error: memory region `NIL' for alias `MY_ALIAS' does not exist
H A Dregion-alias-3.d3 #error: .*:[0-9]+: error: alias for default memory region
H A Dregion-alias-4.d3 #error: .*:[0-9]+: error: alias for default memory region

Completed in 244 milliseconds

1234567891011>>