Home
last modified time | relevance | path

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

/system/netd/libnetdutils/include/netdutils/
DSlice.h45 Slice(void* base, void* limit) : mBase(toUint8(base)), mLimit(toUint8(limit)) {} in Slice()
48 Slice(void* base, size_t size) : Slice(base, toUint8(base) + size) {} in Slice()
63 static uint8_t* toUint8(void* ptr) { return reinterpret_cast<uint8_t*>(ptr); } in toUint8() function