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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_pipe.c 35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad)
37 quad->next = sp->quad.first;
38 sp->quad.first = quad;
43 sp_build_quad_pipeline(struct softpipe_context *sp)
46 sp->depth_stencil->depth.enabled &&
47 sp->framebuffer.zsbuf &&
48 !sp->depth_stencil->alpha.enabled &&
49 !sp->fs_variant->info.uses_kill &&
50 !sp->fs_variant->info.writes_z &&
51 !sp->fs_variant->info.writes_stencil
    [all...]
sp_surface.c 33 sp_init_surface_functions(struct softpipe_context *sp)
35 sp->pipe.resource_copy_region = util_resource_copy_region;
36 sp->pipe.clear_render_target = util_clear_render_target;
37 sp->pipe.clear_depth_stencil = util_clear_depth_stencil;
sp_draw_arrays.c 62 struct softpipe_context *sp = softpipe_context(pipe); local
63 struct draw_context *draw = sp->draw;
67 if (!softpipe_check_render_cond(sp))
70 sp->reduced_api_prim = u_reduced_prim(info->mode);
72 if (sp->dirty) {
73 softpipe_update_derived(sp, sp->reduced_api_prim);
76 softpipe_map_transfers(sp);
79 for (i = 0; i < sp->num_vertex_buffers; i++) {
80 const void *buf = sp->vertex_buffer[i].user_buffer
    [all...]
sp_state_surface.c 51 struct softpipe_context *sp = softpipe_context(pipe); local
54 draw_flush(sp->draw);
58 if (sp->framebuffer.cbufs[i] != fb->cbufs[i]) {
60 sp_flush_tile_cache(sp->cbuf_cache[i]);
63 pipe_surface_reference(&sp->framebuffer.cbufs[i], fb->cbufs[i]);
66 sp_tile_cache_set_surface(sp->cbuf_cache[i], fb->cbufs[i]);
70 sp->framebuffer.nr_cbufs = fb->nr_cbufs;
73 if (sp->framebuffer.zsbuf != fb->zsbuf) {
75 sp_flush_tile_cache(sp->zsbuf_cache);
78 pipe_surface_reference(&sp->framebuffer.zsbuf, fb->zsbuf)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_pipe.c 35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad)
37 quad->next = sp->quad.first;
38 sp->quad.first = quad;
43 sp_build_quad_pipeline(struct softpipe_context *sp)
46 sp->depth_stencil->depth.enabled &&
47 sp->framebuffer.zsbuf &&
48 !sp->depth_stencil->alpha.enabled &&
49 !sp->fs_variant->info.uses_kill &&
50 !sp->fs_variant->info.writes_z &&
51 !sp->fs_variant->info.writes_stencil
    [all...]
sp_surface.c 33 sp_init_surface_functions(struct softpipe_context *sp)
35 sp->pipe.resource_copy_region = util_resource_copy_region;
36 sp->pipe.clear_render_target = util_clear_render_target;
37 sp->pipe.clear_depth_stencil = util_clear_depth_stencil;
sp_draw_arrays.c 62 struct softpipe_context *sp = softpipe_context(pipe); local
63 struct draw_context *draw = sp->draw;
67 if (!softpipe_check_render_cond(sp))
70 sp->reduced_api_prim = u_reduced_prim(info->mode);
72 if (sp->dirty) {
73 softpipe_update_derived(sp, sp->reduced_api_prim);
76 softpipe_map_transfers(sp);
79 for (i = 0; i < sp->num_vertex_buffers; i++) {
80 const void *buf = sp->vertex_buffer[i].user_buffer
    [all...]
sp_state_surface.c 51 struct softpipe_context *sp = softpipe_context(pipe); local
54 draw_flush(sp->draw);
58 if (sp->framebuffer.cbufs[i] != fb->cbufs[i]) {
60 sp_flush_tile_cache(sp->cbuf_cache[i]);
63 pipe_surface_reference(&sp->framebuffer.cbufs[i], fb->cbufs[i]);
66 sp_tile_cache_set_surface(sp->cbuf_cache[i], fb->cbufs[i]);
70 sp->framebuffer.nr_cbufs = fb->nr_cbufs;
73 if (sp->framebuffer.zsbuf != fb->zsbuf) {
75 sp_flush_tile_cache(sp->zsbuf_cache);
78 pipe_surface_reference(&sp->framebuffer.zsbuf, fb->zsbuf)
    [all...]
  /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
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_testcancel.c 73 ptw32_thread_t * sp = (ptw32_thread_t *) self.p; local
75 if (sp == NULL)
81 * Pthread_cancel() will have set sp->state to PThreadStateCancelPending
83 * sp->state != PThreadStateCancelPending - that only slows us down.
85 if (sp->state != PThreadStateCancelPending)
90 ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock);
92 if (sp->cancelState != PTHREAD_CANCEL_DISABLE)
94 ResetEvent(sp->cancelEvent);
95 sp->state = PThreadStateCanceling;
96 sp->cancelState = PTHREAD_CANCEL_DISABLE
    [all...]
pthread_self.c 64 ptw32_thread_t * sp; local
71 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
73 if (sp != NULL)
75 self = sp->ptHandle;
84 sp = (ptw32_thread_t *) self.p;
86 if (sp != NULL)
94 sp->implicit = 1;
95 sp->detachState = PTHREAD_CREATE_DETACHED;
96 sp->thread = GetCurrentThreadId ();
108 sp->threadH = GetCurrentThread ()
    [all...]
pthread_exit.c 68 ptw32_thread_t * sp; local
74 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
81 if (NULL == sp)
100 sp->exitStatus = value_ptr;
  /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...]
  /frameworks/rs/cpp/
rsCppStructs.h 169 sp<const Element> U8;
170 sp<const Element> U8_2;
171 sp<const Element> U8_3;
172 sp<const Element> U8_4;
173 sp<const Element> I8;
174 sp<const Element> I8_2;
175 sp<const Element> I8_3;
176 sp<const Element> I8_4;
177 sp<const Element> U16;
178 sp<const Element> U16_2
    [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...]
  /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...]
  /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...]

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>