HomeSort by relevance Sort by last modified time
    Searched refs:sp (Results 1 - 25 of 3065) 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...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/asm/
SaveRegisters_mips.S 43 addiu $sp,$sp,-56
45 sw $s0,16($sp)
46 sw $s1,20($sp)
47 sw $s2,24($sp)
48 sw $s3,28($sp)
49 sw $s4,32($sp)
50 sw $s5,36($sp)
51 sw $s6,40($sp)
52 sw $s7,44($sp)
    [all...]
SaveRegisters_arm64.S 42 sub sp, sp, #96
43 stp x19, x20, [sp, #80]
44 stp x21, x22, [sp, #64]
45 stp x23, x24, [sp, #48]
46 stp x25, x26, [sp, #32]
47 stp x27, x28, [sp, #16]
48 stp x30, x29, [sp, #0] // x30 is lr.
55 mov x2, sp
61 ldr x30, [sp], #9
    [all...]
  /external/compiler-rt/lib/builtins/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/libhevc/common/arm64/
ihevc_neon_macros.s 39 stp d8,d9,[sp,#-16]!
40 stp d10,d11,[sp,#-16]!
41 stp d12,d13,[sp,#-16]!
42 stp d14,d15,[sp,#-16]!
45 ldp d14,d15,[sp],#16
46 ldp d12,d13,[sp],#16
47 ldp d10,d11,[sp],#16
48 ldp d8,d9,[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...]
  /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]
elf-extern.s 13 sub sp, sp, #16
15 .cfi_def_cfa sp, 16
16 str x30, [sp, #8] // 8-byte Folded Spill
21 ldr x30, [sp, #8] // 8-byte Folded Reload
22 add sp, sp, #16
  /frameworks/native/services/inputflinger/
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 32 Decoder(const sp<AMessage> &notify,
33 const sp<NativeWindowWrapper> &nativeWindow = NULL);
35 virtual void configure(const sp<AMessage> &format);
38 status_t getInputBuffers(Vector<sp<ABuffer> > *dstBuffers) const;
39 virtual void signalFlush(const sp<AMessage> &format = NULL);
40 virtual void signalUpdateFormat(const sp<AMessage> &format);
44 virtual bool supportsSeamlessFormatChange(const sp<AMessage> &to) const;
60 virtual void onMessageReceived(const sp<AMessage> &msg);
74 sp<AMessage> mNotify;
75 sp<NativeWindowWrapper> mNativeWindow
    [all...]
  /art/runtime/arch/arm64/
jni_entrypoints_arm64.S 27 stp x29, x30, [sp, #-16]!
28 mov x29, sp
29 stp d6, d7, [sp, #-16]!
30 stp d4, d5, [sp, #-16]!
31 stp d2, d3, [sp, #-16]!
32 stp d0, d1, [sp, #-16]!
33 stp x6, x7, [sp, #-16]!
34 stp x4, x5, [sp, #-16]!
35 stp x2, x3, [sp, #-16]!
36 stp x0, x1, [sp, #-16]
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/api/arm/
arm64COMM_s.h 102 // states that r4-r11, sp, d8-d15 must be preserved by
126 sub sp, sp, #_SBytes variable
135 add sp, sp, #_SBytes variable
152 sub sp, sp, (_DRegList - 7) * 16 // 16-byte alignment variable
153 str q8, [sp]
157 str q9, [sp, #16]
161 str q10, [sp, #32
193 sub sp, sp, #16 variable
234 add sp, sp, (_DRegList - 7) * 16 \/\/ 16-byte alignment variable
243 add sp, sp, #16 variable
    [all...]
  /external/llvm/test/MC/ARM/
vfp-aliases.s 8 fstmfdd sp!, {d0}
9 fstmead sp!, {d0}
10 fstmdbd sp!, {d0}
11 fstmiad sp!, {d0}
12 fstmfds sp!, {s0}
13 fstmeas sp!, {s0}
14 fstmdbs sp!, {s0}
15 fstmias sp!, {s0}
17 fldmias sp!, {s0}
18 fldmdbs sp!, {s0
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 174 sp<const Element> U8;
175 sp<const Element> U8_2;
176 sp<const Element> U8_3;
177 sp<const Element> U8_4;
178 sp<const Element> I8;
179 sp<const Element> I8_2;
180 sp<const Element> I8_3;
181 sp<const Element> I8_4;
182 sp<const Element> U16;
183 sp<const Element> U16_2
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h 173 sp<const Element> U8;
174 sp<const Element> U8_2;
175 sp<const Element> U8_3;
176 sp<const Element> U8_4;
177 sp<const Element> I8;
178 sp<const Element> I8_2;
179 sp<const Element> I8_3;
180 sp<const Element> I8_4;
181 sp<const Element> U16;
182 sp<const Element> U16_2
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h 173 sp<const Element> U8;
174 sp<const Element> U8_2;
175 sp<const Element> U8_3;
176 sp<const Element> U8_4;
177 sp<const Element> I8;
178 sp<const Element> I8_2;
179 sp<const Element> I8_3;
180 sp<const Element> I8_4;
181 sp<const Element> U16;
182 sp<const Element> U16_2
    [all...]

Completed in 1014 milliseconds

1 2 3 4 5 6 7 8 91011>>