Searched refs:arg_buffer (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | local_client_execute_test.cc | 352 auto arg_buffer = LiteralToShapedBuffer(arg_literal); in XLA_TEST_F() local 354 ScopedShapedBuffer result = ExecuteLocallyOrDie(computation, {&arg_buffer}); in XLA_TEST_F() 382 auto arg_buffer = LiteralToShapedBuffer(arg_literal); in XLA_TEST_F() local 384 ScopedShapedBuffer result_0 = ExecuteLocallyOrDie(computation, {&arg_buffer}); in XLA_TEST_F() 434 auto arg_buffer = LiteralToShapedBuffer(arg_literal); in XLA_TEST_F() local 436 ScopedShapedBuffer result = ExecuteLocallyOrDie(computation, {&arg_buffer}); in XLA_TEST_F() 488 auto arg_buffer = LiteralToShapedBuffer(arg_literal); in XLA_TEST_F() local 490 ScopedShapedBuffer result = ExecuteLocallyOrDie(computation, {&arg_buffer}); in XLA_TEST_F() 532 auto arg_buffer = LiteralToShapedBuffer(arg_literal); in XLA_TEST_F() local 534 ScopedShapedBuffer result = ExecuteLocallyOrDie(computation, {&arg_buffer}); in XLA_TEST_F()
|
/external/v8/src/wasm/ |
D | wasm-debug.cc | 169 Address frame_pointer, uint32_t func_index, Address arg_buffer) { in Execute() argument 175 Address arg_buf_ptr = arg_buffer; in Execute() 245 WriteUnalignedValue<ctype>(arg_buffer, ret_val.to<ctype>()); \ in Execute() 650 Address arg_buffer) { in RunInterpreter() argument 655 static_cast<uint32_t>(func_index), arg_buffer); in RunInterpreter()
|
D | wasm-interpreter.cc | 2727 std::vector<uint8_t> arg_buffer(num_args * 8); in CallExternalWasmFunction() local 2732 if (arg_buffer.size() < offset + param_size) { in CallExternalWasmFunction() 2733 arg_buffer.resize(std::max(2 * arg_buffer.size(), offset + param_size)); in CallExternalWasmFunction() 2735 Address address = reinterpret_cast<Address>(arg_buffer.data()) + offset; in CallExternalWasmFunction() 2761 if (arg_buffer.size() < return_size) { in CallExternalWasmFunction() 2762 arg_buffer.resize(return_size); in CallExternalWasmFunction() 2767 Handle<Object> arg_buffer_obj(reinterpret_cast<Object*>(arg_buffer.data()), in CallExternalWasmFunction() 2804 Address address = reinterpret_cast<Address>(arg_buffer.data()); in CallExternalWasmFunction()
|
D | wasm-objects.h | 582 Address arg_buffer);
|
/external/v8/src/runtime/ |
D | runtime-wasm.cc | 246 Address arg_buffer = reinterpret_cast<Address>(*arg_buffer_obj); in RUNTIME_FUNCTION() local 272 isolate, debug_info, frame_pointer, func_index, arg_buffer); in RUNTIME_FUNCTION()
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | xla_client_test.py | 446 arg_buffer = xla_client.LocalBuffer.from_pyval(arg) 447 arg_buffer.delete() 449 compiled_c.Execute([arg_buffer])
|
/external/v8/src/compiler/ |
D | wasm-compiler.cc | 4642 Node* arg_buffer = in BuildWasmInterpreterEntry() local 4654 SetEffect(graph()->NewNode(GetSafeStoreOperator(offset, type), arg_buffer, in BuildWasmInterpreterEntry() 4665 jsgraph()->SmiConstant(func_index), arg_buffer, in BuildWasmInterpreterEntry() 4679 graph()->NewNode(mcgraph()->machine()->Load(load_rep), arg_buffer, in BuildWasmInterpreterEntry() 4699 Node* arg_buffer = Param(CWasmEntryParameters::kArgumentsBuffer + 1); in BuildCWasmEntry() local 4712 graph()->NewNode(GetSafeLoadOperator(offset, type), arg_buffer, in BuildCWasmEntry() 4735 arg_buffer, Int32Constant(0), call, Effect(), in BuildCWasmEntry()
|