Home | History | Annotate | Download | only in cctest

Lines Matching refs:buffer

67 // a buffer and executing them.  These tests do not initialize the
105 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
108 CHECK(buffer);
109 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
119 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
127 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
130 CHECK(buffer);
131 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
151 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
159 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
162 CHECK(buffer);
163 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
173 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
181 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
184 CHECK(buffer);
185 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
197 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
199 result = FUNCTION_CAST<F2>(buffer)(0x100000000l, 0x100000000l);
201 result = FUNCTION_CAST<F2>(buffer)(-0x100000000l, 0x100000000l);
209 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
212 CHECK(buffer);
213 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
235 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
243 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
246 CHECK(buffer);
247 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
264 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
272 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
275 CHECK(buffer);
276 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
314 int result = FUNCTION_CAST<F0>(buffer)();
378 v8::internal::byte buffer[1024];
379 Assembler assm(Isolate::Current(), buffer, sizeof(buffer));