Searched refs:me (Results 1 - 25 of 67) sorted by relevance

123

/frameworks/compile/libbcc/lib/
H A DRSEmbedInfo.cpp71 bcinfo::MetadataExtractor me(module);
72 if (!me.extract()) {
77 size_t exportVarCount = me.getExportVarCount();
78 size_t exportFuncCount = me.getExportFuncCount();
79 size_t exportForEachCount = me.getExportForEachSignatureCount();
80 size_t exportReduceCount = me.getExportReduceCount();
81 size_t objectSlotCount = me.getObjectSlotCount();
82 size_t pragmaCount = me.getPragmaCount();
83 const char **exportVarNameList = me.getExportVarNameList();
84 const char **exportFuncNameList = me
[all...]
H A DCompiler.cpp372 bcinfo::MetadataExtractor me(&module);
373 if (!me.extract()) {
402 size_t exportVarCount = me.getExportVarCount();
403 size_t exportFuncCount = me.getExportFuncCount();
404 size_t exportForEachCount = me.getExportForEachSignatureCount();
405 size_t exportReduceCount = me.getExportReduceCount();
406 const char **exportVarNameList = me.getExportVarNameList();
407 const char **exportFuncNameList = me.getExportFuncNameList();
408 const char **exportForEachNameList = me.getExportForEachNameList();
409 const bcinfo::MetadataExtractor::Reduce *exportReduceList = me
[all...]
H A DRSAddDebugInfoPass.cpp58 bcinfo::MetadataExtractor me(&Module);
59 if (!me.extract()) {
64 const size_t nForEachKernels = me.getExportForEachSignatureCount();
65 const char **forEachKernels = me.getExportForEachNameList();
67 me.getExportReduceList();
68 const size_t nReductions = me.getExportReduceCount();
H A DRSCompilerDriver.cpp94 bcinfo::MetadataExtractor me(&pScript.getSource().getModule());
95 if (!me.extract()) {
99 bool script_full_prec = (me.getRSFloatPrecision() == bcinfo::RS_FP_Full);
420 bcinfo::MetadataExtractor me(&module);
421 me.extract();
422 if (me.getRSFloatPrecision() == bcinfo::RS_FP_Relaxed) {
/frameworks/av/media/libstagefright/
H A DSimpleDecodingSource.cpp139 Mutexed<ProtectedState>::Locked me(mProtectedState);
140 if (me->mState != INIT) {
149 me->mState = STARTED;
150 me->mQueuedInputEOS = false;
151 me->mGotOutputEOS = false;
153 me->mState = ERROR;
160 Mutexed<ProtectedState>::Locked me(mProtectedState);
161 if (me->mState != STARTED) {
166 me->mState = STOPPING;
167 while (me
223 doRead( Mutexed<ProtectedState>::Locked &me, MediaBufferBase **buffer, const ReadOptions *options) argument
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXComponent.cpp115 SoftOMXComponent *me = local
119 return me->sendCommand(cmd, param, data);
127 SoftOMXComponent *me = local
131 return me->getParameter(index, params);
139 SoftOMXComponent *me = local
143 return me->setParameter(index, params);
151 SoftOMXComponent *me = local
155 return me->getConfig(index, params);
163 SoftOMXComponent *me = local
167 return me
175 SoftOMXComponent *me = local
190 SoftOMXComponent *me = local
204 SoftOMXComponent *me = local
216 SoftOMXComponent *me = local
227 SoftOMXComponent *me = local
238 SoftOMXComponent *me = local
249 SoftOMXComponent *me = local
[all...]
H A DSoftOMXPlugin.cpp161 SoftOMXComponent *me = local
165 me->prepareForDestruction();
167 void *libHandle = me->libHandle();
169 CHECK_EQ(me->getStrongCount(), 1);
170 me->decStrong(this);
171 me = NULL;
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/ext/
H A DKotlinMetadataProcessor.kt19 import me.eugeniomarletti.kotlin.metadata.KotlinClassMetadata
20 import me.eugeniomarletti.kotlin.metadata.KotlinMetadataUtils
21 import me.eugeniomarletti.kotlin.metadata.jvm.getJvmConstructorSignature
22 import me.eugeniomarletti.kotlin.metadata.shadow.metadata.ProtoBuf
23 import me.eugeniomarletti.kotlin.metadata.shadow.serialization.deserialization.getName
/frameworks/av/media/mtp/
H A DIMtpHandle.h32 virtual int sendEvent(mtp_event me) = 0;
H A DMtpDevHandle.h37 int sendEvent(mtp_event me);
H A DMtpDevHandle.cpp59 int MtpDevHandle::sendEvent(mtp_event me) { argument
60 return ioctl(mFd, MTP_SEND_EVENT, reinterpret_cast<unsigned long>(&me));
H A DMtpFfsHandle.h54 void doSendEvent(mtp_event me);
91 int sendEvent(mtp_event me) override;
H A DMtpFfsHandle.cpp657 int MtpFfsHandle::sendEvent(mtp_event me) { argument
660 char *temp = new char[me.length];
661 memcpy(temp, me.data, me.length);
662 me.data = temp;
663 std::thread t([this, me]() { return this->doSendEvent(me); });
668 void MtpFfsHandle::doSendEvent(mtp_event me) { argument
669 unsigned length = me.length;
670 int ret = ::write(mIntr, me
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dreduce_backward.rs53 IndexedVal me;
54 me.val = in;
55 me.idx = x;
57 if (me.val <= accum->min.val)
58 accum->min = me;
59 if (me.val >= accum->max.val)
60 accum->max = me;
H A Dreduce.rs135 IndexedVal me;
136 me.val = in;
137 me.idx = x;
139 if (me.val <= accum->min.val)
140 accum->min = me;
141 if (me.val >= accum->max.val)
142 accum->max = me;
/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java113 * @param me The CharSequence that receives the compareTo call.
117 public static int compareToIgnoreCase(CharSequence me, CharSequence another) { argument
119 int myLen = me.length(), anotherLen = another.length();
124 if ((result = Character.toLowerCase(me.charAt(myPos++))
/frameworks/base/core/java/android/os/
H A DLooper.java138 final Looper me = myLooper();
139 if (me == null) {
142 final MessageQueue queue = me.mQueue;
167 final Printer logging = me.mLogging;
173 final long traceTag = me.mTraceTag;
174 long slowDispatchThresholdMs = me.mSlowDispatchThresholdMs;
175 long slowDeliveryThresholdMs = me.mSlowDeliveryThresholdMs;
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DFastScroller.java412 public void onTouchEvent(@NonNull RecyclerView recyclerView, @NonNull MotionEvent me) { argument
417 if (me.getAction() == MotionEvent.ACTION_DOWN) {
418 boolean insideVerticalThumb = isPointInsideVerticalThumb(me.getX(), me.getY());
419 boolean insideHorizontalThumb = isPointInsideHorizontalThumb(me.getX(), me.getY());
423 mHorizontalDragX = (int) me.getX();
426 mVerticalDragY = (int) me.getY();
430 } else if (me.getAction() == MotionEvent.ACTION_UP && mState == STATE_DRAGGING) {
435 } else if (me
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java50 MultipartEntity me = new MultipartEntity(parts);
52 me.writeTo(os);
53 Header h = me.getContentType();
54 String boundry = EncodingUtils.getAsciiString(me.getMultipartBoundary());
/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp38 static void usage(const char *me) { argument
41 " <input video file>\n", me);
229 const char *me = argv[0]; local
291 usage(me);
300 usage(me);
/frameworks/wilhelm/src/
H A Dlocks.cpp82 pthread_t me = pthread_self(); local
87 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
102 pthread_t me = pthread_self(); local
107 " %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
111 " state by pthread %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(),
/frameworks/base/core/java/android/nfc/
H A DNdefMessage.java198 boolean me = (i == mRecords.length - 1); // last record
199 mRecords[i].writeToByteBuffer(buffer, mb, me);
/frameworks/av/media/libmediaplayer2/
H A DMediaPlayer2AudioOutput.cpp634 MediaPlayer2AudioOutput *me = data->getOutput(); local
636 if (me == NULL) {
648 size_t actualSize = (*me->mCallback)(
649 me, buffer->raw, buffer->size, me->mCallbackCookie,
669 (*me->mCallback)(me, NULL /* buffer */, 0 /* size */,
670 me->mCallbackCookie, CB_EVENT_STREAM_END);
675 (*me->mCallback)(me, NUL
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java1055 private boolean openPopupIfRequired(MotionEvent me) { argument
1149 //mMiniKeyboard.onTouchEvent(getTranslatedEvent(me));
1177 public boolean onTouchEvent(MotionEvent me) { argument
1180 final int pointerCount = me.getPointerCount();
1181 final int action = me.getAction();
1183 final long now = me.getEventTime();
1189 me.getX(), me.getY(), me.getMetaState());
1194 result = onModifiedTouchEvent(me, tru
1218 onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) argument
[all...]
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
H A DMediaCodecsXmlParser.h161 void *me, const char *name, const char **attrs);
163 static void EndElementHandlerWrapper(void *me, const char *name);

Completed in 458 milliseconds

123