Home
last modified time | relevance | path

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

12345678910>>...117

/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.c227 JPEGState *sp = (JPEGState *) cinfo; /* NB: cinfo assumed first */ in TIFFjpeg_error_exit() local
231 TIFFErrorExt(sp->tif->tif_clientdata, "JPEGLib", "%s", buffer); /* display the error message */ in TIFFjpeg_error_exit()
233 LONGJMP(sp->exit_jmpbuf, 1); /* return to libtiff caller */ in TIFFjpeg_error_exit()
256 JPEGState *sp = (JPEGState *) cinfo; /* NB: cinfo assumed first */ in TIFFjpeg_progress_monitor() local
261 if (scan_no >= sp->max_allowed_scan_number) in TIFFjpeg_progress_monitor()
268 scan_no, sp->max_allowed_scan_number); in TIFFjpeg_progress_monitor()
271 LONGJMP(sp->exit_jmpbuf, 1); /* return to libtiff caller */ in TIFFjpeg_progress_monitor()
283 #define CALLJPEG(sp, fail, op) (SETJMP((sp)->exit_jmpbuf) ? (fail) : (op)) argument
284 #define CALLVJPEG(sp, op) CALLJPEG(sp, 0, ((op),1)) argument
287 TIFFjpeg_create_compress(JPEGState* sp) in TIFFjpeg_create_compress() argument
[all …]
Dtif_zip.c62 #define SAFE_MSG(sp) ((sp)->stream.msg == NULL ? "" : (sp)->stream.msg) argument
98 ZIPState* sp = DecoderState(tif); in ZIPSetupDecode() local
100 assert(sp != NULL); in ZIPSetupDecode()
103 if (sp->state & ZSTATE_INIT_ENCODE) { in ZIPSetupDecode()
104 deflateEnd(&sp->stream); in ZIPSetupDecode()
105 sp->state = 0; in ZIPSetupDecode()
111 if ((sp->state & ZSTATE_INIT_DECODE) == 0 && in ZIPSetupDecode()
112 inflateInit(&sp->stream) != Z_OK) { in ZIPSetupDecode()
113 TIFFErrorExt(tif->tif_clientdata, module, "%s", SAFE_MSG(sp)); in ZIPSetupDecode()
116 sp->state |= ZSTATE_INIT_DECODE; in ZIPSetupDecode()
[all …]
Dtif_lzw.c187 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code) argument
201 LZWCodecState* sp = DecoderState(tif); in LZWSetupDecode() local
204 if( sp == NULL ) in LZWSetupDecode()
225 sp = DecoderState(tif); in LZWSetupDecode()
228 assert(sp != NULL); in LZWSetupDecode()
230 if (sp->dec_codetab == NULL) { in LZWSetupDecode()
231 sp->dec_codetab = (code_t*)_TIFFmalloc(CSIZE*sizeof (code_t)); in LZWSetupDecode()
232 if (sp->dec_codetab == NULL) { in LZWSetupDecode()
242 sp->dec_codetab[code].value = (unsigned char)code; in LZWSetupDecode()
243 sp->dec_codetab[code].firstchar = (unsigned char)code; in LZWSetupDecode()
[all …]
Dtif_fax3.c90 #define is2DEncoding(sp) (sp->b.groupoptions & GROUP3OPT_2DENCODING) argument
101 #define DECLARE_STATE(tif, sp, mod) \ argument
103 Fax3CodecState* sp = DecoderState(tif); \
105 int lastx = sp->b.rowpixels; /* last element in row */ \
114 const unsigned char* bitmap = sp->bitmap; /* input data bit reverser */ \
116 #define DECLARE_STATE_2D(tif, sp, mod) \ argument
117 DECLARE_STATE(tif, sp, mod); \
123 #define CACHE_STATE(tif, sp) do { \ argument
124 BitAcc = sp->data; \
125 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_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 …]
/external/arm-trusted-firmware/plat/nxp/common/psci/aarch64/
Dpsci_utils.S36 stp x4, x5, [sp, #-16]!
37 stp x6, x7, [sp, #-16]!
38 stp x8, x9, [sp, #-16]!
39 stp x10, x11, [sp, #-16]!
40 stp x12, x13, [sp, #-16]!
41 stp x14, x15, [sp, #-16]!
42 stp x16, x17, [sp, #-16]!
43 stp x18, x30, [sp, #-16]!
186 ldp x18, x30, [sp], #16
187 ldp x16, x17, [sp], #16
[all …]
/external/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/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/starlark-go/starlark/
Dinterp.go84 sp := 0
117 fmt.Fprintln(os.Stderr, stack[:sp]) // very verbose!
126 stack[sp] = stack[sp-1]
127 sp++
130 stack[sp] = stack[sp-2]
131 stack[sp+1] = stack[sp-1]
132 sp += 2
135 sp--
138 stack[sp-2], stack[sp-1] = stack[sp-1], stack[sp-2]
142 y := stack[sp-1]
[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/libpng/
Dpngrtran.c2165 png_bytep sp = row + (size_t)((row_width - 1) >> 3); in png_do_unpack() local
2170 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2175 sp--; in png_do_unpack()
2189 png_bytep sp = row + (size_t)((row_width - 1) >> 2); in png_do_unpack() local
2194 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2199 sp--; in png_do_unpack()
2212 png_bytep sp = row + (size_t)((row_width - 1) >> 1); in png_do_unpack() local
2217 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2222 sp--; in png_do_unpack()
2395 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
/external/pdfium/third_party/libpng16/
Dpngrtran.c2165 png_bytep sp = row + (size_t)((row_width - 1) >> 3); in png_do_unpack() local
2170 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack()
2175 sp--; in png_do_unpack()
2189 png_bytep sp = row + (size_t)((row_width - 1) >> 2); in png_do_unpack() local
2194 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack()
2199 sp--; in png_do_unpack()
2212 png_bytep sp = row + (size_t)((row_width - 1) >> 1); in png_do_unpack() local
2217 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack()
2222 sp--; in png_do_unpack()
2395 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local
[all …]
/external/grpc-grpc/src/core/lib/iomgr/
Dtcp_server_posix.cc115 grpc_tcp_listener* sp = s->head; in finish_shutdown() local
116 s->head = sp->next; in finish_shutdown()
117 gpr_free(sp); in finish_shutdown()
147 grpc_tcp_listener* sp; in deactivated_all_ports() local
148 for (sp = s->head; sp; sp = sp->next) { in deactivated_all_ports()
149 grpc_unlink_if_unix_domain_socket(&sp->addr); in deactivated_all_ports()
150 GRPC_CLOSURE_INIT(&sp->destroyed_closure, destroyed_port, s, in deactivated_all_ports()
152 grpc_fd_orphan(sp->emfd, &sp->destroyed_closure, nullptr, in deactivated_all_ports()
170 grpc_tcp_listener* sp; in tcp_server_destroy() local
171 for (sp = s->head; sp; sp = sp->next) { in tcp_server_destroy()
[all …]
/external/arm-trusted-firmware/bl32/sp_min/
Dwa_cve_2017_5715_icache_inv.S13 add sp, sp, #1 /* Reset: 0b111 */
14 add sp, sp, #1 /* Undef: 0b110 */
15 add sp, sp, #1 /* Syscall: 0b101 */
16 add sp, sp, #1 /* Prefetch abort: 0b100 */
17 add sp, sp, #1 /* Data abort: 0b011 */
18 add sp, sp, #1 /* Reserved: 0b010 */
19 add sp, sp, #1 /* IRQ: 0b001 */
40 tst sp, #4
43 tst sp, #2
47 tst sp, #1
[all …]
Dwa_cve_2017_5715_bpiall.S13 add sp, sp, #1 /* Reset: 0b111 */
14 add sp, sp, #1 /* Undef: 0b110 */
15 add sp, sp, #1 /* Syscall: 0b101 */
16 add sp, sp, #1 /* Prefetch abort: 0b100 */
17 add sp, sp, #1 /* Data abort: 0b011 */
18 add sp, sp, #1 /* Reserved: 0b010 */
19 add sp, sp, #1 /* IRQ: 0b001 */
39 tst sp, #4
42 tst sp, #2
46 tst sp, #1
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dtcp_server_posix.cc122 grpc_tcp_listener* sp = s->head; in finish_shutdown() local
123 s->head = sp->next; in finish_shutdown()
124 gpr_free(sp); in finish_shutdown()
155 grpc_tcp_listener* sp; in deactivated_all_ports() local
156 for (sp = s->head; sp; sp = sp->next) { in deactivated_all_ports()
157 grpc_unlink_if_unix_domain_socket(&sp->addr); in deactivated_all_ports()
158 GRPC_CLOSURE_INIT(&sp->destroyed_closure, destroyed_port, s, in deactivated_all_ports()
160 grpc_fd_orphan(sp->emfd, &sp->destroyed_closure, nullptr, in deactivated_all_ports()
178 grpc_tcp_listener* sp; in tcp_server_destroy() local
179 for (sp = s->head; sp; sp = sp->next) { in tcp_server_destroy()
[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/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/libffi/src/riscv/
Dsysv.S96 mv sp, a0
136 addi sp, fp, -FRAME_LEN
161 addi sp, sp, -FRAME_LEN
165 SARG fp, FRAME_LEN - 2*PTRS(sp)
167 SARG ra, FRAME_LEN - 1*PTRS(sp)
169 addi fp, sp, FRAME_LEN
173 FSARG fa0, 0*FLTS(sp)
174 FSARG fa1, 1*FLTS(sp)
175 FSARG fa2, 2*FLTS(sp)
176 FSARG fa3, 3*FLTS(sp)
[all …]
/external/libnl/lib/xfrm/
Dsp.c72 struct xfrmnl_sp* sp = nl_object_priv (c); in xfrm_sp_alloc_data() local
74 if ((sp->sel = xfrmnl_sel_alloc ()) == NULL) in xfrm_sp_alloc_data()
77 if ((sp->lft = xfrmnl_ltime_cfg_alloc ()) == NULL) in xfrm_sp_alloc_data()
80 nl_init_list_head(&sp->usertmpl_list); in xfrm_sp_alloc_data()
87 struct xfrmnl_sp* sp = nl_object_priv (c); in xfrm_sp_free_data() local
90 if (sp == NULL) in xfrm_sp_free_data()
93 xfrmnl_sel_put (sp->sel); in xfrm_sp_free_data()
94 xfrmnl_ltime_cfg_put (sp->lft); in xfrm_sp_free_data()
96 if(sp->sec_ctx) in xfrm_sp_free_data()
98 free (sp->sec_ctx); in xfrm_sp_free_data()
[all …]

12345678910>>...117