HomeSort by relevance Sort by last modified time
    Searched refs:sp (Results 1 - 25 of 1954) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/arm/
aeabi_idivmod.S 22 sub sp, sp, #4
23 mov r2, sp
25 ldr r1, [sp]
26 add sp, sp, #4
aeabi_uidivmod.S 23 sub sp, sp, #4
24 mov r2, sp
26 ldr r1, [sp]
27 add sp, sp, #4
aeabi_ldivmod.S 23 sub sp, sp, #16
24 add r12, sp, #8
25 str r12, [sp]
27 ldr r2, [sp, #8]
28 ldr r3, [sp, #12]
29 add sp, sp, #16
aeabi_uldivmod.S 23 sub sp, sp, #16
24 add r12, sp, #8
25 str r12, [sp]
27 ldr r2, [sp, #8]
28 ldr r3, [sp, #12]
29 add sp, sp, #16
sync_synchronize.S 26 stmfd sp!, {r7, lr}
27 add r7, sp, #0
29 ldmfd sp!, {r7, pc}
  /frameworks/base/services/input/
InputManager.h 70 virtual sp<InputReaderInterface> getReader() = 0;
73 virtual sp<InputDispatcherInterface> getDispatcher() = 0;
82 const sp<EventHubInterface>& eventHub,
83 const sp<InputReaderPolicyInterface>& readerPolicy,
84 const sp<InputDispatcherPolicyInterface>& dispatcherPolicy);
88 const sp<InputReaderInterface>& reader,
89 const sp<InputDispatcherInterface>& dispatcher);
94 virtual sp<InputReaderInterface> getReader();
95 virtual sp<InputDispatcherInterface> getDispatcher();
98 sp<InputReaderInterface> mReader
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 30 Decoder(const sp<AMessage> &notify,
31 const sp<NativeWindowWrapper> &nativeWindow = NULL);
33 void configure(const sp<AMessage> &format);
42 virtual void onMessageReceived(const sp<AMessage> &msg);
49 sp<AMessage> mNotify;
50 sp<NativeWindowWrapper> mNativeWindow;
52 sp<ACodec> mCodec;
53 sp<ALooper> mCodecLooper;
55 Vector<sp<ABuffer> > mCSD;
58 sp<AMessage> makeFormat(const sp<MetaData> &meta)
    [all...]
StreamingSource.h 30 StreamingSource(const sp<IStreamSource> &source);
36 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
41 virtual sp<MetaData> getFormatMeta(bool audio);
44 sp<IStreamSource> mSource;
46 sp<NuPlayerStreamListener> mStreamListener;
47 sp<ATSParser> mTSParser;
  /frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
MP4Source.h 27 MP4Source(const sp<IStreamSource> &source);
33 virtual sp<AMessage> getFormat(bool audio);
36 bool audio, sp<ABuffer> *accessUnit);
42 sp<IStreamSource> mSource;
43 sp<ALooper> mLooper;
44 sp<FragmentedMP4Parser> mParser;
  /frameworks/compile/libbcc/runtime/lib/arm/
sync_synchronize.S 25 stmfd sp!, {r7, lr}
26 add r7, sp, #0
28 ldmfd sp!, {r7, pc}
  /frameworks/rs/cpp/
Element.h 50 sp<const Element> getSubElement(uint32_t index);
94 static sp<const Element> BOOLEAN(RenderScript *rs);
95 static sp<const Element> U8(RenderScript *rs);
96 static sp<const Element> I8(RenderScript *rs);
97 static sp<const Element> U16(RenderScript *rs);
98 static sp<const Element> I16(RenderScript *rs);
99 static sp<const Element> U32(RenderScript *rs);
100 static sp<const Element> I32(RenderScript *rs);
101 static sp<const Element> U64(RenderScript *rs);
102 static sp<const Element> I64(RenderScript *rs)
    [all...]
  /external/tcpdump/
print-msdp.c 39 msdp_print(const unsigned char *sp, u_int length)
43 TCHECK2(*sp, 3);
45 type = *sp;
46 len = EXTRACT_16BITS(sp + 1);
51 TCHECK2(*sp, 3);
52 type = *sp;
53 len = EXTRACT_16BITS(sp + 1);
58 sp += 3;
67 TCHECK(*sp);
68 (void)printf(" %u entries", *sp);
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.h 37 const sp<AMessage> &notify,
38 const sp<ALooper> &codecLooper,
39 const sp<AMessage> &format,
46 sp<AMessage> getOutputFormat() const;
48 void feedAccessUnit(const sp<ABuffer> &accessUnit);
71 virtual void onMessageReceived(const sp<AMessage> &msg);
75 sp<AMessage> mNotify;
76 sp<ALooper> mCodecLooper;
77 sp<AMessage> mInputFormat;
80 sp<AMessage> mOutputFormat
    [all...]
MediaPuller.h 33 MediaPuller(const sp<MediaSource> &source, const sp<AMessage> &notify);
36 void stopAsync(const sp<AMessage> &notify);
39 virtual void onMessageReceived(const sp<AMessage> &msg);
49 sp<MediaSource> mSource;
50 sp<AMessage> mNotify;
54 status_t postSynchronouslyAndReturnError(const sp<AMessage> &msg);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 147 NFAContext sp = this; local
148 while ( sp.parent!=null && other.parent!=null ) {
149 if ( sp.invokingState != other.invokingState ) {
152 sp = sp.parent;
155 if ( !(sp.parent==null && other.parent==null) ) {
208 NFAContext sp = this; local
210 while ( sp.parent!=null && other.parent!=null ) {
211 if ( sp.invokingState != other.invokingState ) {
214 sp = sp.parent
250 NFAContext sp = this; local
284 NFAContext sp = this; local
    [all...]
  /system/core/libpixelflinger/tinyutils/
smartpointer.h 22 inline bool operator _op_ (const sp<T>& o) const { \
29 inline bool operator _op_ (const sp<U>& o) const { \
40 class sp class in namespace:android
43 inline sp() : m_ptr(0) { } function in class:android::sp
45 sp(T* other);
46 sp(const sp<T>& other);
47 template<typename U> sp(U* other);
48 template<typename U> sp(const sp<U>& other)
95 sp<T>::sp(const sp<T>& other) function in class:android::sp
102 sp<T>::sp(U* other) : m_ptr(other) function in class:android::sp
108 sp<T>::sp(const sp<U>& other) function in class:android::sp
    [all...]
  /frameworks/av/include/media/stagefright/
NativeWindowWrapper.h 31 const sp<SurfaceTextureClient> &surfaceTextureClient) :
34 sp<ANativeWindow> getNativeWindow() const {
38 sp<SurfaceTextureClient> getSurfaceTextureClient() const {
43 const sp<SurfaceTextureClient> mSurfaceTextureClient;
  /frameworks/av/include/media/stagefright/foundation/
AHierarchicalStateMachine.h 26 AState(const sp<AState> &parentState = NULL);
28 sp<AState> parentState();
36 virtual bool onMessageReceived(const sp<AMessage> &msg) = 0;
41 sp<AState> mParentState;
52 virtual void onMessageReceived(const sp<AMessage> &msg);
55 void changeState(const sp<AState> &state);
58 sp<AState> mState;
  /frameworks/av/media/libstagefright/include/
FLACExtractor.h 32 FLACExtractor(const sp<DataSource> &source);
35 virtual sp<MediaSource> getTrack(size_t index);
36 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
38 virtual sp<MetaData> getMetaData();
44 sp<DataSource> mDataSource;
45 sp<FLACParser> mParser;
47 sp<MetaData> mFileMetadata;
50 sp<MetaData> mTrackMetadata;
59 bool SniffFLAC(const sp<DataSource> &source, String8 *mimeType,
60 float *confidence, sp<AMessage> *)
    [all...]
FragmentedMP4Extractor.h 37 FragmentedMP4Extractor(const sp<DataSource> &source);
40 virtual sp<MediaSource> getTrack(size_t index);
41 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
42 virtual sp<MetaData> getMetaData();
49 sp<ALooper> mLooper;
50 sp<FragmentedMP4Parser> mParser;
51 sp<DataSource> mDataSource;
56 sp<MetaData> mFileMetaData;
65 const sp<DataSource> &source, String8 *mimeType, float *confidence,
66 sp<AMessage> *)
    [all...]
MP3Extractor.h 34 MP3Extractor(const sp<DataSource> &source, const sp<AMessage> &meta);
37 virtual sp<MediaSource> getTrack(size_t index);
38 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
40 virtual sp<MetaData> getMetaData();
45 sp<DataSource> mDataSource;
47 sp<MetaData> mMeta;
49 sp<MP3Seeker> mSeeker;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
57 sp<AMessage> *meta)
    [all...]
AACExtractor.h 32 AACExtractor(const sp<DataSource> &source, const sp<AMessage> &meta);
35 virtual sp<MediaSource> getTrack(size_t index);
36 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
38 virtual sp<MetaData> getMetaData();
44 sp<DataSource> mDataSource;
45 sp<MetaData> mMeta;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
57 sp<AMessage> *);
DRMExtractor.h 34 DRMExtractor(const sp<DataSource> &source, const char *mime);
37 virtual sp<MediaSource> getTrack(size_t index);
38 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
39 virtual sp<MetaData> getMetaData();
45 sp<DataSource> mDataSource;
47 sp<MediaExtractor> mOriginalExtractor;
48 sp<DecryptHandle> mDecryptHandle;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
57 sp<AMessage> *);
  /dalvik/vm/compiler/template/mips/
TEMPLATE_MEM_OP_DECODE.S 12 sw f0, fr0*-4(sp) # push f0
13 sw f1, fr1*-4(sp) # push f1
14 sw f2, fr2*-4(sp) # push f2
15 sw f3, fr3*-4(sp) # push f3
16 sw f4, fr4*-4(sp) # push f4
17 sw f5, fr5*-4(sp) # push f5
18 sw f6, fr6*-4(sp) # push f6
19 sw f7, fr7*-4(sp) # push f7
20 sw f8, fr8*-4(sp) # push f8
21 sw f9, fr9*-4(sp) # push f
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/sink/
TunnelRenderer.h 38 const sp<AMessage> &notifyLost,
39 const sp<ISurfaceTexture> &surfaceTex);
41 sp<ABuffer> dequeueBuffer();
48 virtual void onMessageReceived(const sp<AMessage> &msg);
57 sp<AMessage> mNotifyLost;
58 sp<ISurfaceTexture> mSurfaceTex;
60 List<sp<ABuffer> > mPackets;
63 sp<SurfaceComposerClient> mComposerClient;
64 sp<SurfaceControl> mSurfaceControl;
65 sp<Surface> mSurface
    [all...]

Completed in 414 milliseconds

1 2 3 4 5 6 7 8 91011>>