Lines Matching refs:numBytes
84 int32_t numBytes = convertFramesToBytes(frames1); in read() local
85 if (numBytes < 0) { in read()
88 memcpy(destination, source, static_cast<size_t>(numBytes)); in read()
89 destination += numBytes; in read()
93 numBytes = convertFramesToBytes(frames2); in read()
94 if (numBytes < 0) { in read()
97 memcpy(destination, source, static_cast<size_t>(numBytes)); in read()
100 int32_t numBytes = convertFramesToBytes(framesToRead); in read() local
101 if (numBytes < 0) { in read()
104 memcpy(destination, source, static_cast<size_t>(numBytes)); in read()
127 int32_t numBytes = convertFramesToBytes(frames1); in write() local
128 if (numBytes < 0) { in write()
131 memcpy(destination, source, static_cast<size_t>(numBytes)); in write()
136 numBytes = convertFramesToBytes(frames2); in write()
137 if (numBytes < 0) { in write()
140 memcpy(destination, source, static_cast<size_t>(numBytes)); in write()
143 int32_t numBytes = convertFramesToBytes(framesToWrite); in write() local
144 if (numBytes < 0) { in write()
147 memcpy(destination, source, static_cast<size_t>(numBytes)); in write()