/external/opencv3/3rdparty/libtiff/ |
D | tif_ojpeg.c | 374 static int OJPEGReadBufferFill(OJPEGState* sp); 375 static int OJPEGReadByte(OJPEGState* sp, uint8* byte); 376 static int OJPEGReadBytePeek(OJPEGState* sp, uint8* byte); 377 static void OJPEGReadByteAdvance(OJPEGState* sp); 378 static int OJPEGReadWord(OJPEGState* sp, uint16* word); 379 static int OJPEGReadBlock(OJPEGState* sp, uint16 len, void* mem); 380 static void OJPEGReadSkip(OJPEGState* sp, uint16 len); 395 extern int jpeg_create_decompress_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo); 396 extern int jpeg_read_header_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo, uint8 require_imag… 397 extern int jpeg_start_decompress_encap(OJPEGState* sp, jpeg_decompress_struct* cinfo); [all …]
|
D | tif_jpeg.c | 215 JPEGState *sp = (JPEGState *) cinfo; /* NB: cinfo assumed first */ in TIFFjpeg_error_exit() local 219 TIFFErrorExt(sp->tif->tif_clientdata, "JPEGLib", "%s", buffer); /* display the error message */ in TIFFjpeg_error_exit() 221 LONGJMP(sp->exit_jmpbuf, 1); /* return to libtiff caller */ in TIFFjpeg_error_exit() 244 #define CALLJPEG(sp, fail, op) (SETJMP((sp)->exit_jmpbuf) ? (fail) : (op)) argument 245 #define CALLVJPEG(sp, op) CALLJPEG(sp, 0, ((op),1)) argument 248 TIFFjpeg_create_compress(JPEGState* sp) in TIFFjpeg_create_compress() argument 251 sp->cinfo.c.err = jpeg_std_error(&sp->err); in TIFFjpeg_create_compress() 252 sp->err.error_exit = TIFFjpeg_error_exit; in TIFFjpeg_create_compress() 253 sp->err.output_message = TIFFjpeg_output_message; in TIFFjpeg_create_compress() 255 return CALLVJPEG(sp, jpeg_create_compress(&sp->cinfo.c)); in TIFFjpeg_create_compress() [all …]
|
D | tif_zip.c | 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() 108 if (inflateInit(&sp->stream) != Z_OK) { in ZIPSetupDecode() 109 TIFFErrorExt(tif->tif_clientdata, module, "%s", sp->stream.msg); in ZIPSetupDecode() 112 sp->state |= ZSTATE_INIT_DECODE; in ZIPSetupDecode() 124 ZIPState* sp = DecoderState(tif); in ZIPPreDecode() local 127 assert(sp != NULL); in ZIPPreDecode() [all …]
|
D | tif_lzma.c | 112 LZMAState* sp = DecoderState(tif); in LZMASetupDecode() local 114 assert(sp != NULL); in LZMASetupDecode() 117 if (sp->state & LSTATE_INIT_ENCODE) { in LZMASetupDecode() 118 lzma_end(&sp->stream); in LZMASetupDecode() 119 sp->state = 0; in LZMASetupDecode() 122 sp->state |= LSTATE_INIT_DECODE; in LZMASetupDecode() 133 LZMAState* sp = DecoderState(tif); in LZMAPreDecode() local 137 assert(sp != NULL); in LZMAPreDecode() 139 if( (sp->state & LSTATE_INIT_DECODE) == 0 ) in LZMAPreDecode() 142 sp->stream.next_in = tif->tif_rawdata; in LZMAPreDecode() [all …]
|
D | tif_lzw.c | 188 #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 …]
|
D | tif_fax3.c | 92 #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/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 | 223 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 …]
|
D | tif_zip.c | 64 #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 …]
|
D | tif_lzw.c | 188 #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 …]
|
D | tif_fax3.c | 92 #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/icu/icu4c/source/test/intltest/ |
D | strtest.cpp | 209 StringPiece sp(abcd, -1); in TestStringPiece() local 210 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece() 213 sp=StringPiece(abcd, 5); in TestStringPiece() 214 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece() 217 sp=StringPiece(abcd, 2); in TestStringPiece() 218 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece() 222 sp=StringPiece(abcd, -1, 8); in TestStringPiece() 223 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece() 226 sp=StringPiece(abcd, 5, 8); in TestStringPiece() 227 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece() [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/llvm/test/CodeGen/AArch64/ |
D | fastcc.ll | 9 ; CHECK: mov x29, sp 10 ; CHECK: str w{{[0-9]+}}, [sp, #-32]! 13 ; CHECK-TAIL: stp x29, x30, [sp, #-16]! 14 ; CHECK-TAIL-NEXT: mov x29, sp 15 ; CHECK-TAIL: str w{{[0-9]+}}, [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 …]
|
D | arm64-register-pairing.ll | 7 ; 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 …]
|
/external/pdfium/third_party/lpng_v163/ |
D | pngrtran.c | 2433 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 …]
|
/external/opencv3/3rdparty/libpng/ |
D | pngrtran.c | 2392 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local 2397 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack() 2402 sp--; in png_do_unpack() 2416 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local 2421 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack() 2426 sp--; in png_do_unpack() 2439 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local 2444 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack() 2449 sp--; in png_do_unpack() 2622 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local [all …]
|
/external/libpng/ |
D | pngrtran.c | 2151 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/llvm/test/MC/ARM/ |
D | vfp-aliases.s | 8 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 …]
|
D | vfp-aliases-diagnostics.s | 9 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 …]
|
/external/icu/icu4c/source/tools/tzcode/ |
D | localtime.c | 144 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/ |
D | sp_quad_pipe.c | 35 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/libunwind_llvm/src/ |
D | DwarfInstructions.hpp | 229 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/valgrind/coregrind/m_syswrap/ |
D | syscall-arm64-linux.S | 82 stp x29, x30, [sp, #-16]! 83 stp x27, x28, [sp, #-16]! 84 stp x25, x26, [sp, #-16]! 85 stp x23, x24, [sp, #-16]! 86 stp x21, x22, [sp, #-16]! 87 stp x19, x20, [sp, #-16]! 88 stp x4, x5, [sp, #-16]! 89 stp x2, x3, [sp, #-16]! 90 stp x0, x1, [sp, #-16]! 102 ldr x5, [sp, #8] /* saved x1 == guest_state */ [all …]
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/ |
D | breakpad_unittests.sym | 55150 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 …]
|