Home
last modified time | relevance | path

Searched defs:CSlice (Results 1 – 12 of 12) sorted by relevance

/dports/databases/postgresql12-server/postgresql-12.9/src/include/access/
H A Dbrin_tuple.h34 * only be meaningfully decoded with an appropriate BrinDesc.
36 typedef struct BrinMemTuple
41 /* output arrays for brin_deform_tuple: */
42 Datum *bt_values; /* values array */
44 bool *bt_hasnulls; /* hasnulls array */
52 * number of Datum values for each column follow. in new()
53 */ in new()
54 typedef struct BrinTuple in new()
71 #define SizeOfBrinTuple (offsetof(BrinTuple, bt_info) + sizeof(uint8)) in drop()
76 #define BRIN_OFFSET_MASK 0x1F in drop()
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/ledisdb/store/leveldb/
H A Dslice.go14 type CSlice struct { struct
15 data unsafe.Pointer
16 size int
23 func (s *CSlice) Data() []byte {
34 func (s *CSlice) Size() int {
38 func (s *CSlice) Free() {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/ledisdb/store/rocksdb/
H A Dslice.go15 type CSlice struct { struct
16 data unsafe.Pointer
17 size int
24 func (s *CSlice) Data() []byte {
35 func (s *CSlice) Size() int {
39 func (s *CSlice) Free() {
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/cslice-0.2.0/src/
H A Dlib.rs31 pub struct CSlice<'a, T> { struct
37 impl<'a, T> CSlice<'a, T> { impl
64 impl<'a, T> AsRef<[T]> for CSlice<'a, T> { implementation
147 unsafe impl<'a, T: Sync> Sync for CSlice<'a, T> { } implementation
149 unsafe impl<'a, T: Sync> Send for CSlice<'a, T> { } implementation
155 impl<'a, T> Index<usize> for CSlice<'a, T> { implementation
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/tdutils/td/utils/
H A DSlice-decl.h166 explicit CSlice(const MutableSlice &other) : Slice(other) { in CSlice() function
168 CSlice(const MutableCSlice &other) : Slice(other.begin(), other.size()) { in CSlice() function
170 CSlice(const string &s) : Slice(s) { in CSlice() function
186 constexpr CSlice(const char (&a)[N]) : Slice(a) { in CSlice() function
189 CSlice() : CSlice("") { in CSlice() function
H A DNullLog.h15 void do_append(int /*log_level*/, CSlice /*slice*/) final { in do_append() argument
H A DSlice.h289 inline CSlice::CSlice(const char *s, const char *t) : Slice(s, t) { in CSlice() function
/dports/x11/inputplug/inputplug-0.4.0/cargo-crates/x11rb-0.8.1/src/
H A Dutils.rs34 pub struct CSlice { struct
35 ptr: NonNull<[u8]>,
41 unsafe impl Send for CSlice {} implementation
42 unsafe impl Sync for CSlice {} implementation
44 impl CSlice { implementation
52 pub unsafe fn new(ptr: *const u8, len: usize) -> CSlice { in new()
69 impl Drop for CSlice { implementation
75 impl Deref for CSlice { implementation
83 impl AsRef<[u8]> for CSlice { implementation
89 impl<I> Index<I> for CSlice implementation
[all …]
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/cslice-0.2.0/
H A DREADME.md1 # CSlice chapter
/dports/x11/inputplug/inputplug-0.4.0/cargo-crates/x11rb-0.8.1/src/xcb_ffi/
H A Dmod.rs274 fn poll_for_reply(&self, sequence: SequenceNumber) -> Result<Option<CSlice>, ()> { in poll_for_reply()
293 unsafe fn wrap_reply(&self, reply: *const u8, sequence: SequenceNumber) -> CSlice { in wrap_reply()
308 unsafe fn wrap_error(&self, error: *const u8, sequence: SequenceNumber) -> CSlice { in wrap_error()
426 ) -> Result<ReplyOrError<CSlice>, ConnectionError> { in wait_for_reply_or_raw_error()
440 fn wait_for_reply(&self, sequence: SequenceNumber) -> Result<Option<CSlice>, ConnectionError> { in wait_for_reply()
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/x11rb-0.8.1/src/xcb_ffi/
H A Dmod.rs274 fn poll_for_reply(&self, sequence: SequenceNumber) -> Result<Option<CSlice>, ()> { in poll_for_reply()
293 unsafe fn wrap_reply(&self, reply: *const u8, sequence: SequenceNumber) -> CSlice { in wrap_reply()
308 unsafe fn wrap_error(&self, error: *const u8, sequence: SequenceNumber) -> CSlice { in wrap_error()
426 ) -> Result<ReplyOrError<CSlice>, ConnectionError> { in wait_for_reply_or_raw_error()
440 fn wait_for_reply(&self, sequence: SequenceNumber) -> Result<Option<CSlice>, ConnectionError> { in wait_for_reply()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/lang_bind/python/pythonpp/
H A Dpythonpp_extdt.hpp86 class CSlice : public CObject class