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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/sandpoint/stand/altboot/
memfs.h 31 FS_DEF(mem); variable
memfs.h 31 FS_DEF(mem); variable
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
lut.h 5 #include <nvif/mem.h>
11 struct nvif_mem mem[2]; member in struct:nv50_lut
lut.h 5 #include <nvif/mem.h>
11 struct nvif_mem mem[2]; member in struct:nv50_lut
  /src/sys/external/bsd/gnu-efi/dist/apps/
t.c 9 static CHAR16 mem[2048]; local
13 mem[i] = (CHAR16) str[i];
14 mem[i] = 0;
15 return mem;
t.c 9 static CHAR16 mem[2048]; local
13 mem[i] = (CHAR16) str[i];
14 mem[i] = 0;
15 return mem;
  /src/external/bsd/zstd/dist/tests/fuzz/
fuzz_helpers.c 19 void* const mem = malloc(size); local
20 FUZZ_ASSERT(mem);
21 return mem;
29 void* const mem = malloc(size); local
30 FUZZ_ASSERT(mem);
31 return mem;
fuzz_helpers.c 19 void* const mem = malloc(size); local
20 FUZZ_ASSERT(mem);
21 return mem;
29 void* const mem = malloc(size); local
30 FUZZ_ASSERT(mem);
31 return mem;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_proc.cc 22 void *mem = InternalAlloc(sizeof(Processor)); local
23 internal_memset(mem, 0, sizeof(Processor));
24 Processor *proc = new(mem) Processor;
tsan_rtl_proc.cc 22 void *mem = InternalAlloc(sizeof(Processor)); local
23 internal_memset(mem, 0, sizeof(Processor));
24 Processor *proc = new(mem) Processor;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_mem.h 8 #include <nvif/mem.h>
21 struct nvif_mem mem; member in struct:nouveau_mem
nouveau_mem.h 8 #include <nvif/mem.h>
21 struct nvif_mem mem; member in struct:nouveau_mem
  /src/external/gpl2/lvm2/dist/lib/format1/
vg_number.c 33 struct dm_pool *mem = dm_pool_create("lvm1 vg_number", 10 * 1024); local
38 if (!mem)
41 if (!read_pvs_in_vg(fid->fmt, NULL, filter, mem, &all_pvs))
62 dm_pool_destroy(mem);
vg_number.c 33 struct dm_pool *mem = dm_pool_create("lvm1 vg_number", 10 * 1024); local
38 if (!mem)
41 if (!read_pvs_in_vg(fid->fmt, NULL, filter, mem, &all_pvs))
62 dm_pool_destroy(mem);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl_proc.cpp 21 void *mem = InternalAlloc(sizeof(Processor)); local
22 internal_memset(mem, 0, sizeof(Processor));
23 Processor *proc = new(mem) Processor;
tsan_rtl_proc.cpp 21 void *mem = InternalAlloc(sizeof(Processor)); local
22 internal_memset(mem, 0, sizeof(Processor));
23 Processor *proc = new(mem) Processor;
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl_proc.cpp 21 void *mem = InternalAlloc(sizeof(Processor)); local
22 internal_memset(mem, 0, sizeof(Processor));
23 Processor *proc = new(mem) Processor;
tsan_rtl_proc.cpp 21 void *mem = InternalAlloc(sizeof(Processor)); local
22 internal_memset(mem, 0, sizeof(Processor));
23 Processor *proc = new(mem) Processor;
  /src/external/gpl3/gdb/dist/gdb/
alloc.c 82 void *mem; local
92 mem = calloc (number, size); /* ARI: xcalloc */
93 if (mem == NULL)
96 return mem;
alloc.c 82 void *mem; local
92 mem = calloc (number, size); /* ARI: xcalloc */
93 if (mem == NULL)
96 return mem;
  /src/external/gpl3/gdb.old/dist/gdb/
alloc.c 82 void *mem; local
92 mem = calloc (number, size); /* ARI: xcalloc */
93 if (mem == NULL)
96 return mem;
alloc.c 82 void *mem; local
92 mem = calloc (number, size); /* ARI: xcalloc */
93 if (mem == NULL)
96 return mem;
  /src/lib/libc/gen/
sysconf.c 79 uint64_t mem; local
380 len = sizeof(mem);
383 return (sysctl(mib, 2, &mem, &len, NULL, 0) == -1 ? -1
384 : (long)(mem / _getpagesize()));
  /src/lib/librumpuser/
rumpuser_mem.c 49 void *mem = NULL; local
55 rv = posix_memalign(&mem, (size_t)alignment, howmuch);
64 *memp = mem;
80 void *mem; local
93 mem = mmap(prefaddr, size, prot,
95 if (mem == MAP_FAILED) {
98 *memp = mem;
  /src/sys/arch/arm/broadcom/
bcm2835_mbox_acpi.c 81 struct acpi_mem *mem; local
90 mem = acpi_res_mem(&res, 0);
92 if (mem == NULL || irq == NULL) {
101 if (bus_space_map(sc->sc_iot, mem->ar_base, mem->ar_length, 0, &sc->sc_ioh) != 0) {

Completed in 55 milliseconds

1 2 3 4 5 6 7 8 91011>>