HomeSort by relevance Sort by last modified time
    Searched refs:sp (Results 26 - 50 of 2963) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
  /art/runtime/arch/mips64/
jni_entrypoints_mips64.S 27 daddiu $sp, $sp, -80 # save a0-a7 and $ra
29 sd $ra, 64($sp)
31 sd $a7, 56($sp)
33 sd $a6, 48($sp)
35 sd $a5, 40($sp)
37 sd $a4, 32($sp)
39 sd $a3, 24($sp)
41 sd $a2, 16($sp)
43 sd $a1, 8($sp)
    [all...]
  /system/core/include/utils/
StrongPointer.h 34 inline bool operator _op_ (const sp<T>& o) const { \
41 inline bool operator _op_ (const sp<U>& o) const { \
59 class sp { class in namespace:android
61 inline sp() : m_ptr(0) { } function in class:android::sp
63 sp(T* other);
64 sp(const sp<T>& other);
65 template<typename U> sp(U* other);
66 template<typename U> sp(const sp<U>& other)
120 sp<T>::sp(const sp<T>& other) function in class:android::sp
127 sp<T>::sp(U* other) function in class:android::sp
134 sp<T>::sp(const sp<U>& other) function in class:android::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...]
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.h 46 Converter(const sp<AMessage> &notify,
47 const sp<ALooper> &codecLooper,
48 const sp<AMessage> &outputFormat,
53 sp<IGraphicBufferProducer> getGraphicBufferProducer();
57 sp<AMessage> getOutputFormat() const;
60 void feedAccessUnit(const sp<ABuffer> &accessUnit);
82 virtual void onMessageReceived(const sp<AMessage> &msg);
95 sp<AMessage> mNotify;
96 sp<ALooper> mCodecLooper;
97 sp<AMessage> mOutputFormat
    [all...]
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);
  /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...]
  /external/libavc/common/armv8/
ih264_neon_macros.s 24 stp d8, d9, [sp, #-16]!
25 stp d10, d11, [sp, #-16]!
26 stp d12, d13, [sp, #-16]!
27 stp d14, d15, [sp, #-16]!
30 ldp d14, d15, [sp], #16
31 ldp d12, d13, [sp], #16
32 ldp d10, d11, [sp], #16
33 ldp d8, d9, [sp], #16
  /external/libmpeg2/common/armv8/
impeg2_neon_macros.s 41 stp d8, d9, [sp, #-16]!
42 stp d10, d11, [sp, #-16]!
43 stp d12, d13, [sp, #-16]!
44 stp d14, d15, [sp, #-16]!
47 ldp d14, d15, [sp], #16
48 ldp d12, d13, [sp], #16
49 ldp d10, d11, [sp], #16
50 ldp d8, d9, [sp], #16
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_surface.h 39 sp_init_surface_functions(struct softpipe_context *sp);
  /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 handleMessage(const sp<AMessage> &msg);
55 void changeState(const sp<AState> &state);
58 sp<AState> mState;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.h 32 const sp<AMessage> &notify,
33 const sp<IStreamSource> &source);
40 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
47 virtual void onMessageReceived(const sp<AMessage> &msg);
49 virtual sp<MetaData> getFormatMeta(bool audio);
55 sp<IStreamSource> mSource;
57 sp<NuPlayerStreamListener> mStreamListener;
58 sp<ATSParser> mTSParser;
62 sp<ALooper> mLooper;
65 sp<AnotherPacketSource> getSource(bool audio)
    [all...]
NuPlayerDecoderBase.h 33 DecoderBase(const sp<AMessage> &notify);
35 void configure(const sp<AMessage> &format);
37 void setParameters(const sp<AMessage> &params);
39 void setRenderer(const sp<Renderer> &renderer);
40 virtual status_t setVideoSurface(const sp<Surface> &) { return INVALID_OPERATION; }
42 status_t getInputBuffers(Vector<sp<ABuffer> > *dstBuffers) const;
47 virtual sp<AMessage> getStats() const {
65 virtual void onMessageReceived(const sp<AMessage> &msg);
67 virtual void onConfigure(const sp<AMessage> &format) = 0;
68 virtual void onSetParameters(const sp<AMessage> &params) = 0
    [all...]
NuPlayerStreamListener.h 31 const sp<IStreamSource> &source,
32 const sp<AHandler> &targetHandler);
37 Command cmd, bool synchronous, const sp<AMessage> &extra);
40 ssize_t read(void *data, size_t size, sp<AMessage> *extra);
56 sp<AMessage> mExtra;
61 sp<IStreamSource> mSource;
62 sp<AHandler> mTargetHandler;
63 sp<MemoryDealer> mMemoryDealer;
64 Vector<sp<IMemory> > mBuffers;
RTSPSource.h 35 const sp<AMessage> &notify,
36 const sp<IMediaHTTPService> &httpService,
51 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
56 void onMessageReceived(const sp<AMessage> &msg);
61 virtual sp<MetaData> getFormatMeta(bool audio);
83 sp<AnotherPacketSource> mSource;
91 sp<IMediaHTTPService> mHTTPService;
100 sp<AReplyToken> mDisconnectReplyID;
104 sp<ALooper> mLooper;
105 sp<MyHandler> mHandler
    [all...]
  /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> *);
  /external/icu/icu4c/source/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...]
  /art/runtime/arch/mips/
jni_entrypoints_mips.S 27 addiu $sp, $sp, -32 # leave room for $a0, $a1, $a2, $a3, and $ra
29 sw $ra, 16($sp)
31 sw $a3, 12($sp)
33 sw $a2, 8($sp)
35 sw $a1, 4($sp)
37 sw $a0, 0($sp)
41 lw $a0, 0($sp) # restore registers from stack
42 lw $a1, 4($sp)
43 lw $a2, 8($sp)
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.h 32 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
36 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
42 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
43 const sp<IStreamSource> &/*source*/,
46 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
47 const sp<DataSource> &/*source*/,
50 virtual sp<MediaPlayerBase> createPlayer(pid_t pid) = 0;
56 static player_type getPlayerType(const sp<IMediaPlayer>& client,
58 static player_type getPlayerType(const sp<IMediaPlayer>& client,
62 static player_type getPlayerType(const sp<IMediaPlayer>& client
    [all...]
  /frameworks/native/include/gui/
StreamSplitter.h 50 static status_t createSplitter(const sp<IGraphicBufferConsumer>& inputQueue,
51 sp<StreamSplitter>* outSplitter);
64 status_t addOutput(const sp<IGraphicBufferProducer>& outputQueue);
98 void onBufferReleasedByOutput(const sp<IGraphicBufferProducer>& from);
114 OutputListener(const sp<StreamSplitter>& splitter,
115 const sp<IGraphicBufferProducer>& output);
125 sp<StreamSplitter> mSplitter;
126 sp<IGraphicBufferProducer> mOutput;
131 BufferTracker(const sp<GraphicBuffer>& buffer);
133 const sp<GraphicBuffer>& getBuffer() const { return mBuffer;
    [all...]
  /system/security/keystore/
operation.h 50 sp<IBinder> addOperation(keymaster_operation_handle_t handle, uint64_t keyid,
52 sp<IBinder> appToken, keymaster_key_characteristics_t* characteristics,
54 bool getOperation(sp<IBinder> token, keymaster_operation_handle_t* outHandle,
58 bool removeOperation(sp<IBinder> token);
61 bool getOperationAuthToken(sp<IBinder> token, const hw_auth_token_t** outToken);
62 bool setOperationAuthToken(sp<IBinder> token, const hw_auth_token_t* authToken);
63 sp<IBinder> getOldestPruneableOperation();
64 std::vector<sp<IBinder>> getOperationsForToken(sp<IBinder> appToken);
67 void updateLru(sp<IBinder> token)
    [all...]
  /external/compiler-rt/lib/builtins/arm/
sync_synchronize.S 26 stmfd sp!, {r7, lr}
27 add r7, sp, #0
29 ldmfd sp!, {r7, pc}

Completed in 1743 milliseconds

12 3 4 5 6 7 8 91011>>