Home
last modified time | relevance | path

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

12345678910>>...45

/external/llvm/test/CodeGen/AArch64/
Dfastcc.ll9 ; CHECK: sub sp, sp, #48
12 ; CHECK-TAIL: sub sp, sp, #48
17 ; CHECK-NOT: sub sp, sp,
20 ; CHECK-TAIL: sub sp, sp, #16
25 ; CHECK-NOT: sub sp, sp,
28 ; CHECK-TAIL: sub sp, sp, #32
33 ; CHECK-NOT: sub sp, sp
36 ; CHECK-TAIL-NOT: sub sp, sp
39 ; CHECK: add sp, sp, #48
42 ; CHECK-TAIL: add sp, sp, #48
[all …]
Dalloca.ll14 ; for the final sp, but it could be if it was then moved into x0.
15 ; CHECK: mov [[TMP:x[0-9]+]], sp
17 ; CHECK: mov sp, x0
23 ; Make sure epilogue restores sp from fp
24 ; CHECK: sub sp, x29, #16
25 ; CHECK: ldp x29, x30, [sp, #16]
26 ; CHECK: add sp, sp, #32
34 ; CHECK: sub sp, sp, #32
35 ; CHECK: stp x29, x30, [sp, #16]
44 ; for the final sp, but it could be if it was then moved into x0.
[all …]
/external/chromium_org/third_party/icu/source/test/intltest/
Dstrtest.cpp239 StringPiece sp(abcd, -1); in TestStringPiece() local
240 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
243 sp=StringPiece(abcd, 5); in TestStringPiece()
244 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
247 sp=StringPiece(abcd, 2); in TestStringPiece()
248 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
252 sp=StringPiece(abcd, -1, 8); in TestStringPiece()
253 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
256 sp=StringPiece(abcd, 5, 8); in TestStringPiece()
257 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
[all …]
/external/icu4c/test/intltest/
Dstrtest.cpp207 StringPiece sp(abcd, -1); in TestStringPiece() local
208 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
211 sp=StringPiece(abcd, 5); in TestStringPiece()
212 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
215 sp=StringPiece(abcd, 2); in TestStringPiece()
216 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
220 sp=StringPiece(abcd, -1, 8); in TestStringPiece()
221 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
224 sp=StringPiece(abcd, 5, 8); in TestStringPiece()
225 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
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 …]
Dsp_draw_arrays.c62 struct softpipe_context *sp = softpipe_context(pipe); in softpipe_draw_vbo() local
63 struct draw_context *draw = sp->draw; in softpipe_draw_vbo()
67 if (!softpipe_check_render_cond(sp)) in softpipe_draw_vbo()
70 sp->reduced_api_prim = u_reduced_prim(info->mode); in softpipe_draw_vbo()
72 if (sp->dirty) { in softpipe_draw_vbo()
73 softpipe_update_derived(sp, sp->reduced_api_prim); in softpipe_draw_vbo()
76 softpipe_map_transfers(sp); in softpipe_draw_vbo()
79 for (i = 0; i < sp->num_vertex_buffers; i++) { in softpipe_draw_vbo()
80 const void *buf = sp->vertex_buffer[i].user_buffer; in softpipe_draw_vbo()
82 buf = softpipe_resource(sp->vertex_buffer[i].buffer)->data; in softpipe_draw_vbo()
[all …]
/external/mesa3d/src/gallium/drivers/softpipe/
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 …]
Dsp_draw_arrays.c62 struct softpipe_context *sp = softpipe_context(pipe); in softpipe_draw_vbo() local
63 struct draw_context *draw = sp->draw; in softpipe_draw_vbo()
67 if (!softpipe_check_render_cond(sp)) in softpipe_draw_vbo()
70 sp->reduced_api_prim = u_reduced_prim(info->mode); in softpipe_draw_vbo()
72 if (sp->dirty) { in softpipe_draw_vbo()
73 softpipe_update_derived(sp, sp->reduced_api_prim); in softpipe_draw_vbo()
76 softpipe_map_transfers(sp); in softpipe_draw_vbo()
79 for (i = 0; i < sp->num_vertex_buffers; i++) { in softpipe_draw_vbo()
80 const void *buf = sp->vertex_buffer[i].user_buffer; in softpipe_draw_vbo()
82 buf = softpipe_resource(sp->vertex_buffer[i].buffer)->data; in softpipe_draw_vbo()
[all …]
/external/libpng/
Dpngrtran.c1609 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
1614 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
1618 sp--; in png_do_unpack()
1631 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
1636 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
1640 sp--; in png_do_unpack()
1652 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
1657 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
1661 sp--; in png_do_unpack()
1805 png_bytep sp = row; in png_do_chop() local
[all …]
/external/chromium_org/third_party/libpng/
Dpngrtran.c1609 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
1614 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
1618 sp--; in png_do_unpack()
1631 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
1636 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
1640 sp--; in png_do_unpack()
1652 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
1657 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
1661 sp--; in png_do_unpack()
1805 png_bytep sp = row; in png_do_chop() local
[all …]
/external/qemu/distrib/libpng-1.2.19/
Dpngrtran.c1521 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
1526 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
1530 sp--; in png_do_unpack()
1542 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
1547 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
1551 sp--; in png_do_unpack()
1562 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
1567 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
1571 sp--; in png_do_unpack()
1710 png_bytep sp = row; in png_do_chop() local
[all …]
/external/chromium_org/third_party/icu/source/tools/tzcode/
Dlocaltime.c149 static void gmtload(struct state * sp);
175 const struct state * sp, struct tm * tmp);
180 static int typesequiv(const struct state * sp, int a, int b);
181 static int tzload(const char * name, struct state * sp,
183 static int tzparse(const char * name, struct state * sp,
259 register struct state * const sp = lclptr; in settzname() local
272 if (sp == NULL) { in settzname()
277 for (i = 0; i < sp->typecnt; ++i) { in settzname()
278 register const struct ttinfo * const ttisp = &sp->ttis[i]; in settzname()
281 &sp->chars[ttisp->tt_abbrind]; in settzname()
[all …]
/external/icu4c/tools/tzcode/
Dlocaltime.c149 static void gmtload(struct state * sp);
175 const struct state * sp, struct tm * tmp);
180 static int typesequiv(const struct state * sp, int a, int b);
181 static int tzload(const char * name, struct state * sp,
183 static int tzparse(const char * name, struct state * sp,
259 register struct state * const sp = lclptr; in settzname() local
272 if (sp == NULL) { in settzname()
277 for (i = 0; i < sp->typecnt; ++i) { in settzname()
278 register const struct ttinfo * const ttisp = &sp->ttis[i]; in settzname()
281 &sp->chars[ttisp->tt_abbrind]; in settzname()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
DSDL_mintaudio_it.S63 lea sp@(-216),sp; \
64 fsave sp@; \
65 fmovel fpiar,sp@-; \
66 lea sp@(-64),sp; \
67 fmovemd fp0-fp7,sp@
70 fmovemd sp@,fp0-fp7; \
71 lea sp@(64),sp; \
72 fmovel sp@+,fpiar; \
73 frestore sp@; \
74 lea sp@(216),sp
[all …]
/external/openssl/crypto/sha/asm/
Dsha512-ppc.pl95 $sp ="r1";
185 $STU $sp,-$FRAME($sp)
189 $PUSH $ctx,`$FRAME-$SIZE_T*22`($sp)
191 $PUSH $toc,`$FRAME-$SIZE_T*20`($sp)
192 $PUSH r13,`$FRAME-$SIZE_T*19`($sp)
193 $PUSH r14,`$FRAME-$SIZE_T*18`($sp)
194 $PUSH r15,`$FRAME-$SIZE_T*17`($sp)
195 $PUSH r16,`$FRAME-$SIZE_T*16`($sp)
196 $PUSH r17,`$FRAME-$SIZE_T*15`($sp)
197 $PUSH r18,`$FRAME-$SIZE_T*14`($sp)
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
Dsha512-ppc.pl95 $sp ="r1";
185 $STU $sp,-$FRAME($sp)
189 $PUSH $ctx,`$FRAME-$SIZE_T*22`($sp)
191 $PUSH $toc,`$FRAME-$SIZE_T*20`($sp)
192 $PUSH r13,`$FRAME-$SIZE_T*19`($sp)
193 $PUSH r14,`$FRAME-$SIZE_T*18`($sp)
194 $PUSH r15,`$FRAME-$SIZE_T*17`($sp)
195 $PUSH r16,`$FRAME-$SIZE_T*16`($sp)
196 $PUSH r17,`$FRAME-$SIZE_T*15`($sp)
197 $PUSH r18,`$FRAME-$SIZE_T*14`($sp)
[all …]
/external/tcpdump/
Dprint-telnet.c110 telnet_parse(const u_char *sp, u_int length, int print) in telnet_parse() argument
115 #define FETCH(c, sp, length) \ in telnet_parse() argument
119 TCHECK(*sp); \ in telnet_parse()
120 c = *sp++; \ in telnet_parse()
124 osp = sp; in telnet_parse()
126 FETCH(c, sp, length); in telnet_parse()
129 FETCH(c, sp, length); in telnet_parse()
147 FETCH(x, sp, length); in telnet_parse()
158 p = sp; in telnet_parse()
159 while (length > (u_int)(p + 1 - sp)) { in telnet_parse()
[all …]
/external/llvm/test/MC/ARM/
Deh-directive-pad.s28 sub sp, sp, #0
29 add sp, sp, #0
57 sub sp, sp, #0x4
58 add sp, sp, #0x4
70 sub sp, sp, #0x100
71 add sp, sp, #0x100
98 sub sp, sp, #0x104
99 add sp, sp, #0x104
111 sub sp, sp, #0x200
112 add sp, sp, #0x200
[all …]
Deh-directive-multiple-offsets.s18 sub sp, sp, #12
19 .setfp fp, sp, #8
20 add fp, sp, #8
21 sub sp, fp, #8
22 add sp, sp, #12
46 .setfp fp, sp, #8
47 add fp, sp, #8
49 sub sp, sp, #12
50 add sp, sp, #12
51 sub sp, fp, #8
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
Dppc64-mont.pl100 $sp="r1";
212 subf $tp,$tp,$sp ; $sp-$tp
214 subf $tp,$sp,$tp ; $tp-$sp
215 mr $i,$sp
216 $STUX $sp,$sp,$tp ; alloca
259 addi $tp,$sp,`$FRAME+$TRANSFER+8+64`
270 addi $tp,$sp,`$FRAME+$TRANSFER-8`
279 std $t0,`$FRAME+0`($sp)
280 std $t1,`$FRAME+8`($sp)
281 std $t2,`$FRAME+16`($sp)
[all …]
Ds390x-gf2m.pl50 $sp="%r15";
81 stg @T[0],`$stdframe+0*8`($sp) # tab[0]=0
83 stg $a1,`$stdframe+1*8`($sp) # tab[1]=a1
85 stg $a2,`$stdframe+2*8`($sp) # tab[2]=a2
87 stg $a12,`$stdframe+3*8`($sp) # tab[3]=a1^a2
90 stg $a4,`$stdframe+4*8`($sp) # tab[4]=a4
92 stg $a1,`$stdframe+5*8`($sp) # tab[5]=a1^a4
94 stg $a2,`$stdframe+6*8`($sp) # tab[6]=a2^a4
96 stg $a12,`$stdframe+7*8`($sp) # tab[7]=a1^a2^a4
99 stg $a8,`$stdframe+8*8`($sp) # tab[8]=a8
[all …]
/external/openssl/crypto/bn/asm/
Dppc64-mont.pl100 $sp="r1";
212 subf $tp,$tp,$sp ; $sp-$tp
214 subf $tp,$sp,$tp ; $tp-$sp
215 mr $i,$sp
216 $STUX $sp,$sp,$tp ; alloca
259 addi $tp,$sp,`$FRAME+$TRANSFER+8+64`
270 addi $tp,$sp,`$FRAME+$TRANSFER-8`
279 std $t0,`$FRAME+0`($sp)
280 std $t1,`$FRAME+8`($sp)
281 std $t2,`$FRAME+16`($sp)
[all …]
Ds390x-gf2m.pl50 $sp="%r15";
81 stg @T[0],`$stdframe+0*8`($sp) # tab[0]=0
83 stg $a1,`$stdframe+1*8`($sp) # tab[1]=a1
85 stg $a2,`$stdframe+2*8`($sp) # tab[2]=a2
87 stg $a12,`$stdframe+3*8`($sp) # tab[3]=a1^a2
90 stg $a4,`$stdframe+4*8`($sp) # tab[4]=a4
92 stg $a1,`$stdframe+5*8`($sp) # tab[5]=a1^a4
94 stg $a2,`$stdframe+6*8`($sp) # tab[6]=a2^a4
96 stg $a12,`$stdframe+7*8`($sp) # tab[7]=a1^a2^a4
99 stg $a8,`$stdframe+8*8`($sp) # tab[8]=a8
[all …]
/external/qemu/distrib/sdl-1.2.15/src/timer/mint/
DSDL_vbltimer.S44 lea sp@(-216),sp; \
45 fsave sp@; \
46 fmovel fpiar,sp@-; \
47 lea sp@(-64),sp; \
48 fmovemd fp0-fp7,sp@
51 fmovemd sp@,fp0-fp7; \
52 lea sp@(64),sp; \
53 fmovel sp@+,fpiar; \
54 frestore sp@; \
55 lea sp@(216),sp
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
Daes-s390x.pl115 $sp="%r15";
260 stm${g} %r3,$ra,3*$SIZE_T($sp)
270 l${g} $out,3*$SIZE_T($sp)
276 lm${g} %r6,$ra,6*$SIZE_T($sp)
283 st${g} $ra,15*$SIZE_T($sp)
447 l${g} $ra,15*$SIZE_T($sp)
586 stm${g} %r3,$ra,3*$SIZE_T($sp)
596 l${g} $out,3*$SIZE_T($sp)
602 lm${g} %r6,$ra,6*$SIZE_T($sp)
609 st${g} $ra,15*$SIZE_T($sp)
[all …]

12345678910>>...45