HomeSort by relevance Sort by last modified time
    Searched refs:sp (Results 1 - 25 of 1962) 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}
  /external/llvm/test/MC/AArch64/
elf-reloc-ldstunsimm.s 4 ldrb w0, [sp, #:lo12:some_label]
5 ldrh w0, [sp, #:lo12:some_label]
6 ldr w0, [sp, #:lo12:some_label]
7 ldr x0, [sp, #:lo12:some_label]
8 str q0, [sp, #:lo12:some_label]
  /frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
MP4Source.h 27 MP4Source(const sp<AMessage> &notify, const sp<IStreamSource> &source);
34 virtual sp<AMessage> getFormat(bool audio);
37 bool audio, sp<ABuffer> *accessUnit);
43 sp<IStreamSource> mSource;
44 sp<ALooper> mLooper;
45 sp<FragmentedMP4Parser> mParser;
  /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 31 const sp<AMessage> &notify,
32 const sp<IStreamSource> &source);
39 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
46 virtual sp<MetaData> getFormatMeta(bool audio);
49 sp<IStreamSource> mSource;
51 sp<NuPlayerStreamListener> mStreamListener;
52 sp<ATSParser> mTSParser;
  /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...]
  /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/codeflinger/tinyutils/
smartpointer.h 31 inline bool operator _op_ (const sp<T>& o) const { \
38 inline bool operator _op_ (const sp<U>& o) const { \
49 class sp class in namespace:android::tinyutils
52 inline sp() : m_ptr(0) { } function in class:android::tinyutils::sp
54 sp(T* other);
55 sp(const sp<T>& other);
56 template<typename U> sp(U* other);
57 template<typename U> sp(const sp<U>& other)
104 sp<T>::sp(const sp<T>& other) function in class:android::tinyutils::sp
111 sp<T>::sp(U* other) : m_ptr(other) function in class:android::tinyutils::sp
117 sp<T>::sp(const sp<U>& other) function in class:android::tinyutils::sp
    [all...]
  /frameworks/av/include/media/stagefright/
NativeWindowWrapper.h 31 const sp<Surface> &surfaceTextureClient) :
34 sp<ANativeWindow> getNativeWindow() const {
38 sp<Surface> getSurfaceTextureClient() const {
43 const sp<Surface> 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/wifi-display/source/
MediaPuller.h 33 MediaPuller(const sp<MediaSource> &source, const sp<AMessage> &notify);
36 void stopAsync(const sp<AMessage> &notify);
42 virtual void onMessageReceived(const sp<AMessage> &msg);
54 sp<MediaSource> mSource;
55 sp<AMessage> mNotify;
60 status_t postSynchronouslyAndReturnError(const sp<AMessage> &msg);
  /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...]
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...]
  /external/icu4c/test/intltest/
strtest.cpp 207 StringPiece sp(abcd, -1);
208 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
211 sp=StringPiece(abcd, 5);
212 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
215 sp=StringPiece(abcd, 2)
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 26 ScriptIntrinsic::ScriptIntrinsic(sp<RS> rs, int id, sp<const Element> e)
31 ScriptIntrinsicBlend::ScriptIntrinsicBlend(sp<RS> rs, sp<const Element> e)
36 void ScriptIntrinsicBlend::blendClear(sp<Allocation> in, sp<Allocation> out) {
40 void ScriptIntrinsicBlend::blendSrc(sp<Allocation> in, sp<Allocation> out) {
44 void ScriptIntrinsicBlend::blendDst(sp<Allocation> in, sp<Allocation> out)
    [all...]
rsCppStructs.h 163 sp<RS> mRS;
166 BaseObj(void *id, sp<RS> rs);
169 static void * getObjID(sp<const BaseObj> o);
182 android::sp<const Type> mType;
184 android::sp<Allocation> mAdaptedAllocation;
203 void updateCacheInfo(sp<const Type> t);
205 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage);
218 android::sp<const Type> getType() {
229 void copy1DRangeFrom(uint32_t off, size_t count, sp<const Allocation> data, uint32_t dataOff)
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
MediaSender.h 49 const sp<ANetworkSession> &netSession,
50 const sp<AMessage> &notify);
52 status_t setHDCP(const sp<IHDCP> &hdcp);
57 ssize_t addTrack(const sp<AMessage> &format, uint32_t flags);
70 size_t trackIndex, const sp<ABuffer> &accessUnit);
73 virtual void onMessageReceived(const sp<AMessage> &msg);
88 sp<AMessage> mFormat;
90 sp<RTPSender> mSender;
91 List<sp<ABuffer> > mAccessUnits;
96 sp<ANetworkSession> mNetSession
    [all...]

Completed in 381 milliseconds

1 2 3 4 5 6 7 8 91011>>