Home
last modified time | relevance | path

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

12345678910>>...59

/external/icu/icu4c/source/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/llvm/test/CodeGen/AArch64/
Dfastcc.ll9 ; CHECK: mov x29, sp
10 ; CHECK-NEXT: sub sp, sp, #32
13 ; CHECK-TAIL: stp x29, x30, [sp, #-16]!
14 ; CHECK-TAIL-NEXT: mov x29, sp
15 ; CHECK-TAIL-NEXT: sub sp, sp, #32
20 ; CHECK-NOT: sub sp, sp,
23 ; CHECK-TAIL: sub sp, sp, #16
28 ; CHECK-NOT: sub sp, sp,
32 ; CHECK-TAIL: sub sp, sp, #32
37 ; CHECK-NOT: sub sp, sp
[all …]
Darm64-register-pairing.ll7 ; CHECK: stp d15, d14, [sp, #-144]!
8 ; CHECK: stp d13, d12, [sp, #16]
9 ; CHECK: stp d11, d10, [sp, #32]
10 ; CHECK: stp d9, d8, [sp, #48]
11 ; CHECK: stp x28, x27, [sp, #64]
12 ; CHECK: stp x26, x25, [sp, #80]
13 ; CHECK: stp x24, x23, [sp, #96]
14 ; CHECK: stp x22, x21, [sp, #112]
15 ; CHECK: stp x20, x19, [sp, #128]
17 ; CHECK: ldp x20, x19, [sp, #128]
[all …]
Dalloca.ll12 ; CHECK: mov [[TMP:x[0-9]+]], sp
17 ; for the final sp, but it could be if it was then moved into x0.
19 ; CHECK: mov sp, [[NEWSP]]
25 ; Make sure epilogue restores sp from fp
26 ; CHECK: {{sub|mov}} sp, x29
34 ; CHECK-DAG: sub sp, sp, [[LOCAL_STACK:#[0-9]+]]
35 ; CHECK-DAG: {{mov|add}} x29, sp
40 ; CHECK: mov [[TMP:x[0-9]+]], sp
45 ; for the final sp, but it could be if it was then moved into x0.
47 ; CHECK: mov sp, [[NEWSP]]
[all …]
Darm64-large-frame.ll14 ; CHECK: sub sp, sp, #4095, lsl #12
15 ; CHECK: sub sp, sp, #4095, lsl #12
16 ; CHECK: sub sp, sp, #1575, lsl #12
17 ; CHECK: sub sp, sp, #2576
21 ; CHECK: add [[TMP:x[0-9]+]], sp, #4095, lsl #12
29 ; CHECK: add [[TMP:x[0-9]+]], sp, #4095, lsl #12
42 ; CHECK: add sp, sp, #4095, lsl #12
43 ; CHECK: add sp, sp, #4095, lsl #12
44 ; CHECK: add sp, sp, #1575, lsl #12
45 ; CHECK: add sp, sp, #2576
[all …]
/external/pdfium/samples/fx_lpng/lpng_v163/
Dfx_pngrtran.c2433 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
2438 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2443 sp--; in png_do_unpack()
2457 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
2462 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2467 sp--; in png_do_unpack()
2480 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
2485 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2490 sp--; in png_do_unpack()
2663 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
Dfx_pngwtran.c111 png_bytep sp, dp; in png_do_pack() local
116 sp = row; in png_do_pack()
123 if (*sp != 0) in png_do_pack()
126 sp++; in png_do_pack()
148 png_bytep sp, dp; in png_do_pack() local
153 sp = row; in png_do_pack()
162 value = (png_byte)(*sp & 0x03); in png_do_pack()
176 sp++; in png_do_pack()
187 png_bytep sp, dp; in png_do_pack() local
192 sp = row; in png_do_pack()
[all …]
/external/libpng/
Dpngrtran.c2147 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local
2152 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2157 sp--; in png_do_unpack()
2171 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local
2176 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2181 sp--; in png_do_unpack()
2194 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local
2199 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2204 sp--; in png_do_unpack()
2377 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
Dpngwtran.c36 png_bytep sp, dp; in png_do_pack() local
41 sp = row; in png_do_pack()
48 if (*sp != 0) in png_do_pack()
51 sp++; in png_do_pack()
73 png_bytep sp, dp; in png_do_pack() local
78 sp = row; in png_do_pack()
87 value = (png_byte)(*sp & 0x03); in png_do_pack()
101 sp++; in png_do_pack()
112 png_bytep sp, dp; in png_do_pack() local
117 sp = row; in png_do_pack()
[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 …]
Dvfp-aliases-diagnostics.s9 fstmfdd sp!, {s0}
10 fstmead sp!, {s0}
11 fstmdbd sp!, {s0}
12 fstmiad sp!, {s0}
13 fstmfds sp!, {d0}
14 fstmeas sp!, {d0}
15 fstmdbs sp!, {d0}
16 fstmias sp!, {d0}
18 fldmias sp!, {d0}
19 fldmdbs sp!, {d0}
[all …]
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/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/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/libcxxabi/src/Unwind/
DDwarfInstructions.hpp229 pint_t *sp = stack; in evaluateExpression() local
230 *(++sp) = initialStackValue; in evaluateExpression()
234 for (pint_t *t = sp; t > stack; --t) { in evaluateExpression()
247 *(++sp) = value; in evaluateExpression()
254 value = *sp--; in evaluateExpression()
255 *(++sp) = addressSpace.getP(value); in evaluateExpression()
264 *(++sp) = value; in evaluateExpression()
273 *(++sp) = (pint_t)svalue; in evaluateExpression()
282 *(++sp) = value; in evaluateExpression()
291 *(++sp) = (pint_t)svalue; in evaluateExpression()
[all …]
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/
Dbreakpad_unittests.sym55150 STACK CFI INIT 15dc4 2 .cfa: sp 0 + .ra: lr
55151 STACK CFI INIT 15dc6 2 .cfa: sp 0 + .ra: lr
55152 STACK CFI INIT 15dc8 4 .cfa: sp 0 + .ra: lr
55153 STACK CFI INIT 15dcc 4 .cfa: sp 0 + .ra: lr
55154 STACK CFI INIT 15dd0 4 .cfa: sp 0 + .ra: lr
55155 STACK CFI INIT 15dd4 4 .cfa: sp 0 + .ra: lr
55156 STACK CFI INIT 15dd8 4 .cfa: sp 0 + .ra: lr
55157 STACK CFI INIT 15ddc 6 .cfa: sp 0 + .ra: lr
55158 STACK CFI INIT 15de2 2 .cfa: sp 0 + .ra: lr
55159 STACK CFI INIT 15dc8 4 .cfa: sp 0 + .ra: lr
[all …]
/external/valgrind/coregrind/m_syswrap/
Dsyscall-arm64-linux.S81 stp x29, x30, [sp, #-16]!
82 stp x27, x28, [sp, #-16]!
83 stp x25, x26, [sp, #-16]!
84 stp x23, x24, [sp, #-16]!
85 stp x21, x22, [sp, #-16]!
86 stp x19, x20, [sp, #-16]!
87 stp x4, x5, [sp, #-16]!
88 stp x2, x3, [sp, #-16]!
89 stp x0, x1, [sp, #-16]!
101 ldr x5, [sp, #8] /* saved x1 == guest_state */
[all …]
/external/llvm/test/CodeGen/ARM/
D2014-02-21-byval-reg-split-alignment.ll13 ; c -> sp+0..sp+7
16 ; CHECK: sub sp, sp, #12
18 ; CHECK: sub sp, sp, #4
19 ; CHECK: add [[SCRATCH:r[0-9]+]], sp, #12
21 ; CHECK: ldr r0, [sp, #24]
22 ; CHECK: ldr r1, [sp, #28]
25 ; CHECK: add sp, sp, #12
35 ; CHECK: sub sp, sp, #8
37 ; CHECK: add r0, sp, #8
38 ; CHECK: str r3, [sp, #12]
[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/CodeGen/Mips/cconv/
Dcallee-saved.ll32 ; O32: addiu $sp, $sp, -40
49 ; O32-DAG: sw [[G16:\$16]], [[OFF16:[0-9]+]]($sp)
50 ; O32-DAG: sw [[G17:\$17]], [[OFF17:[0-9]+]]($sp)
51 ; O32-DAG: sw [[G18:\$18]], [[OFF18:[0-9]+]]($sp)
52 ; O32-DAG: sw [[G19:\$19]], [[OFF19:[0-9]+]]($sp)
53 ; O32-DAG: sw [[G20:\$20]], [[OFF20:[0-9]+]]($sp)
54 ; O32-DAG: sw [[G21:\$21]], [[OFF21:[0-9]+]]($sp)
55 ; O32-DAG: sw [[G22:\$22]], [[OFF22:[0-9]+]]($sp)
56 ; O32-DAG: sw [[G23:\$23]], [[OFF23:[0-9]+]]($sp)
63 ; O32-DAG: sw [[G30:\$fp]], [[OFF30:[0-9]+]]($sp)
[all …]
/external/google-breakpad/src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/
Dtest_app.sym281 FILE 280 f:\sp\vctools\crt_bld\self_x86\crt\src\xdebug
282 FILE 281 f:\sp\vctools\crt_bld\self_x86\crt\src\streambuf
283 FILE 282 f:\sp\vctools\crt_bld\self_x86\crt\src\xiosbase
284 FILE 283 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocale
285 FILE 284 f:\sp\vctools\crt_bld\self_x86\crt\src\cstring
286 FILE 285 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
287 FILE 286 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo
288 FILE 287 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo.h
289 FILE 288 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
290 FILE 289 f:\sp\vctools\crt_bld\self_x86\crt\src\share.h
[all …]
/external/google-breakpad/src/processor/testdata/
Dmodule0.out281 FILE 280 f:\sp\vctools\crt_bld\self_x86\crt\src\xdebug
282 FILE 281 f:\sp\vctools\crt_bld\self_x86\crt\src\streambuf
283 FILE 282 f:\sp\vctools\crt_bld\self_x86\crt\src\xiosbase
284 FILE 283 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocale
285 FILE 284 f:\sp\vctools\crt_bld\self_x86\crt\src\cstring
286 FILE 285 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
287 FILE 286 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo
288 FILE 287 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo.h
289 FILE 288 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
290 FILE 289 f:\sp\vctools\crt_bld\self_x86\crt\src\share.h
[all …]
/external/llvm/test/CodeGen/XCore/
Dllvm-intrinsics.ll13 ; CHECK: ldaw r0, sp[0]
23 ; CHECK-NEXT: ldaw r0, sp[0]
33 ; CHECK: stw lr, sp[0]
34 ; CHECK-NEXT: ldw r0, sp[0]
35 ; CHECK-NEXT: ldw lr, sp[0]
45 ; CHECK-NEXT: ldw r0, sp[100]
57 ; CHECK-NEXT: ldaw r1, sp[0]
69 ; CHECK-NEXT: ldaw r1, sp[0]
86 ; CHECK-NEXT: ldaw r3, sp[0]
90 ; CHECK-NEXT: ldw r1, sp[0]
[all …]

12345678910>>...59