HomeSort by: relevance | last modified time | path
    Searched defs:memory (Results 1 - 25 of 323) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/kyua-cli/dist/utils/
memory_test.cpp 33 #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");
  /src/external/gpl3/gdb/dist/sim/ppc/
corefile.h 72 (core *memory); variable
78 o raw-memory - the address range can be implemented using
80 any accesses to the specified memory range.
91 in order. First raw-memory and then callback maps (in assending
94 be notified of all accesses that are not covered by raw-memory maps
120 device or memory array is currently implemented using a simple
160 (core *memory); variable
164 (core *memory); variable
168 (core *memory); variable
193 Transfer a fixed amout of memory between the host and target. Th
    [all...]
vm.h 29 /* each PowerPC requires two virtual memory maps */
33 (core *memory); variable
37 (vm *memory); variable
41 (vm *memory); variable
86 /* fetch the next instruction from memory */
95 /* read data from memory */
112 /* write data to memory */
134 (vm *memory,
147 (vm *memory,
152 (vm *memory); variable
    [all...]
hw_core.c 54 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 = core_create() local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-main.h 45 /* Memory changed notification suppressed? */
46 int memory; member in struct:mi_suppress_notification
  /src/external/gpl3/gdb.old/dist/sim/ppc/
corefile.h 72 (core *memory); variable
78 o raw-memory - the address range can be implemented using
80 any accesses to the specified memory range.
91 in order. First raw-memory and then callback maps (in assending
94 be notified of all accesses that are not covered by raw-memory maps
120 device or memory array is currently implemented using a simple
160 (core *memory); variable
164 (core *memory); variable
168 (core *memory); variable
193 Transfer a fixed amout of memory between the host and target. Th
    [all...]
vm.h 29 /* each PowerPC requires two virtual memory maps */
33 (core *memory); variable
37 (vm *memory); variable
41 (vm *memory); variable
86 /* fetch the next instruction from memory */
95 /* read data from memory */
112 /* write data to memory */
134 (vm *memory,
147 (vm *memory,
152 (vm *memory); variable
    [all...]
hw_core.c 54 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 = core_create() local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-main.h 45 /* Memory changed notification suppressed? */
46 int memory; member in struct:mi_suppress_notification
  /src/external/gpl3/gcc/dist/gcc/
resource.h 25 do { (RES)->memory = (RES)->volatil = (RES)->cc = 0; \
31 char memory; /* Insn sets or needs a memory location. */ member in struct:resources
32 char volatil; /* Insn sets or needs a volatile memory loc. */
  /src/external/gpl3/gcc.old/dist/gcc/
resource.h 25 do { (RES)->memory = (RES)->volatil = (RES)->cc = 0; \
31 char memory; /* Insn sets or needs a memory location. */ member in struct:resources
32 char volatil; /* Insn sets or needs a volatile memory loc. */
  /src/external/gpl3/gdb.old/dist/sim/common/
hw-alloc.c 1 /* 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...]
  /src/external/gpl3/gdb/dist/sim/common/
hw-alloc.c 1 /* 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...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_memory.c 29 #include <core/memory.h>
35 nvkm_memory_tags_put(struct nvkm_memory *memory, struct nvkm_device *device,
44 kfree(memory->tags);
45 memory->tags = NULL;
53 nvkm_memory_tags_get(struct nvkm_memory *memory, struct nvkm_device *device,
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)
115 struct nvkm_memory *memory = container_of(kref, typeof(*memory), kref); local
126 struct nvkm_memory *memory = *pmemory; local
147 struct nvkm_memory *memory; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/
priv.h 24 #include <core/memory.h>
27 struct nvkm_memory memory; member in struct:nvkm_instobj
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
umem.h 17 struct nvkm_memory *memory; member in struct:nvkm_umem
nouveau_nvkm_subdev_mmu_umem.c 31 #include <core/memory.h>
43 struct nvkm_memory *memory = NULL; local
53 memory = nvkm_memory_ref(umem->memory);
62 memory = nvkm_memory_ref(umem->memory);
65 return memory ? memory : ERR_PTR(-ENOENT);
115 int ret = nvkm_mem_map_host(umem->memory, &umem->dmat,
118 int ret = nvkm_mem_map_host(umem->memory, &umem->map)
    [all...]
  /src/external/bsd/kyua-cli/dist/cli/
cmd_db_exec_test.cpp 139 const char* memory = "BLOB contents"; local
143 insert.bind(":v2", sqlite::blob(memory, std::strlen(memory)));
149 (F("A string,BLOB of %s bytes") % std::strlen(memory)).str(),
  /src/external/bsd/kyua-cli/dist/utils/sqlite/
statement.hpp 66 /// Memory representing the contents of the blob, or NULL if empty.
68 /// This memory must remain valid throughout the life of this object, as we
69 /// do not grab ownership of the memory.
70 const void* memory; member in class:utils::sqlite::blob
72 /// Number of bytes in memory.
80 memory(memory_), size(size_)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
gpuobj.h 6 #include <core/memory.h>
23 struct nvkm_memory *memory; member in struct:nvkm_gpuobj
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
perf.h 15 u32 memory; member in struct:nvbios_perfE
  /src/external/bsd/openldap/dist/servers/slapd/pwmods/
argon2.c 61 static unsigned long memory = SLAPD_ARGON2_MEMORY; variable
89 encoded_length = argon2_encodedlen( iterations, memory, parallelism,
116 if ( argon2id_hash_encoded( iterations, memory, parallelism,
140 iterations, memory * 1024,
202 memory = value;
  /src/sys/external/bsd/drm2/dist/drm/
drm_legacy.h 147 struct agp_memory *memory; member in struct:drm_agp_mem
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
channv50.h 24 struct nvkm_memory *memory; member in struct:nv50_disp_chan
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nouveau_nvkm_subdev_fb_ram.c 29 #define nvkm_vram(p) container_of((p), struct nvkm_vram, memory)
32 #include <core/memory.h>
38 struct nvkm_memory memory; member in struct:nvkm_vram
45 nvkm_vram_map(struct nvkm_memory *memory, u64 offset, struct nvkm_vmm *vmm,
48 struct nvkm_vram *vram = nvkm_vram(memory);
50 .memory = &vram->memory,
59 nvkm_vram_size(struct nvkm_memory *memory)
61 return (u64)nvkm_mm_size(nvkm_vram(memory)->mn) << NVKM_RAM_MM_SHIFT;
65 nvkm_vram_addr(struct nvkm_memory *memory)
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>