Home
last modified time | relevance | path

Searched refs:TF_ReadOnlyMemoryRegion (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/c/experimental/filesystem/
Dfilesystem_interface.h73 typedef struct TF_ReadOnlyMemoryRegion { struct
75 } TF_ReadOnlyMemoryRegion; argument
308 void (*cleanup)(TF_ReadOnlyMemoryRegion* region);
313 const void* (*data)(const TF_ReadOnlyMemoryRegion* region);
318 uint64_t (*length)(const TF_ReadOnlyMemoryRegion* region);
418 TF_ReadOnlyMemoryRegion* region,
Dmodular_filesystem.h168 ModularReadOnlyMemoryRegion(std::unique_ptr<TF_ReadOnlyMemoryRegion> region, in ModularReadOnlyMemoryRegion()
178 std::unique_ptr<TF_ReadOnlyMemoryRegion> region_;
Dmodular_filesystem.cc106 auto region = MakeUnique<TF_ReadOnlyMemoryRegion>(); in NewReadOnlyMemoryRegionFromFile()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
Dgcs_filesystem.h44 void Cleanup(TF_ReadOnlyMemoryRegion* region);
45 const void* Data(const TF_ReadOnlyMemoryRegion* region);
46 uint64_t Length(const TF_ReadOnlyMemoryRegion* region);
88 TF_ReadOnlyMemoryRegion* region,
Dgcs_filesystem.cc403 void Cleanup(TF_ReadOnlyMemoryRegion* region) { in Cleanup()
409 const void* Data(const TF_ReadOnlyMemoryRegion* region) { in Data()
414 uint64_t Length(const TF_ReadOnlyMemoryRegion* region) { in Length()
671 TF_ReadOnlyMemoryRegion* region, in NewReadOnlyMemoryRegionFromFile()
Dgcs_filesystem_test.cc373 TF_ReadOnlyMemoryRegion* region = new TF_ReadOnlyMemoryRegion; in TEST_F()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/
Dposix_filesystem.cc169 static void Cleanup(TF_ReadOnlyMemoryRegion* region) { in Cleanup()
175 static const void* Data(const TF_ReadOnlyMemoryRegion* region) { in Data()
180 static uint64_t Length(const TF_ReadOnlyMemoryRegion* region) { in Length()
244 TF_ReadOnlyMemoryRegion* region, in NewReadOnlyMemoryRegionFromFile()