Searched refs:data_container (Results 1 – 8 of 8) sorted by relevance
/external/libbrillo/brillo/streams/ |
D | memory_stream.cc | 17 std::unique_ptr<data_container::DataContainerInterface> container, in MemoryStream() 24 std::unique_ptr<data_container::ReadOnlyBuffer> container{ in OpenRef() 25 new data_container::ReadOnlyBuffer{buffer, size}}; in OpenRef() 32 std::unique_ptr<data_container::ReadOnlyVectorCopy<uint8_t>> container{ in OpenCopyOf() 33 new data_container::ReadOnlyVectorCopy<uint8_t>{ in OpenCopyOf() 39 std::unique_ptr<data_container::ReadOnlyStringRef> container{ in OpenRef() 40 new data_container::ReadOnlyStringRef{buffer}}; in OpenRef() 45 std::unique_ptr<data_container::ReadOnlyStringCopy> container{ in OpenCopyOf() 46 new data_container::ReadOnlyStringCopy{std::move(buffer)}}; in OpenCopyOf() 59 std::unique_ptr<data_container::ByteBuffer> container{ in Create() [all …]
|
D | memory_stream.h | 63 std::unique_ptr<data_container::ReadOnlyVectorCopy<T>> container{ in OpenCopyOf() 64 new data_container::ReadOnlyVectorCopy<T>{std::move(buffer)}}; in OpenCopyOf() 81 std::unique_ptr<data_container::ReadOnlyVectorRef<T>> container{ in OpenRef() 82 new data_container::ReadOnlyVectorRef<T>{buffer}}; in OpenRef() 109 std::unique_ptr<data_container::VectorPtr<T>> container{ in CreateRef() 110 new data_container::VectorPtr<T>{buffer}}; in CreateRef() 127 std::unique_ptr<data_container::VectorPtr<T>> container{ in CreateRefForAppend() 128 new data_container::VectorPtr<T>{buffer}}; in CreateRefForAppend() 139 std::unique_ptr<data_container::DataContainerInterface> container, 195 std::unique_ptr<data_container::DataContainerInterface> container, [all …]
|
D | memory_containers.cc | 11 namespace data_container { namespace
|
D | memory_containers.h | 16 namespace data_container {
|
D | memory_containers_unittest.cc | 25 class MockContiguousBuffer : public data_container::ContiguousBufferBase {
|
D | memory_stream_unittest.cc | 31 class MockMemoryContainer : public data_container::DataContainerInterface {
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | mixture_test.py | 75 data_container = [] 83 data_container.append(samples) 88 yield data_container 96 data_container = [] 102 data_container.append(samples) 106 yield data_container
|
/external/v8/src/heap/ |
D | factory.cc | 62 Handle<CodeDataContainer> data_container, uint32_t stub_key, in InitializeCode() argument 79 code->set_code_data_container(*data_container); in InitializeCode() 2551 Handle<CodeDataContainer> data_container( in NewCodeDataContainer() local 2554 data_container->set_next_code_link(*undefined_value(), SKIP_WRITE_BARRIER); in NewCodeDataContainer() 2555 data_container->set_kind_specific_flags(flags); in NewCodeDataContainer() 2556 data_container->clear_padding(); in NewCodeDataContainer() 2557 return data_container; in NewCodeDataContainer() 2568 Handle<CodeDataContainer> data_container = NewCodeDataContainer(0); in TryNewCode() local 2601 data_container, stub_key, is_turbofanned, stack_slots, in TryNewCode() 2618 Handle<CodeDataContainer> data_container = NewCodeDataContainer(0); in NewCode() local [all …]
|