/external/vixl/test/aarch32/ |
D | test-assembler-cond-sp-sp-operand-imm7-t32.cc | 97 {{{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 …]
|
D | test-assembler-cond-rd-sp-operand-imm8-t32.cc | 95 {{{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/ |
D | tif_ojpeg.c | 383 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 …]
|
D | tif_jpeg.c | 227 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 …]
|
D | tif_zip.c | 62 #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 …]
|
D | tif_lzw.c | 187 #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 …]
|
/external/u-boot/arch/nios2/cpu/ |
D | exceptions.S | 23 addi sp, sp, -(33*4) 24 stw r0, 0(sp) 25 stw r1, 4(sp) 26 stw r2, 8(sp) 27 stw r3, 12(sp) 28 stw r4, 16(sp) 29 stw r5, 20(sp) 30 stw r6, 24(sp) 31 stw r7, 28(sp) 32 stw r8, 32(sp) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/ |
D | interrupt-attr.ll | 56 ; CHECK-RV32-NEXT: addi sp, sp, -64 57 ; CHECK-RV32-NEXT: sw ra, 60(sp) 58 ; CHECK-RV32-NEXT: sw t0, 56(sp) 59 ; CHECK-RV32-NEXT: sw t1, 52(sp) 60 ; CHECK-RV32-NEXT: sw t2, 48(sp) 61 ; CHECK-RV32-NEXT: sw a0, 44(sp) 62 ; CHECK-RV32-NEXT: sw a1, 40(sp) 63 ; CHECK-RV32-NEXT: sw a2, 36(sp) 64 ; CHECK-RV32-NEXT: sw a3, 32(sp) 65 ; CHECK-RV32-NEXT: sw a4, 28(sp) [all …]
|
D | double-arith.ll | 8 ; RV32IFD-NEXT: addi sp, sp, -16 9 ; RV32IFD-NEXT: sw a2, 8(sp) 10 ; RV32IFD-NEXT: sw a3, 12(sp) 11 ; RV32IFD-NEXT: fld ft0, 8(sp) 12 ; RV32IFD-NEXT: sw a0, 8(sp) 13 ; RV32IFD-NEXT: sw a1, 12(sp) 14 ; RV32IFD-NEXT: fld ft1, 8(sp) 16 ; RV32IFD-NEXT: fsd ft0, 8(sp) 17 ; RV32IFD-NEXT: lw a0, 8(sp) 18 ; RV32IFD-NEXT: lw a1, 12(sp) [all …]
|
D | atomic-cmpxchg.ll | 8 ; RV32I-NEXT: addi sp, sp, -16 9 ; RV32I-NEXT: sw ra, 12(sp) 10 ; RV32I-NEXT: sb a1, 11(sp) 11 ; RV32I-NEXT: addi a1, sp, 11 15 ; RV32I-NEXT: lw ra, 12(sp) 16 ; RV32I-NEXT: addi sp, sp, 16 25 ; RV32I-NEXT: addi sp, sp, -16 26 ; RV32I-NEXT: sw ra, 12(sp) 27 ; RV32I-NEXT: sb a1, 11(sp) 28 ; RV32I-NEXT: addi a1, sp, 11 [all …]
|
D | double-fcmp.ll | 18 ; RV32IFD-NEXT: addi sp, sp, -16 19 ; RV32IFD-NEXT: sw a2, 8(sp) 20 ; RV32IFD-NEXT: sw a3, 12(sp) 21 ; RV32IFD-NEXT: fld ft0, 8(sp) 22 ; RV32IFD-NEXT: sw a0, 8(sp) 23 ; RV32IFD-NEXT: sw a1, 12(sp) 24 ; RV32IFD-NEXT: fld ft1, 8(sp) 26 ; RV32IFD-NEXT: addi sp, sp, 16 36 ; RV32IFD-NEXT: addi sp, sp, -16 37 ; RV32IFD-NEXT: sw a0, 8(sp) [all …]
|
D | atomic-load-store.ll | 10 ; RV32I-NEXT: addi sp, sp, -16 11 ; RV32I-NEXT: sw ra, 12(sp) 14 ; RV32I-NEXT: lw ra, 12(sp) 15 ; RV32I-NEXT: addi sp, sp, 16 29 ; RV32I-NEXT: addi sp, sp, -16 30 ; RV32I-NEXT: sw ra, 12(sp) 33 ; RV32I-NEXT: lw ra, 12(sp) 34 ; RV32I-NEXT: addi sp, sp, 16 48 ; RV32I-NEXT: addi sp, sp, -16 49 ; RV32I-NEXT: sw ra, 12(sp) [all …]
|
D | double-select-fcmp.ll | 19 ; RV32IFD-NEXT: addi sp, sp, -16 20 ; RV32IFD-NEXT: sw a2, 8(sp) 21 ; RV32IFD-NEXT: sw a3, 12(sp) 22 ; RV32IFD-NEXT: fld ft0, 8(sp) 23 ; RV32IFD-NEXT: sw a0, 8(sp) 24 ; RV32IFD-NEXT: sw a1, 12(sp) 25 ; RV32IFD-NEXT: fld ft1, 8(sp) 31 ; RV32IFD-NEXT: fsd ft1, 8(sp) 32 ; RV32IFD-NEXT: lw a0, 8(sp) 33 ; RV32IFD-NEXT: lw a1, 12(sp) [all …]
|
/external/u-boot/arch/riscv/cpu/ |
D | mtrap.S | 33 addi sp, sp, -32 * REGBYTES 34 SREG x1, 1 * REGBYTES(sp) 35 SREG x2, 2 * REGBYTES(sp) 36 SREG x3, 3 * REGBYTES(sp) 37 SREG x4, 4 * REGBYTES(sp) 38 SREG x5, 5 * REGBYTES(sp) 39 SREG x6, 6 * REGBYTES(sp) 40 SREG x7, 7 * REGBYTES(sp) 41 SREG x8, 8 * REGBYTES(sp) 42 SREG x9, 9 * REGBYTES(sp) [all …]
|
/external/u-boot/arch/mips/lib/ |
D | genex.S | 24 LONG_S $1, PT_R1(sp) 33 LONG_S $8, PT_R8(sp) 34 LONG_S $9, PT_R9(sp) 36 LONG_S $10, PT_R10(sp) 37 LONG_S $11, PT_R11(sp) 38 LONG_S $12, PT_R12(sp) 40 LONG_S v1, PT_HI(sp) 43 LONG_S $13, PT_R13(sp) 44 LONG_S $14, PT_R14(sp) 45 LONG_S $15, PT_R15(sp) [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | fastcc.ll | 10 ; 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 …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/ |
D | armv8.1a-lse.s | 10 cas w2, w3, [sp] 12 casa w2, w3, [sp] 14 casl w2, w3, [sp] 16 casal w2, w3, [sp] 27 casb w2, w3, [sp] 29 cash w2, w3, [sp] 31 casab w2, w3, [sp] 33 caslb w2, w3, [sp] 44 casalb w2, w3, [sp] 46 casah w2, w3, [sp] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | fastcc.ll | 10 ; 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, 24 ; CHECK-NOT: [sp, #{{[-0-9]+}}]! 25 ; CHECK-NOT: [sp], #{{[-0-9]+}} [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_surface.c | 37 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/python/cpython2/Modules/_ctypes/libffi/src/arm/ |
D | trampoline.S | 34 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/libffi/src/arm/ |
D | trampoline.S | 34 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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/ |
D | interrupt-attr.ll | 6 ; 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/llvm/test/CodeGen/Mips/ |
D | interrupt-attr.ll | 6 ; 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/arm-trusted-firmware/bl32/sp_min/ |
D | wa_cve_2017_5715_icache_inv.S | 13 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 …]
|
D | wa_cve_2017_5715_bpiall.S | 13 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 …]
|