Home | History | Annotate | Download | only in base

Lines Matching full:num_bytes

73   // num_bytes available. Otherwise, does nothing and returns false.
74 bool SkipBytes(int num_bytes) WARN_UNUSED_RESULT {
75 return !!GetReadPointerAndAdvance(num_bytes);
91 // Get read pointer for |num_bytes| and advance read pointer. This method
92 // checks num_bytes for negativity and wrapping.
93 const char* GetReadPointerAndAdvance(int num_bytes);
262 // Claims |num_bytes| bytes of payload. This is similar to Reserve() in that
264 // pickle by |num_bytes|. Claimed memory, including padding, is zeroed.
267 void* ClaimBytes(size_t num_bytes);
311 inline void* ClaimUninitializedBytesInternal(size_t num_bytes);