Home
last modified time | relevance | path

Searched refs:sp (Results 1 – 25 of 2052) sorted by relevance

12345678910>>...83

/external/vixl/test/aarch32/
Dtest-assembler-cond-sp-sp-operand-imm7-t32.cc97 {{{al, sp, sp, 0x0}, false, al, "al sp sp 0x0", "al_sp_sp_0x0"},
98 {{al, sp, sp, 0x4}, false, al, "al sp sp 0x4", "al_sp_sp_0x4"},
99 {{al, sp, sp, 0x8}, false, al, "al sp sp 0x8", "al_sp_sp_0x8"},
100 {{al, sp, sp, 0xc}, false, al, "al sp sp 0xc", "al_sp_sp_0xc"},
101 {{al, sp, sp, 0x10}, false, al, "al sp sp 0x10", "al_sp_sp_0x10"},
102 {{al, sp, sp, 0x14}, false, al, "al sp sp 0x14", "al_sp_sp_0x14"},
103 {{al, sp, sp, 0x18}, false, al, "al sp sp 0x18", "al_sp_sp_0x18"},
104 {{al, sp, sp, 0x1c}, false, al, "al sp sp 0x1c", "al_sp_sp_0x1c"},
105 {{al, sp, sp, 0x20}, false, al, "al sp sp 0x20", "al_sp_sp_0x20"},
106 {{al, sp, sp, 0x24}, false, al, "al sp sp 0x24", "al_sp_sp_0x24"},
[all …]
Dtest-assembler-cond-rd-sp-operand-imm8-t32.cc95 {{{al, r0, sp, 0x0}, false, al, "al r0 sp 0x0", "al_r0_sp_0x0"},
96 {{al, r0, sp, 0x4}, false, al, "al r0 sp 0x4", "al_r0_sp_0x4"},
97 {{al, r0, sp, 0x8}, false, al, "al r0 sp 0x8", "al_r0_sp_0x8"},
98 {{al, r0, sp, 0xc}, false, al, "al r0 sp 0xc", "al_r0_sp_0xc"},
99 {{al, r0, sp, 0x10}, false, al, "al r0 sp 0x10", "al_r0_sp_0x10"},
100 {{al, r0, sp, 0x14}, false, al, "al r0 sp 0x14", "al_r0_sp_0x14"},
101 {{al, r0, sp, 0x18}, false, al, "al r0 sp 0x18", "al_r0_sp_0x18"},
102 {{al, r0, sp, 0x1c}, false, al, "al r0 sp 0x1c", "al_r0_sp_0x1c"},
103 {{al, r0, sp, 0x20}, false, al, "al r0 sp 0x20", "al_r0_sp_0x20"},
104 {{al, r0, sp, 0x24}, false, al, "al r0 sp 0x24", "al_r0_sp_0x24"},
[all …]
/external/pdfium/third_party/libtiff/
Dtif_ojpeg.c383 static int OJPEGReadBufferFill(OJPEGState* sp);
384 static int OJPEGReadByte(OJPEGState* sp, uint8* byte);
385 static int OJPEGReadBytePeek(OJPEGState* sp, uint8* byte);
386 static void OJPEGReadByteAdvance(OJPEGState* sp);
387 static int OJPEGReadWord(OJPEGState* sp, uint16* word);
388 static int OJPEGReadBlock(OJPEGState* sp, uint16 len, void* mem);
389 static void OJPEGReadSkip(OJPEGState* sp, uint16 len);
404 extern int jpeg_create_decompress_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo);
405 extern int jpeg_read_header_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo, uint8 require_imag…
406 extern int jpeg_start_decompress_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo);
[all …]
Dtif_jpeg.c223 JPEGState *sp = (JPEGState *) cinfo; /* NB: cinfo assumed first */ in TIFFjpeg_error_exit() local
227 TIFFErrorExt(sp->tif->tif_clientdata, "JPEGLib", "%s", buffer); /* display the error message */ in TIFFjpeg_error_exit()
229 LONGJMP(sp->exit_jmpbuf, 1); /* return to libtiff caller */ in TIFFjpeg_error_exit()
252 #define CALLJPEG(sp, fail, op) (SETJMP((sp)->exit_jmpbuf) ? (fail) : (op)) argument
253 #define CALLVJPEG(sp, op) CALLJPEG(sp, 0, ((op),1)) argument
256 TIFFjpeg_create_compress(JPEGState* sp) in TIFFjpeg_create_compress() argument
259 sp->cinfo.c.err = jpeg_std_error(&sp->err); in TIFFjpeg_create_compress()
260 sp->err.error_exit = TIFFjpeg_error_exit; in TIFFjpeg_create_compress()
261 sp->err.output_message = TIFFjpeg_output_message; in TIFFjpeg_create_compress()
264 sp->cinfo.c.client_data = NULL; in TIFFjpeg_create_compress()
[all …]
Dtif_zip.c64 #define SAFE_MSG(sp) ((sp)->stream.msg == NULL ? "" : (sp)->stream.msg) argument
100 ZIPState* sp = DecoderState(tif); in ZIPSetupDecode() local
102 assert(sp != NULL); in ZIPSetupDecode()
105 if (sp->state & ZSTATE_INIT_ENCODE) { in ZIPSetupDecode()
106 deflateEnd(&sp->stream); in ZIPSetupDecode()
107 sp->state = 0; in ZIPSetupDecode()
110 if (inflateInit(&sp->stream) != Z_OK) { in ZIPSetupDecode()
111 TIFFErrorExt(tif->tif_clientdata, module, "%s", SAFE_MSG(sp)); in ZIPSetupDecode()
114 sp->state |= ZSTATE_INIT_DECODE; in ZIPSetupDecode()
126 ZIPState* sp = DecoderState(tif); in ZIPPreDecode() local
[all …]
Dtif_lzw.c188 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code) argument
202 LZWCodecState* sp = DecoderState(tif); in LZWSetupDecode() local
205 if( sp == NULL ) in LZWSetupDecode()
226 sp = DecoderState(tif); in LZWSetupDecode()
229 assert(sp != NULL); in LZWSetupDecode()
231 if (sp->dec_codetab == NULL) { in LZWSetupDecode()
232 sp->dec_codetab = (code_t*)_TIFFmalloc(CSIZE*sizeof (code_t)); in LZWSetupDecode()
233 if (sp->dec_codetab == NULL) { in LZWSetupDecode()
243 sp->dec_codetab[code].value = code; in LZWSetupDecode()
244 sp->dec_codetab[code].firstchar = code; in LZWSetupDecode()
[all …]
Dtif_fax3.c92 #define is2DEncoding(sp) (sp->b.groupoptions & GROUP3OPT_2DENCODING) argument
103 #define DECLARE_STATE(tif, sp, mod) \ argument
105 Fax3CodecState* sp = DecoderState(tif); \
107 int lastx = sp->b.rowpixels; /* last element in row */ \
116 const unsigned char* bitmap = sp->bitmap; /* input data bit reverser */ \
118 #define DECLARE_STATE_2D(tif, sp, mod) \ argument
119 DECLARE_STATE(tif, sp, mod); \
125 #define CACHE_STATE(tif, sp) do { \ argument
126 BitAcc = sp->data; \
127 BitsAvail = sp->bit; \
[all …]
/external/llvm/test/CodeGen/AArch64/
Dfastcc.ll10 ; CHECK: sub sp, sp, #48
11 ; CHECK: add x29, sp, #32
12 ; CHECK: str w{{[0-9]+}}, [sp]
15 ; CHECK-TAIL: sub sp, sp, #48
16 ; CHECK-TAIL-NEXT: stp x29, x30, [sp, #32]
17 ; CHECK-TAIL-NEXT: add x29, sp, #32
18 ; CHECK-TAIL: str w{{[0-9]+}}, [sp]
23 ; CHECK-NOT: sub sp, sp,
26 ; CHECK-TAIL: sub sp, sp, #16
31 ; CHECK-NOT: sub sp, sp,
[all …]
Darm64-register-pairing.ll8 ; CHECK: stp d15, d14, [sp, #-144]!
9 ; CHECK: stp d13, d12, [sp, #16]
10 ; CHECK: stp d11, d10, [sp, #32]
11 ; CHECK: stp d9, d8, [sp, #48]
12 ; CHECK: stp x28, x27, [sp, #64]
13 ; CHECK: stp x26, x25, [sp, #80]
14 ; CHECK: stp x24, x23, [sp, #96]
15 ; CHECK: stp x22, x21, [sp, #112]
16 ; CHECK: stp x20, x19, [sp, #128]
18 ; CHECK: ldp x20, x19, [sp, #128]
[all …]
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_draw_arrays.c64 struct softpipe_context *sp = softpipe_context(pipe); in softpipe_draw_vbo() local
65 struct draw_context *draw = sp->draw; in softpipe_draw_vbo()
69 if (!softpipe_check_render_cond(sp)) in softpipe_draw_vbo()
77 sp->reduced_api_prim = u_reduced_prim(info->mode); in softpipe_draw_vbo()
79 if (sp->dirty) { in softpipe_draw_vbo()
80 softpipe_update_derived(sp, sp->reduced_api_prim); in softpipe_draw_vbo()
84 for (i = 0; i < sp->num_vertex_buffers; i++) { in softpipe_draw_vbo()
85 const void *buf = sp->vertex_buffer[i].user_buffer; in softpipe_draw_vbo()
88 if (!sp->vertex_buffer[i].buffer) { in softpipe_draw_vbo()
91 buf = softpipe_resource_data(sp->vertex_buffer[i].buffer); in softpipe_draw_vbo()
[all …]
Dsp_surface.c37 struct softpipe_context *sp = softpipe_context(pipe); in sp_blit() local
39 if (info->render_condition_enable && !softpipe_check_render_cond(sp)) in sp_blit()
54 if (!util_blitter_is_blit_supported(sp->blitter, info)) { in sp_blit()
63 util_blitter_save_vertex_buffer_slot(sp->blitter, sp->vertex_buffer); in sp_blit()
64 util_blitter_save_vertex_elements(sp->blitter, sp->velems); in sp_blit()
65 util_blitter_save_vertex_shader(sp->blitter, sp->vs); in sp_blit()
66 util_blitter_save_geometry_shader(sp->blitter, sp->gs); in sp_blit()
67 util_blitter_save_so_targets(sp->blitter, sp->num_so_targets, in sp_blit()
68 (struct pipe_stream_output_target**)sp->so_targets); in sp_blit()
69 util_blitter_save_rasterizer(sp->blitter, sp->rasterizer); in sp_blit()
[all …]
Dsp_quad_pipe.c35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad) in insert_stage_at_head() argument
37 quad->next = sp->quad.first; in insert_stage_at_head()
38 sp->quad.first = quad; in insert_stage_at_head()
43 sp_build_quad_pipeline(struct softpipe_context *sp) in sp_build_quad_pipeline() argument
46 (sp->depth_stencil->depth.enabled && in sp_build_quad_pipeline()
47 sp->framebuffer.zsbuf && in sp_build_quad_pipeline()
48 !sp->depth_stencil->alpha.enabled && in sp_build_quad_pipeline()
49 !sp->fs_variant->info.uses_kill && in sp_build_quad_pipeline()
50 !sp->fs_variant->info.writes_z && in sp_build_quad_pipeline()
51 !sp->fs_variant->info.writes_stencil) || in sp_build_quad_pipeline()
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/
Dtrampoline.S34 stmfd sp!, {r0-r3}
47 stmfd sp!, {r0-r3}
60 stmfd sp!, {r0-r3}
73 stmfd sp!, {r0-r3}
86 stmfd sp!, {r0-r3}
99 stmfd sp!, {r0-r3}
112 stmfd sp!, {r0-r3}
125 stmfd sp!, {r0-r3}
138 stmfd sp!, {r0-r3}
151 stmfd sp!, {r0-r3}
[all …]
/external/llvm/test/CodeGen/Mips/
Dinterrupt-attr.ll6 ; CHECK: sw $27, [[R1:[0-9]+]]($sp)
8 ; CHECK: sw $27, [[R2:[0-9]+]]($sp)
14 ; CHECK: sw $7, {{[0-9]+}}($sp)
15 ; CHECK: sw $6, {{[0-9]+}}($sp)
16 ; CHECK: sw $5, {{[0-9]+}}($sp)
17 ; CHECK: sw $4, {{[0-9]+}}($sp)
18 ; CHECK: sw $3, {{[0-9]+}}($sp)
19 ; CHECK: sw $2, {{[0-9]+}}($sp)
20 ; CHECK: sw $25, {{[0-9]+}}($sp)
21 ; CHECK: sw $24, {{[0-9]+}}($sp)
[all …]
/external/icu/icu4c/source/test/intltest/
Dstrtest.cpp212 StringPiece sp(abcd, -1); in TestStringPiece() local
213 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
216 sp=StringPiece(abcd, 5); in TestStringPiece()
217 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
220 sp=StringPiece(abcd, 2); in TestStringPiece()
221 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
225 sp=StringPiece(abcd, -1, 8); in TestStringPiece()
226 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
229 sp=StringPiece(abcd, 5, 8); in TestStringPiece()
230 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
[all …]
/external/skia/third_party/libpng/
Dpngrtran.c2151 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
2156 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2161 sp--; in png_do_unpack()
2175 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
2180 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2185 sp--; in png_do_unpack()
2198 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
2203 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2208 sp--; in png_do_unpack()
2381 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
/external/pdfium/third_party/libpng16/
Dpngrtran.c2151 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
2156 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2161 sp--; in png_do_unpack()
2175 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
2180 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2185 sp--; in png_do_unpack()
2198 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
2203 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2208 sp--; in png_do_unpack()
2381 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
/external/libpng/
Dpngrtran.c2151 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
2156 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2161 sp--; in png_do_unpack()
2175 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
2180 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2185 sp--; in png_do_unpack()
2198 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
2203 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2208 sp--; in png_do_unpack()
2381 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/src/nios2/
Dsysv.S47 addi sp, sp, -12
49 stw ra, 8(sp)
50 stw fp, 4(sp)
51 stw r16, 0(sp)
55 mov fp, sp
61 sub sp, sp, r6
65 mov r4, sp /* argbuffer */
70 ldw r4, 0(sp)
71 ldw r5, 4(sp)
72 ldw r6, 8(sp)
[all …]
/external/syslinux/com32/lib/libpng/
Dpngrtran.c1599 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
1604 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
1608 sp--; in png_do_unpack()
1621 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
1626 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
1630 sp--; in png_do_unpack()
1642 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
1647 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
1651 sp--; in png_do_unpack()
1795 png_bytep sp = row; in png_do_chop() local
[all …]
/external/llvm/test/MC/ARM/
Dvfp-aliases.s8 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 …]
/external/python/cpython2/Modules/_ctypes/libffi/src/arc/
Darcompact.S46 st.a fp, [sp, -4] /* fp + 20, fp */
48 st.a r4, [sp, -4] /* fp + 12, ecif.rvalue */
50 st.a r5, [sp, -4] /* fp + 4, fn */
52 mov fp, sp
55 sub sp, sp, r2
63 mov_s r0, sp
69 ld_s r0, [sp]
70 ld_s r1, [sp, 4]
71 ld_s r2, [sp, 8]
72 ld_s r3, [sp, 12]
[all …]
/external/icu/icu4c/source/tools/tzcode/
Dlocaltime.c144 static void gmtload(struct state * sp);
171 const struct state * sp, struct tm * tmp);
177 static int typesequiv(const struct state * sp, int a, int b);
178 static int tzload(const char * name, struct state * sp,
180 static int tzparse(const char * name, struct state * sp,
254 register struct state * const sp = lclptr; in settzname() local
265 if (sp == NULL) { in settzname()
272 for (i = 0; i < sp->typecnt; ++i) { in settzname()
273 register const struct ttinfo * const ttisp = &sp->ttis[i]; in settzname()
275 tzname[ttisp->tt_isdst] = &sp->chars[ttisp->tt_abbrind]; in settzname()
[all …]
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dvector-arg.ll32 ; MIPS32: lw v0,{{.*}}(sp)
33 ; MIPS32: lw v1,{{.*}}(sp)
56 ; MIPS32: lw v0,{{.*}}(sp)
57 ; MIPS32: lw v1,{{.*}}(sp)
58 ; MIPS32: lw a1,{{.*}}(sp)
59 ; MIPS32: lw a2,{{.*}}(sp)
82 ; MIPS32: lw v0,{{.*}}(sp)
83 ; MIPS32: lw v1,{{.*}}(sp)
84 ; MIPS32: lw a1,{{.*}}(sp)
85 ; MIPS32: lw a2,{{.*}}(sp)
[all …]
/external/libunwind_llvm/src/
DDwarfInstructions.hpp228 pint_t *sp = stack; in evaluateExpression() local
229 *(++sp) = initialStackValue; in evaluateExpression()
233 for (pint_t *t = sp; t > stack; --t) { in evaluateExpression()
246 *(++sp) = value; in evaluateExpression()
253 value = *sp--; in evaluateExpression()
254 *(++sp) = addressSpace.getP(value); in evaluateExpression()
263 *(++sp) = value; in evaluateExpression()
272 *(++sp) = (pint_t)svalue; in evaluateExpression()
281 *(++sp) = value; in evaluateExpression()
290 *(++sp) = (pint_t)svalue; in evaluateExpression()
[all …]

12345678910>>...83