/external/jpeg/ |
D | jdtrans.c | 55 int retcode; in jpeg_read_coefficients() local 60 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_read_coefficients() 61 if (retcode == JPEG_SUSPENDED) in jpeg_read_coefficients() 63 if (retcode == JPEG_REACHED_EOI) in jpeg_read_coefficients() 67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_read_coefficients() 106 int retcode = 0; in jpeg_build_huffman_index_progressive() local 116 retcode = (*cinfo->inputctl->consume_input_build_huffman_index) in jpeg_build_huffman_index_progressive() 118 if (retcode == JPEG_REACHED_EOI) in jpeg_build_huffman_index_progressive() 125 retcode = (*cinfo->inputctl->consume_input_build_huffman_index) in jpeg_build_huffman_index_progressive() 128 if (retcode == JPEG_SUSPENDED) in jpeg_build_huffman_index_progressive() [all …]
|
D | jdapimin.c | 244 int retcode; in jpeg_read_header() local 250 retcode = jpeg_consume_input(cinfo); in jpeg_read_header() 252 switch (retcode) { in jpeg_read_header() 254 retcode = JPEG_HEADER_OK; in jpeg_read_header() 264 retcode = JPEG_HEADER_TABLES_ONLY; in jpeg_read_header() 271 return retcode; in jpeg_read_header() 290 int retcode = JPEG_SUSPENDED; in jpeg_consume_input() local 302 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_consume_input() 303 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */ in jpeg_consume_input() 312 retcode = JPEG_REACHED_SOS; in jpeg_consume_input() [all …]
|
D | jdapistd.c | 55 int retcode; in jpeg_start_decompress() local 60 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_start_decompress() 61 if (retcode == JPEG_SUSPENDED) in jpeg_start_decompress() 63 if (retcode == JPEG_REACHED_EOI) in jpeg_start_decompress() 67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_start_decompress()
|
/external/ppp/pppd/plugins/radius/ |
D | dict.c | 53 int retcode; in rc_read_dictionary() local 62 retcode = 0; in rc_read_dictionary() 78 retcode = -1; in rc_read_dictionary() 85 retcode = -1; in rc_read_dictionary() 92 retcode = -1; in rc_read_dictionary() 113 retcode = -1; in rc_read_dictionary() 124 retcode = -1; in rc_read_dictionary() 132 retcode = -1; in rc_read_dictionary() 140 retcode = -1; in rc_read_dictionary() 165 retcode = -1; in rc_read_dictionary() [all …]
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
D | fpdfapi_jdapimin.c | 244 int retcode; in jpeg_read_header() local 250 retcode = jpeg_consume_input(cinfo); in jpeg_read_header() 252 switch (retcode) { in jpeg_read_header() 254 retcode = JPEG_HEADER_OK; in jpeg_read_header() 264 retcode = JPEG_HEADER_TABLES_ONLY; in jpeg_read_header() 271 return retcode; in jpeg_read_header() 290 int retcode = JPEG_SUSPENDED; in jpeg_consume_input() local 302 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_consume_input() 303 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */ in jpeg_consume_input() 312 retcode = JPEG_REACHED_SOS; in jpeg_consume_input() [all …]
|
D | fpdfapi_jdtrans.c | 56 int retcode; in jpeg_read_coefficients() local 61 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_read_coefficients() 62 if (retcode == JPEG_SUSPENDED) in jpeg_read_coefficients() 64 if (retcode == JPEG_REACHED_EOI) in jpeg_read_coefficients() 68 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_read_coefficients()
|
D | fpdfapi_jdapistd.c | 56 int retcode; in jpeg_start_decompress() local 61 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_start_decompress() 62 if (retcode == JPEG_SUSPENDED) in jpeg_start_decompress() 64 if (retcode == JPEG_REACHED_EOI) in jpeg_start_decompress() 68 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_start_decompress()
|
/external/vixl/tools/ |
D | lint.py | 129 retcode = process.poll() 143 if retcode != None: break; 145 if retcode == 0: 184 retcode, unused_output = util.getstatusoutput('which cpplint.py') 185 return retcode == 0 203 retcode = LintFiles(default_tracked_files, variable 205 sys.exit(retcode)
|
D | test.py | 118 retcode = process.poll() 124 if retcode == 0: 138 return retcode 173 retcode = test.Run() 174 if retcode == 0:
|
/external/deqp/android/scripts/ |
D | common.py | 102 retcode = subprocess.call(args) 103 if retcode != 0: 104 raise Exception("Failed to execute '%s', got %d" % (commandLine, retcode)) 109 retcode = subprocess.call(args) 110 if retcode != 0: 111 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode)) 127 retcode = process.wait() 128 if retcode != 0: 129 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
|
/external/iputils/ninfod/ |
D | ninfod_name.c | 213 int done = 0, retcode = 0; in compare_dnsname() local 230 return retcode; /* truncated */ in compare_dnsname() 239 retcode = 1; // trunc in compare_dnsname() 246 retcode = 1; in compare_dnsname() 250 retcode = 1; in compare_dnsname() 258 return retcode; in compare_dnsname()
|
/external/deqp/scripts/build/ |
D | common.py | 51 retcode = subprocess.call(args) 52 if retcode != 0: 53 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
|
/external/libvncserver/test/ |
D | bmp.c | 82 #define _throw(m) {__bmperr=m; retcode=-1; goto finally;} 84 #define _catch(f) {if((f)==-1) {retcode=-1; goto finally;}} 114 FILE *fs=NULL; int retcode=0, scalefactor, dstpitch; in loadppm() local 174 return retcode; in loadppm() 182 retcode=0; in loadbmp() local 269 return retcode; in loadbmp() 279 FILE *fs=NULL; int retcode=0; in saveppm() local 298 return retcode; in saveppm() 304 int fd=-1, byteswritten, dstpitch, retcode=0; in savebmp() local 392 return retcode; in savebmp()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | onyxd_if.c | 305 int retcode = -1; in vp8dx_receive_compressed_data() local 309 retcode = check_fragments_for_errors(pbi); in vp8dx_receive_compressed_data() 310 if(retcode <= 0) in vp8dx_receive_compressed_data() 311 return retcode; in vp8dx_receive_compressed_data() 337 retcode = vp8_decode_frame(pbi); in vp8dx_receive_compressed_data() 339 if (retcode < 0) in vp8dx_receive_compressed_data() 390 return retcode; in vp8dx_receive_compressed_data()
|
/external/clang/www/demo/ |
D | index.cgi | 263 my $retcode = 0; 268 $retcode = system($commandline); 278 if ( WIFEXITED($retcode) && WEXITSTATUS($retcode) != 0 ) { 285 if ( WIFSIGNALED($retcode) != 0 ) { 286 my $sig = WTERMSIG($retcode);
|
/external/lldb/examples/customization/pwd-cd-and-system/ |
D | utils.py | 41 retcode = process.poll() 49 print "retcode:", retcode
|
/external/ppp/pppd/ |
D | upap.c | 380 int retcode; local 425 retcode = check_passwd(u->us_unit, ruser, ruserlen, rpasswd, 434 if (retcode == UPAP_AUTHACK) { 437 retcode = UPAP_AUTHNAK; /* XXX exit value will be "wrong" */ 445 upap_sresp(u, retcode, id, msg, msglen); 450 if (retcode == UPAP_AUTHACK) {
|
/external/valgrind/coregrind/m_sigframe/ |
D | sigframe-s390x-linux.c | 125 UChar retcode[S390_SYSCALL_SIZE]; member 133 UChar retcode[S390_SYSCALL_SIZE]; member 316 frame->retcode[0] = 0x0a; in build_sigframe() 317 frame->retcode[1] = __NR_sigreturn; in build_sigframe() 370 frame->retcode[0] = 0; in build_rt_sigframe() 371 frame->retcode[1] = 0; in build_rt_sigframe() 374 frame->retcode[0] = 0x0a; in build_rt_sigframe() 375 frame->retcode[1] = __NR_rt_sigreturn; in build_rt_sigframe()
|
/external/deqp/scripts/ |
D | run_internal_tests.py | 40 retcode = subprocess.call(args) 42 if retcode != 0: 43 raise Exception("Failed to execute %s, got %d" % (str(args), retcode))
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-04-16-ReMatBug.ll | 31 %retcode.0 = phi i16 [ -2, %bb28 ], [ %tmp113, %bb92 ] ; <i16> [#uses=2] 34 %tmp157158 = sext i16 %retcode.0 to i32 ; <i32> [#uses=1] 39 ret i16 %retcode.0
|
/external/valgrind/coregrind/ |
D | m_threadstate.c | 90 const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode ) in VG_() 92 switch (retcode) { in VG_()
|
/external/libdrm/ |
D | xf86drmSL.c | 268 int retcode = 0; in drmSLLookupNeighbors() local 276 ++retcode; in drmSLLookupNeighbors() 280 ++retcode; in drmSLLookupNeighbors() 283 return retcode; in drmSLLookupNeighbors()
|
D | xf86drmHash.c | 351 int retcode = drmHashLookup(table, key, &retval); in check_table() local 353 switch (retcode) { in check_table() 370 retcode, key, value, retval); in check_table()
|
/external/valgrind/drd/tests/ |
D | tsan_thread_wrappers_pthread.h | 238 int retcode = 0; in WaitLoopWithTimeout() local 243 while (cond.Eval() == false && retcode == 0) { in WaitLoopWithTimeout() 244 retcode = pthread_cond_timedwait(&cv_, &mu_, &timeout); in WaitLoopWithTimeout() 246 if(retcode == 0) { in WaitLoopWithTimeout()
|
/external/mesa3d/src/glx/ |
D | glxhash.c | 380 int retcode = __glxHashLookup(table, key, &retval); in check_table() local 382 switch (retcode) { in check_table() 399 retcode, key, value, retval); in check_table()
|