Searched refs:byteCount (Results 1 - 25 of 158) sorted by last modified time

1234567

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
H A DARDBitrateTracker.h28 - (void)updateBitrateWithCurrentByteCount:(NSInteger)byteCount;
H A DARDBitrateTracker.m36 - (void)updateBitrateWithCurrentByteCount:(NSInteger)byteCount {
38 if (_prevTime && (byteCount > _prevByteCount)) {
39 _bitrate = (byteCount - _prevByteCount) * 8 / (currentTime - _prevTime);
41 _prevByteCount = byteCount;
H A DARDStatsBuilder.m190 NSInteger byteCount = value.integerValue;
191 [_connRecvBitrateTracker updateBitrateWithCurrentByteCount:byteCount];
194 NSInteger byteCount = value.integerValue;
195 [_connSendBitrateTracker updateBitrateWithCurrentByteCount:byteCount];
220 NSInteger byteCount = value.integerValue;
221 [_audioSendBitrateTracker updateBitrateWithCurrentByteCount:byteCount];
248 NSInteger byteCount = value.integerValue;
249 [_videoSendBitrateTracker updateBitrateWithCurrentByteCount:byteCount];
272 NSInteger byteCount = value.integerValue;
273 [_audioRecvBitrateTracker updateBitrateWithCurrentByteCount:byteCount];
[all...]
/external/vogar/src/vogar/
H A DMd5Cache.java62 int byteCount;
63 while ((byteCount = in.read(bytes)) > 0) {
64 digester.update(bytes, 0, byteCount);
/external/toybox/toys/other/
H A Dbzcat.c73 int byteCount[256]; member in struct:bwdata
323 *byteCount, *base, *limit; local
332 byteCount = bw->byteCount;
334 byteCount[ii] = 0;
409 byteCount[uc] += hh;
432 byteCount[uc]++;
456 int *byteCount = bw->byteCount; local
458 // Turn byteCount int
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imaadpcm.c126 pState->bytesLeft = pState->byteCount = (EAS_I32) pState->bytesLeftLoop;
321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
H A Deas_pcm.c362 pState->bytesLeftLoop = pState->byteCount = pParams->size;
390 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "EAS_PEOpenStream: StartPos=%d, byteCount = %d, loopSamples=%d\n",
391 pState->startPos, pState->byteCount, pState->loopSamples); */ }
926 pState->bytesLeft = pState->byteCount;
1267 pState->bytesLeft = pState->byteCount = (EAS_I32) pState->bytesLeftLoop;
H A Deas_pcmdata.h84 EAS_I32 byteCount; /* size of file */ member in struct:s_pcm_state_tag
/external/skqp/src/gpu/text/
H A DGrAtlasTextBlob.h394 size_t byteCount() const { return fVertexEndIndex - fVertexStartIndex; } function in struct:GrAtlasTextBlob::Run::SubRunInfo
/external/skqp/src/ports/
H A DSkFontHost_win.cpp1136 int byteCount = width >> 3; local
1139 // adjust srcRB to skip the values in our byteCount loop,
1141 srcRB -= byteCount * 8 * sizeof(SkGdiRGB);
1144 if (byteCount > 0) {
1145 for (int i = 0; i < byteCount; ++i) {
1166 dst[byteCount] = byte;
H A DSkOSFile_stdio.cpp80 size_t sk_fwrite(const void* buffer, size_t byteCount, FILE* f) { argument
82 return fwrite(buffer, 1, byteCount, f);
H A DSkScalerContext_win_dw.cpp670 int byteCount = width >> 3; local
674 if (byteCount > 0) {
675 for (int i = 0; i < byteCount; ++i) {
696 dst[byteCount] = byte;
/external/skqp/src/core/
H A DSkMD5.cpp31 SkMD5::SkMD5() : byteCount(0) {
41 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
65 this->byteCount += inputLength;
72 encode(bits, this->byteCount << 3);
75 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
H A DSkMD5.h22 size_t bytesWritten() const final { return SkToSizeT(this->byteCount); }
36 uint64_t byteCount; // number of bytes, modulo 2^64 member in class:SkMD5
H A DSkMetaData.cpp108 void SkMetaData::setData(const char name[], const void* data, size_t byteCount) { argument
109 (void)this->set(name, data, sizeof(char), kData_Type, SkToInt(byteCount));
H A DSkOSFile.h28 size_t sk_fwrite(const void* buffer, size_t byteCount, FILE*);
H A DSkPath.cpp2119 const int byteCount = sizeof(int32_t) * 2 + fPathRef->writeSize(); local
2120 return SkAlign4(byteCount);
H A DSkRTree.cpp184 size_t byteCount = sizeof(SkRTree); local
186 byteCount += fNodes.reserved() * sizeof(Node);
188 return byteCount;
/external/skqp/include/views/
H A DSkEvent.h82 const void* findData(const char name[], size_t* byteCount = nullptr) const {
83 return fMeta.findData(name, byteCount);
95 bool hasData(const char name[], const void* data, size_t byteCount) const {
96 return fMeta.hasData(name, data, byteCount);
112 void setData(const char name[], const void* data, size_t byteCount) { argument
113 fMeta.setData(name, data, byteCount);
/external/skqp/include/core/
H A DSkMetaData.h58 const void* findData(const char name[], size_t* byteCount = nullptr) const;
81 bool hasData(const char name[], const void* data, size_t byteCount) const {
84 return ptr && len == byteCount && !memcmp(ptr, data, len);
94 void setData(const char name[], const void* data, size_t byteCount);
/external/skia/src/ports/
H A DSkFontHost_win.cpp1136 int byteCount = width >> 3; local
1139 // adjust srcRB to skip the values in our byteCount loop,
1141 srcRB -= byteCount * 8 * sizeof(SkGdiRGB);
1144 if (byteCount > 0) {
1145 for (int i = 0; i < byteCount; ++i) {
1166 dst[byteCount] = byte;
H A DSkOSFile_stdio.cpp120 size_t sk_fwrite(const void* buffer, size_t byteCount, FILE* f) { argument
122 return fwrite(buffer, 1, byteCount, f);
H A DSkScalerContext_win_dw.cpp670 int byteCount = width >> 3; local
674 if (byteCount > 0) {
675 for (int i = 0; i < byteCount; ++i) {
696 dst[byteCount] = byte;
/external/skia/src/gpu/text/
H A DGrAtlasTextBlob.h381 size_t byteCount() const { return fVertexEndIndex - fVertexStartIndex; } function in struct:GrAtlasTextBlob::Run::SubRunInfo

Completed in 414 milliseconds

1234567