• Home
  • Raw
  • Download

Lines Matching defs:buffer

18     struct HdfBlockBuffer *buffer = NULL;  in HdfHdfBlockBufferNew()  local
38 void HdfBlockBufferFree(const struct HdfBlockBuffer *buffer) in HdfBlockBufferFree()
45 uint16_t HdfBlockBufferGetDataSize(struct HdfBlockBuffer *buffer) in HdfBlockBufferGetDataSize()
50 uint16_t HdfBlockBufferGetAvailableSize(struct HdfBlockBuffer *buffer) in HdfBlockBufferGetAvailableSize()
55 uint8_t *HdfBlockBufferRead(struct HdfBlockBuffer *buffer, uint16_t size) in HdfBlockBufferRead()
66 uint8_t *HdfBlockBufferGetData(struct HdfBlockBuffer *buffer) in HdfBlockBufferGetData()
71 uint16_t HdfBlockBufferGetPoistion(struct HdfBlockBuffer *buffer) in HdfBlockBufferGetPoistion()
77 uint16_t HdfBlockBufferSkipBytes(struct HdfBlockBuffer *buffer, uint16_t bytes) in HdfBlockBufferSkipBytes()
91 bool HdfBlockBufferReadUint8(struct HdfBlockBuffer *buffer, uint8_t *outValue) in HdfBlockBufferReadUint8()
103 bool HdfBlockBufferReadUint8At(struct HdfBlockBuffer *buffer, uint16_t idx, uint8_t *outValue) in HdfBlockBufferReadUint8At()
115 bool HdfBlockBufferReadUint16(struct HdfBlockBuffer *buffer, uint16_t *outValue) in HdfBlockBufferReadUint16()
128 bool HdfBlockBufferReadUint16At(struct HdfBlockBuffer *buffer, size_t idx, uint16_t *outValue) in HdfBlockBufferReadUint16At()
140 void HdfBlockBufferRewind(struct HdfBlockBuffer *buffer) in HdfBlockBufferRewind()
147 bool HdfBlockBufferWriteUint8(struct HdfBlockBuffer *buffer, uint8_t value) in HdfBlockBufferWriteUint8()
159 bool HdfBlockBufferWriteUint16(struct HdfBlockBuffer *buffer, uint16_t inValue) in HdfBlockBufferWriteUint16()
172 bool HdfBlockBufferWriteData(struct HdfBlockBuffer *buffer, uint8_t *data, size_t length) in HdfBlockBufferWriteData()
186 struct HdfBlockBuffer *HdfBlockBufferDuplicate(const struct HdfBlockBuffer *buffer, uint16_t start,… in HdfBlockBufferDuplicate()