Home
last modified time | relevance | path

Searched defs:Slice (Results 1 – 25 of 85) sorted by relevance

1234

/external/perfetto/include/perfetto/ext/tracing/core/
Dslice.h33 struct Slice { struct
34 Slice() : start(nullptr), size(0) {} in Slice() argument
35 Slice(const void* st, size_t sz) : start(st), size(sz) {} in Slice() argument
39 static Slice Allocate(size_t size) { in Allocate() argument
47 static Slice TakeOwnership(std::unique_ptr<uint8_t[]> buf, size_t size) { in TakeOwnership() argument
64 Slice(const Slice&) = delete; argument
65 void operator=(const Slice&) = delete; argument
73 using Slices = std::vector<Slice>; argument
/external/skia/src/gpu/dawn/
DGrDawnRingBuffer.h20 struct Slice { struct
21 Slice(wgpu::Buffer buffer, int offset) in Slice() function
23 Slice() in Slice() function
25 Slice(const Slice& other) in Slice() argument
35 Slice allocate(int size); argument
/external/skia/src/gpu/
DGrStagingBufferManager.h21 struct Slice { struct
22 Slice() {} in Slice() argument
23 Slice(GrGpuBuffer* buffer, size_t offset, void* offsetMapPtr) in Slice() argument
30 Slice allocateStagingBufferSlice(size_t size, size_t requiredAlignment = 1); argument
DGrRingBuffer.h38 struct Slice { struct
42 Slice suballocate(size_t size); argument
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/
Dslice.h38 Slice() : slice_(g_core_codegen_interface->grpc_empty_slice()) {} in Slice() function
44 Slice(grpc_slice slice, AddRef) in Slice() function
49 Slice(grpc_slice slice, StealRef) : slice_(slice) {} in Slice() function
52 explicit Slice(size_t len) in Slice() function
56 Slice(const void* buf, size_t len) in Slice() function
62 Slice(const std::string& str) in Slice() function
69 Slice(const void* buf, size_t len, StaticSlice) in Slice() function
74 Slice(const Slice& other) in Slice() function
88 Slice(void* buf, size_t len, void (*destroy)(void*), void* user_data) in Slice() function
93 Slice(void* buf, size_t len, void (*destroy)(void*)) in Slice() function
[all …]
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/
Dslice.h38 Slice() : slice_(g_core_codegen_interface->grpc_empty_slice()) {} in Slice() function
44 Slice(grpc_slice slice, AddRef) in Slice() function
49 Slice(grpc_slice slice, StealRef) : slice_(slice) {} in Slice() function
52 explicit Slice(size_t len) in Slice() function
56 Slice(const void* buf, size_t len) in Slice() function
62 Slice(const std::string& str) in Slice() function
69 Slice(const void* buf, size_t len, StaticSlice) in Slice() function
74 Slice(const Slice& other) in Slice() function
88 Slice(void* buf, size_t len, void (*destroy)(void*), void* user_data) in Slice() function
93 Slice(void* buf, size_t len, void (*destroy)(void*)) in Slice() function
[all …]
/external/grpc-grpc/include/grpcpp/impl/codegen/
Dslice.h38 Slice() : slice_(g_core_codegen_interface->grpc_empty_slice()) {} in Slice() function
44 Slice(grpc_slice slice, AddRef) in Slice() function
49 Slice(grpc_slice slice, StealRef) : slice_(slice) {} in Slice() function
52 Slice(size_t len) in Slice() function
56 Slice(const void* buf, size_t len) in Slice() function
61 Slice(const grpc::string& str) in Slice() function
68 Slice(const void* buf, size_t len, StaticSlice) in Slice() function
73 Slice(const Slice& other) in Slice() function
87 Slice(void* buf, size_t len, void (*destroy)(void*), void* user_data) in Slice() function
92 Slice(void* buf, size_t len, void (*destroy)(void*)) in Slice() function
[all …]
/external/llvm-project/clang/test/CodeGenObjC/
Dobjc2-write-barrier-3.m8 struct Slice { struct
12 typedef struct Slice Slice; argument
/external/clang/test/CodeGenObjC/
Dobjc2-write-barrier-3.m8 struct Slice { struct
12 typedef struct Slice Slice; argument
/external/tensorflow/tensorflow/core/kernels/
Dslice_op.h28 struct Slice { struct
29 void operator()(const Device& d, typename TTypes<T, NDIMS>::Tensor output, in operator()
/external/rust/crates/nom/tests/
Dblockbuf-arithmetic.rs49 impl<'a> Slice<Range<usize>> for BlockSlice<'a> { impl
60 impl<'a> Slice<RangeTo<usize>> for BlockSlice<'a> { impl
66 impl<'a> Slice<RangeFrom<usize>> for BlockSlice<'a> { impl
/external/rust/crates/itertools/benches/extra/
Dzipslices.rs143 pub unsafe trait Slice { interface
152 unsafe impl<'a, T> Slice for &'a [T] { impl
163 unsafe impl<'a, T> Slice for &'a mut [T] { impl
/external/perfetto/src/protozero/
Dscattered_heap_buffer.cc23 ScatteredHeapBuffer::Slice::Slice() in Slice() function in protozero::ScatteredHeapBuffer::Slice
26 ScatteredHeapBuffer::Slice::Slice(size_t size) in Slice() function in protozero::ScatteredHeapBuffer::Slice
/external/llvm-project/llvm/lib/Object/
DMachOUniversalWriter.cpp78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() function in Slice
83 Slice::Slice(const MachOObjectFile &O, uint32_t Align) in Slice() function in Slice
89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() function in Slice
94 Slice::Slice(const MachOObjectFile &O) : Slice(O, calculateAlignment(O)) {} in Slice() function in Slice
/external/tensorflow/tensorflow/core/lib/io/
Dcache.h36 using Slice = StringPiece; variable
/external/flatbuffers/lua/flatbuffers/
Dbinaryarray.lua31 function mt:Slice(startPos, endPos) function
/external/rust/crates/untrusted/src/
Duntrusted.rs354 pub struct Slice<'a> { struct
355 bytes: &'a [u8],
358 impl<'a> Slice<'a> { implementation
/external/webrtc/common_audio/
Dchannel_buffer.h134 const T* const* Slice(T** slice, size_t start_frame) const { in Slice() function
140 T** Slice(T** slice, size_t start_frame) { in Slice() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DCRC.cpp92 ArrayRef<uint8_t> Slice = Data.take_front(UINT32_MAX); in crc32() local
/external/llvm-project/llvm/lib/Support/
DCRC.cpp92 ArrayRef<uint8_t> Slice = Data.take_front(UINT32_MAX); in crc32() local
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
Dslice.cc34 class Slice : public NodeShader { class
/external/rust/cxx/tests/ffi/
Dtests.cc891 template class rust::Slice<const char>; member in rust
892 template class rust::Slice<const uint8_t>; member in rust
893 template class rust::Slice<uint8_t>; member in rust
894 template class rust::Slice<const tests::Shared>; member in rust
895 template class rust::Slice<tests::Shared>; member in rust
896 template class rust::Slice<const tests::R>; member in rust
897 template class rust::Slice<tests::R>; member in rust
/external/llvm-project/llvm/include/llvm/Support/
DLEB128.h144 uint64_t Slice = *p & 0x7f; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DLEB128.h144 uint64_t Slice = *p & 0x7f; variable
/external/sfntly/cpp/src/sfntly/data/
Dwritable_font_data.cc169 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset, in Slice() function in sfntly::WritableFontData
184 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) { in Slice() function in sfntly::WritableFontData

1234