Home
last modified time | relevance | path

Searched refs:retcode (Results 1 – 25 of 46) sorted by relevance

12

/external/jpeg/
Djdtrans.c55 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 …]
Djdapimin.c244 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 …]
Djdapistd.c55 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/
Ddict.c53 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/
Dfpdfapi_jdapimin.c244 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 …]
Dfpdfapi_jdtrans.c56 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()
Dfpdfapi_jdapistd.c56 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/
Dlint.py129 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)
Dtest.py118 retcode = process.poll()
124 if retcode == 0:
138 return retcode
173 retcode = test.Run()
174 if retcode == 0:
/external/deqp/android/scripts/
Dcommon.py102 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/
Dninfod_name.c213 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/
Dcommon.py51 retcode = subprocess.call(args)
52 if retcode != 0:
53 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
/external/libvncserver/test/
Dbmp.c82 #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/
Donyxd_if.c305 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/
Dindex.cgi263 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/
Dutils.py41 retcode = process.poll()
49 print "retcode:", retcode
/external/ppp/pppd/
Dupap.c380 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/
Dsigframe-s390x-linux.c125 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/
Drun_internal_tests.py40 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/
D2008-04-16-ReMatBug.ll31 %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/
Dm_threadstate.c90 const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode ) in VG_()
92 switch (retcode) { in VG_()
/external/libdrm/
Dxf86drmSL.c268 int retcode = 0; in drmSLLookupNeighbors() local
276 ++retcode; in drmSLLookupNeighbors()
280 ++retcode; in drmSLLookupNeighbors()
283 return retcode; in drmSLLookupNeighbors()
Dxf86drmHash.c351 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/
Dtsan_thread_wrappers_pthread.h238 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/
Dglxhash.c380 int retcode = __glxHashLookup(table, key, &retval); in check_table() local
382 switch (retcode) { in check_table()
399 retcode, key, value, retval); in check_table()

12