Searched refs:copy (Results 76 - 100 of 262) sorted by relevance

1234567891011

/frameworks/ml/bordeaux/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/ml/bordeaux/learning/predictor_histogram/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/native/libs/diskusage/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/opt/calendar/tests/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/opt/mailcommon/tests/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/opt/mms/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/testing/app-tests/AppLaunchTest/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/volley/tests/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/webview/chromium/
H A Dchromium.mk5 # You may obtain a copy of the License at
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp6 * You may obtain a copy of the License at
50 void copy(size_t from, void *data, size_t size);
137 void PageCache::copy(size_t from, void *data, size_t size) { function in class:android::PageCache
138 ALOGV("copy from %d size %d", from, size);
167 size_t copy = (*it)->mSize; local
168 if (copy > size) {
169 copy = size;
171 memcpy(data, (*it)->mData, copy);
172 data = (uint8_t *)data + copy;
173 size -= copy;
[all...]
H A DMPEG2TSWriter.cpp6 * You may obtain a copy of the License at
257 sp<ABuffer> copy = local
259 memcpy(copy->data(),
266 copy->meta()->setInt64("timeUs", timeUs);
271 copy->meta()->setInt32("isSync", true);
274 notify->setBuffer("buffer", copy);
928 size_t copy = accessUnit->size(); local
929 if (copy > sizeLeft) {
930 copy = sizeLeft;
933 memcpy(ptr, accessUnit->data(), copy);
974 size_t copy = accessUnit->size() - offset; local
[all...]
H A DAudioPlayer.cpp6 * You may obtain a copy of the License at
645 size_t copy = size_remaining; local
646 if (copy > mInputBuffer->range_length()) {
647 copy = mInputBuffer->range_length();
652 copy);
654 mInputBuffer->set_range(mInputBuffer->range_offset() + copy,
655 mInputBuffer->range_length() - copy);
657 size_done += copy;
658 size_remaining -= copy;
H A DDataSource.cpp6 * You may obtain a copy of the License at
210 KeyedVector<String8, String8> copy = *headers; local
212 &copy, &cacheConfig, &disconnectAtHighwatermark);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdCountLeadingZeros.s6 ; You may obtain a copy of the License at
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdCountLeadingZeros.S6 @ You may obtain a copy of the License at
/frameworks/av/media/libstagefright/include/
H A DAACEncoder.h6 * You may obtain a copy of the License at
74 AACEncoder(const AACEncoder& copy);
/frameworks/base/core/java/android/view/
H A DInputEvent.java6 * You may obtain a copy of the License at
100 * @return A deep copy of the event.
103 public abstract InputEvent copy(); method in class:InputEvent
/frameworks/base/core/tests/coretests/
H A DAndroid.mk36 # Rules to copy all the test apks to the intermediate raw resource directory
41 $(call copy-file-to-new-target)
/frameworks/native/libs/input/tests/
H A DInputEvent_test.cpp6 * You may obtain a copy of the License at
450 MotionEvent copy; local
451 copy.copyFrom(&event, true /*keepHistory*/);
460 MotionEvent copy; local
461 copy.copyFrom(&event, false /*keepHistory*/);
463 ASSERT_EQ(event.getPointerCount(), copy.getPointerCount());
464 ASSERT_EQ(0U, copy.getHistorySize());
466 ASSERT_EQ(event.getPointerId(0), copy.getPointerId(0));
467 ASSERT_EQ(event.getPointerId(1), copy.getPointerId(1));
469 ASSERT_EQ(event.getEventTime(), copy
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java7 * You may obtain a copy of the License at
347 mStack.copy();
460 temp = EncodedStringValue.copy(address);
557 mStack.copy();
638 mStack.copy();
866 mStack.copy();
895 mStack.copy();
957 mStack.copy();
1021 mStack.copy();
1072 // That is after calling pop() and before calling copy()
1115 void copy() { method in class:PduComposer.BufferStack
[all...]
/frameworks/av/cmds/screenrecord/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp6 * You may obtain a copy of the License at
836 size_t copy = size_remaining; local
837 if (copy > mInputBuffer->range_length()) {
838 copy = mInputBuffer->range_length();
843 copy);
845 mInputBuffer->set_range(mInputBuffer->range_offset() + copy,
846 mInputBuffer->range_length() - copy);
848 size_done += copy;
849 size_remaining -= copy;
/frameworks/av/media/libeffects/proxy/
H A DAndroid.mk5 # You may obtain a copy of the License at
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp6 * You may obtain a copy of the License at
301 size_t copy = entry->mBuffer->size() - entry->mOffset; local
302 if (copy > numBytesAvailableToWrite) {
303 copy = numBytesAvailableToWrite;
307 entry->mBuffer->data() + entry->mOffset, copy),
308 (ssize_t)copy);
310 entry->mOffset += copy;
318 numBytesAvailableToWrite -= copy;
319 size_t copiedFrames = copy / mAudioSink->frameSize();
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A Dsyn_filt_neon.s6 @ ** You may obtain a copy of the License at
38 MOV r4, r3 @ copy mem[] address
39 MOV r5, r13 @ copy yy = y_buf address

Completed in 1479 milliseconds

1234567891011