Home | History | Annotate | Download | only in tests

Lines Matching defs:memory

25   uint8_t memory[Action::MaxActionSize()];
27 Action* action = Action::CreateAction(0x1234, "malloc", line, memory);
40 uint8_t memory[128];
42 Action* action = Action::CreateAction(0x1234, "malloc", line, memory);
47 uint8_t memory[128];
49 Action* action = Action::CreateAction(0x1234, "free", line, memory);
60 uint8_t memory[128];
62 Action* action = Action::CreateAction(0x1234, "calloc", line, memory);
75 uint8_t memory[128];
77 Action* action = Action::CreateAction(0, "free", line, memory);
86 uint8_t memory[128];
88 Action* action = Action::CreateAction(0x1234, "calloc", line1, memory);
92 action = Action::CreateAction(0x1234, "calloc", line2, memory);
97 uint8_t memory[128];
99 Action* action = Action::CreateAction(0x1234, "realloc", line, memory);
112 action = Action::CreateAction(0x1234, "realloc", null_line, memory);
123 uint8_t memory[128];
125 Action* action = Action::CreateAction(0x1234, "realloc", line1, memory);
129 action = Action::CreateAction(0x1234, "realloc", line2, memory);
134 uint8_t memory[128];
136 Action* action = Action::CreateAction(0x1234, "memalign", line, memory);
149 uint8_t memory[128];
151 Action* action = Action::CreateAction(0x1234, "memalign", line1, memory);
155 action = Action::CreateAction(0x1234, "memalign", line2, memory);
160 uint8_t memory[128];
162 Action* action = Action::CreateAction(0x0, "thread_done", line, memory);