Searched refs:copy (Results 26 - 50 of 262) sorted by relevance

1234567891011

/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp6 * You may obtain a copy of the License at
301 size_t copy = numBytesPerInputFrame - mInputSize; local
302 if (copy > inHeader->nFilledLen) {
303 copy = inHeader->nFilledLen;
310 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
311 mInputSize += copy;
313 inHeader->nOffset += copy;
314 inHeader->nFilledLen -= copy;
319 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
/frameworks/base/libs/hwui/
H A DSkiaShader.h6 * You may obtain a copy of the License at
63 virtual SkiaShader* copy() = 0;
141 SkiaShader* copy();
164 SkiaShader* copy();
188 SkiaShader* copy();
213 SkiaShader* copy();
229 SkiaShader* copy();
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp6 * You may obtain a copy of the License at
271 size_t copy = (nSamples - mNumInputSamples) * sizeof(int16_t); local
273 if (copy > mInputBuffer->range_length()) {
274 copy = mInputBuffer->range_length();
280 copy);
283 mInputBuffer->range_offset() + copy,
284 mInputBuffer->range_length() - copy);
290 mNumInputSamples += copy / sizeof(int16_t);
H A DSoftAACEncoder.cpp6 * You may obtain a copy of the License at
437 size_t copy = numBytesPerInputFrame - mInputSize; local
438 if (copy > inHeader->nFilledLen) {
439 copy = inHeader->nFilledLen;
450 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
451 mInputSize += copy;
453 inHeader->nOffset += copy;
454 inHeader->nFilledLen -= copy;
459 (copy * 1000000ll / mSampleRate)
H A DSoftAACEncoder2.cpp6 * You may obtain a copy of the License at
419 size_t copy = numBytesPerInputFrame - mInputSize; local
420 if (copy > inHeader->nFilledLen) {
421 copy = inHeader->nFilledLen;
432 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
433 mInputSize += copy;
435 inHeader->nOffset += copy;
436 inHeader->nFilledLen -= copy;
441 (copy * 1000000ll / mSampleRate)
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp6 * You may obtain a copy of the License at
888 size_t copy = accessUnit->size(); local
890 if (copy > sizeAvailableForPayload) {
891 copy = sizeAvailableForPayload;
893 if (alignPayload && copy > 16) {
894 copy -= (copy % 16);
898 size_t numPaddingBytes = sizeAvailableForPayload - copy;
949 memcpy(ptr, accessUnit->data(), copy);
950 ptr += copy;
970 size_t copy = accessUnit->size() - offset; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp6 * You may obtain a copy of the License at
348 size_t copy = numBytesPerInputFrame - mInputSize; local
349 if (copy > inHeader->nFilledLen) {
350 copy = inHeader->nFilledLen;
357 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
358 mInputSize += copy;
360 inHeader->nOffset += copy;
361 inHeader->nFilledLen -= copy;
366 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S6 @ You may obtain a copy of the License at
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/AutoLocTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v1/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v2/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocPermsFLTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocVersionedTestApp_v1/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocVersionedTestApp_v2/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsBT/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/InternalLocTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/base/core/tests/hosttests/test-apps/NoLocTestApp/
H A DAndroid.mk5 # You may obtain a copy of the License at

Completed in 1827 milliseconds

1234567891011