Home | History | Annotate | Download | only in contexthubhal

Lines Matching defs:size

42     size_t size;
47 size = bufSize;
53 size = bufSize;
59 size_t getSize() const { return size; }
61 size_t getRoom() const { return size - pos; }
63 if (pos == size) {
69 if (pos == size || readOnly)
74 if (pos > (size - sizeof(uint16_t))) {
83 if (pos > (size - sizeof(uint16_t)) || readOnly) {
91 if (pos > (size - sizeof(uint32_t))) {
100 if (pos > (size - sizeof(uint32_t)) || readOnly) {
108 if (pos > (size - sizeof(uint64_t))) {
117 if (pos > (size - sizeof(uint64_t)) || readOnly) {
125 if (pos > (size - bufSize)) {
133 if (pos > (size - bufSize) || readOnly) {