Lines Matching defs:memory
21 * between each other through shared memory protected by pa_atomic_t.
22 * Thread "left" continuously increments a value and writes its contents to memory.
60 char* memory;
75 memcpy(&value, io->memory, sizeof(value));
89 memcpy(io->memory, &value, sizeof(value));
100 char* memory = pa_xmalloc0(MEMORY_SIZE);
102 memset(memory, 0, MEMORY_SIZE);
104 /* intentionally misalign memory since srbchannel also does not
106 io1.memory = io2.memory = memory + 1025;
118 pa_xfree(memory);