HomeSort by relevance Sort by last modified time
    Searched refs:rc (Results 26 - 50 of 1226) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/srec/shared/src/
SessionTypeImpl.c 43 ESR_ReturnCode rc; local
59 rc = ESR_OUT_OF_MEMORY;
105 CHK(rc, HashMapCreate(&data->value));
106 CHK(rc, ArrayListCreate(&data->listeners));
111 return rc;
126 ESR_ReturnCode rc; local
128 CHK(rc, HashMapGet(data->value, name, (void **)&pair));
138 return rc;
144 ESR_ReturnCode rc; local
149 CHK(rc, HashMapGet(data->value, name, (void **)&pair))
164 ESR_ReturnCode rc; local
185 ESR_ReturnCode rc; local
205 ESR_ReturnCode rc; local
225 ESR_ReturnCode rc; local
247 ESR_ReturnCode rc; local
289 ESR_ReturnCode rc; local
309 ESR_ReturnCode rc; local
454 ESR_ReturnCode rc; local
468 ESR_ReturnCode rc; local
482 ESR_ReturnCode rc; local
496 ESR_ReturnCode rc; local
510 ESR_ReturnCode rc; local
524 ESR_ReturnCode rc; local
537 ESR_ReturnCode rc; local
553 ESR_ReturnCode rc; local
583 ESR_ReturnCode rc; local
672 ESR_ReturnCode rc; local
684 ESR_ReturnCode rc; local
697 ESR_ReturnCode rc; local
723 ESR_ReturnCode rc; local
749 ESR_ReturnCode rc; local
775 ESR_ReturnCode rc; local
801 ESR_ReturnCode rc; local
854 ESR_ReturnCode rc = ESR_SUCCESS; local
1018 ESR_ReturnCode rc; local
1051 ESR_ReturnCode rc; local
1071 ESR_ReturnCode rc; local
1158 ESR_ReturnCode rc; local
1353 ESR_ReturnCode rc; local
1365 ESR_ReturnCode rc; local
1378 ESR_ReturnCode rc; local
    [all...]
  /external/clang/test/SemaCXX/
PR5086-ambig-resolution-enum.cpp 11 void foo(const C& rc) {
13 const char *p = rc.fun1(BUFLEN - 2, C::e1);
  /external/dnsmasq/contrib/slackware-dnsmasq/
doinst.sh.gz 
  /external/chromium_org/third_party/sqlite/src/src/
legacy.c 37 int rc = SQLITE_OK; /* Return code */ local
49 while( (rc==SQLITE_OK || (rc==SQLITE_SCHEMA && (++nRetry)<2)) && zSql[0] ){
54 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
55 assert( rc==SQLITE_OK || pStmt==0 );
56 if( rc!=SQLITE_OK ){
70 rc = sqlite3_step(pStmt);
73 if( xCallback && (SQLITE_ROW==rc ||
74 (SQLITE_DONE==rc && !callbackIsInit
89 if( rc==SQLITE_ROW )
    [all...]
vacuum.c 26 int rc; local
27 rc = sqlite3VdbeFinalize((Vdbe*)pStmt);
28 if( rc ){
31 return rc;
39 VVA_ONLY( int rc; )
47 VVA_ONLY( rc = ) sqlite3_step(pStmt);
48 assert( rc!=SQLITE_ROW );
58 int rc; local
60 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
61 if( rc!=SQLITE_OK ) return rc
96 int rc = SQLITE_OK; \/* Return code from service routines *\/ local
    [all...]
prepare.c 37 pData->rc = db->mallocFailed ? SQLITE_NOMEM : SQLITE_CORRUPT_BKPT;
76 int rc; local
85 rc = db->errCode;
86 assert( (rc&0xFF)==(rcp&0xFF) );
88 if( SQLITE_OK!=rc ){
92 pData->rc = rc;
93 if( rc==SQLITE_NOMEM ){
95 }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED )
135 int rc; local
384 int i, rc; local
425 int rc = SQLITE_OK; local
447 int rc; local
532 int rc = SQLITE_OK; \/* Result code *\/ local
690 int rc; local
717 int rc; local
760 int rc; local
772 int rc; local
797 int rc = SQLITE_OK; local
840 int rc; local
852 int rc; local
    [all...]
  /external/srec/portable/include/
plog.h 257 #define CHKLOG(rc, function) do { rc = (function); if (rc != ESR_SUCCESS) { PLogError("%s in %s:%d", ESR_rc2str(rc), __FILE__, __LINE__); goto CLEANUP; } } while (0)
262 * @param rc Used to store the function return value
266 #define PLOG_CHKRC_ARGS(rc, function, args) do { if((rc = (function args)) != ESR_SUCCESS) { PLogError(ESR_rc2str(rc)); return rc; } } while (0)
272 #define PLOG_CHKRC(rc, function) do { rc = (function); if (rc != ESR_SUCCESS) { PLogError(rc); return rc; } } while (0
    [all...]
  /external/valgrind/main/tests/
check_makefile_consistency 60 rc=0
71 rc=0
83 rc=1
93 rc=1
101 rc=1
109 rc=1
113 [ $rc = 0 ]
116 rc=1
118 [ $rc = 0 ]
121 rc=
    [all...]
  /external/dropbear/debian/
dropbear.prerm 6 if test -x /usr/sbin/invoke-rc.d; then
7 invoke-rc.d dropbear stop
  /external/libexif/test/
test-sorted.c 31 int rc = 0; local
40 rc = 1;
44 rc = 1;
49 return rc;
  /external/valgrind/main/drd/tests/
run_openmp_test 28 rc="$(nm "${libgomp_path}" 2>&1 \
40 exit ${rc:-1}
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 106 int32_t rc = -1; local
111 return rc;
119 return rc;
121 rc = mm_jpeg_start_job(g_jpeg_obj, job, job_id);
123 return rc;
144 int32_t rc = -1; local
148 return rc;
156 return rc;
159 rc = mm_jpeg_create_session(g_jpeg_obj, client_hdl, p_params, p_session_id);
161 return rc;
178 int32_t rc = -1; local
212 int32_t rc = -1; local
246 int32_t rc = -1; local
290 int32_t rc = 0; local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 106 int32_t rc = -1; local
111 return rc;
119 return rc;
121 rc = mm_jpeg_start_job(g_jpeg_obj, job, job_id);
123 return rc;
144 int32_t rc = -1; local
148 return rc;
156 return rc;
159 rc = mm_jpeg_create_session(g_jpeg_obj, client_hdl, p_params, p_session_id);
161 return rc;
178 int32_t rc = -1; local
212 int32_t rc = -1; local
246 int32_t rc = -1; local
290 int32_t rc = 0; local
    [all...]
  /external/chromium_org/third_party/opus/src/silk/float/
LPC_inv_pred_gain_FLP.c 46 double invGain, rc, rc_mult1, rc_mult2; local
55 rc = -Anew[ k ];
56 if( rc > RC_THRESHOLD || rc < -RC_THRESHOLD ) {
59 rc_mult1 = 1.0f - rc * rc;
66 Anew[ n ] = (silk_float)( ( Aold[ n ] - Aold[ k - n - 1 ] * rc ) * rc_mult2 );
69 rc = -Anew[ 0 ];
70 if( rc > RC_THRESHOLD || rc < -RC_THRESHOLD )
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 70 int32_t rc = -1; local
76 return rc;
84 return rc;
87 rc = mm_jpeg_start_job(g_jpeg_obj, client_hdl, job, jobId);
89 return rc;
94 int32_t rc = -1; local
98 return rc;
106 return rc;
109 rc = mm_jpeg_abort_job(g_jpeg_obj, client_hdl, jobId);
111 return rc;
116 int32_t rc = -1; local
149 int32_t rc = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_frag.c 81 #define INIT_COMBINER(chan, ctx, rc, i) do { \
84 (rc)->ctx = ctx; \
85 (rc)->unit = i; \
86 (rc)->premodulate = c->_NumArgs##chan == 4; \
87 (rc)->mode = c->Mode##chan; \
88 (rc)->source = c->Source##chan; \
89 (rc)->operand = c->Operand##chan; \
90 (rc)->logscale = c->ScaleShift##chan; \
91 (rc)->in = (rc)->out = 0;
333 struct combiner_state rc = {}; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_frag.c 81 #define INIT_COMBINER(chan, ctx, rc, i) do { \
84 (rc)->ctx = ctx; \
85 (rc)->unit = i; \
86 (rc)->premodulate = c->_NumArgs##chan == 4; \
87 (rc)->mode = c->Mode##chan; \
88 (rc)->source = c->Source##chan; \
89 (rc)->operand = c->Operand##chan; \
90 (rc)->logscale = c->ScaleShift##chan; \
91 (rc)->in = (rc)->out = 0;
333 struct combiner_state rc = {}; local
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_rdi.c 54 int rc = MM_CAMERA_OK; local
66 return rc;
71 int rc = MM_CAMERA_OK; local
76 return rc;
79 if (MM_CAMERA_OK != (rc = stopPreview(cam_id))) {
80 CDBG_ERROR("%s:Stop preview err=%d\n", __func__, rc);
85 CDBG("%s: END, rc=%d\n", __func__, rc);
86 return rc;
99 int rc; local
124 int rc = MM_CAMERA_OK; local
189 int rc = MM_CAMERA_OK; local
195 int rc = MM_CAMERA_OK; local
221 int rc = MM_CAMERA_OK; local
250 int rc = MM_CAMERA_OK; local
291 int rc = MM_CAMERA_OK; local
320 int rc = MM_CAMERA_OK; local
    [all...]
  /external/srec/srec/Semproc/src/
SemanticResultImpl.c 32 ESR_ReturnCode rc; local
52 rc = HashMapCreate(&impl->results);
53 if (rc != ESR_SUCCESS)
59 return rc;
65 ESR_ReturnCode rc; local
67 CHKLOG(rc, impl->results->getSize(impl->results, count));
70 return rc;
77 ESR_ReturnCode rc; local
80 CHKLOG(rc, HashMapGetSize(impl->results, &size));
96 CHKLOG(rc, HashMapGetKeyAtIndex(impl->results, i, &theKey))
108 ESR_ReturnCode rc; local
126 ESR_ReturnCode rc = ESR_SUCCESS; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 507 int rc = sqlite3_exec(db, zCommand, NULL, 0, NULL); local
509 return rc;
515 int rc = sqlite3_prepare(db, zCommand, -1, ppStmt, NULL); local
517 return rc;
600 int rc = sql_prepare(v->db, v->zName, &v->pFulltextStatements[iStmt], local
602 if( rc!=SQLITE_OK ) return rc;
604 int rc = sqlite3_reset(v->pFulltextStatements[iStmt]); local
605 if( rc!=SQLITE_OK ) return rc;
620 int rc; local
659 int rc = sql_step_statement(v, iStmt, ppStmt); local
667 int rc = sql_get_statement(v, CONTENT_INSERT_STMT, &s); local
684 int rc = sql_get_statement(v, CONTENT_SELECT_STMT, &s); local
707 int rc = sql_get_statement(v, CONTENT_DELETE_STMT, &s); local
724 int rc = sql_get_statement(v, TERM_SELECT_STMT, &s); local
753 int rc = sql_get_statement(v, TERM_CHUNK_SELECT_STMT, &s); local
786 int rc = sql_get_statement(v, TERM_INSERT_STMT, &s); local
805 int rc = sql_get_statement(v, TERM_UPDATE_STMT, &s); local
820 int rc = sql_get_statement(v, TERM_DELETE_STMT, &s); local
857 int rc; local
903 int rc; local
971 int rc = sql_exec(v->db, v->zName, local
1002 int rc; local
1046 int rc; local
1070 int rc; local
1144 int rc = pModule->xOpen(pTokenizer, zQuery, -1, &pCursor); local
1201 int rc = parse_query(v, zQuery, &q); local
1232 int rc; local
1295 int rc = pTokenizer->pModule->xOpen(pTokenizer, zText, -1, &pCursor); local
1337 int rc = term_chunk_select(v, zTerm, nTerm, iDocid, &iFirst); local
1380 int rc = content_insert(v, pRequestRowid, zText, -1); local
1409 int rc = term_chunk_select(v, zTerm, nTerm, iDocid, &iFirst); local
1432 int rc = content_select(v, iRow, &zText); local
    [all...]
  /external/srec/portable/src/
PANSIFileSystemImpl.c 48 ESR_ReturnCode rc; local
63 CHKLOG(rc, PHashTableCreate(NULL, MTAG, &impl->directoryMap));
67 return rc;
77 ESR_ReturnCode rc; local
81 CHKLOG(rc, PHashTableEntryGetFirst(impl->directoryMap, &entry));
84 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)&value));
86 CHKLOG(rc, PHashTableEntryAdvance(&entry));
87 CHKLOG(rc, PHashTableEntryRemove(oldEntry));
88 CHKLOG(rc, PHashTableRemoveValue(PFileSystemPathMap, key, NULL));
92 CHKLOG(rc, PHashTableDestroy(impl->directoryMap))
107 ESR_ReturnCode rc; local
186 ESR_ReturnCode rc; local
219 ESR_ReturnCode rc; local
274 ESR_ReturnCode rc; local
291 ESR_ReturnCode rc; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 62 int rc = MM_CAMERA_OK; local
91 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
92 if (MM_CAMERA_OK != rc) {
93 CDBG_ERROR("%s:config preview stream err=%d\n", __func__, rc);
131 int rc = MM_CAMERA_OK; local
157 rc = mm_app_start_channel(test_obj, p_ch);
158 if (MM_CAMERA_OK != rc) {
159 CDBG_ERROR("%s:start preview failed rc=%d\n", __func__, rc);
163 return rc;
171 int rc = MM_CAMERA_OK; local
200 int rc = MM_CAMERA_OK; local
215 int rc = MM_CAMERA_OK; local
230 int rc = MM_CAMERA_OK; local
245 int rc = MM_CAMERA_OK; local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 62 int rc = MM_CAMERA_OK; local
91 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
92 if (MM_CAMERA_OK != rc) {
93 CDBG_ERROR("%s:config preview stream err=%d\n", __func__, rc);
131 int rc = MM_CAMERA_OK; local
157 rc = mm_app_start_channel(test_obj, p_ch);
158 if (MM_CAMERA_OK != rc) {
159 CDBG_ERROR("%s:start preview failed rc=%d\n", __func__, rc);
163 return rc;
171 int rc = MM_CAMERA_OK; local
200 int rc = MM_CAMERA_OK; local
215 int rc = MM_CAMERA_OK; local
230 int rc = MM_CAMERA_OK; local
245 int rc = MM_CAMERA_OK; local
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 68 ESR_ReturnCode rc; local
72 /* CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_acoustic_models", 2)); */
73 CHKLOG(rc, ESR_SessionSetBoolIfEmpty("CREC.Recognizer.partial_results", ESR_FALSE));
74 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.NBest", 1));
75 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.eou_threshold", 100));
76 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_altword_tokens", 400));
77 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_frames", 1000));
78 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_fsm_arcs", 3000));
79 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_fsm_nodes", 3000));
80 CHKLOG(rc, ESR_SessionSetIntIfEmpty("CREC.Recognizer.max_fsmnode_tokens", 1000))
111 ESR_ReturnCode rc; local
368 ESR_ReturnCode rc; local
514 ESR_ReturnCode rc; local
581 ESR_ReturnCode rc; local
616 ESR_ReturnCode rc; local
801 ESR_ReturnCode rc; local
936 ESR_ReturnCode rc; local
984 ESR_ReturnCode rc; local
1066 ESR_ReturnCode rc; local
1284 ESR_ReturnCode rc; local
1340 ESR_ReturnCode rc; local
1368 ESR_ReturnCode rc; local
1395 ESR_ReturnCode rc; local
1406 ESR_ReturnCode rc; local
1429 ESR_ReturnCode rc; local
1468 ESR_ReturnCode rc; local
1509 ESR_ReturnCode rc; local
1531 ESR_ReturnCode rc; local
1552 ESR_ReturnCode rc; local
1639 ESR_ReturnCode rc; local
1657 ESR_ReturnCode rc; local
1671 ESR_ReturnCode rc; local
1720 ESR_ReturnCode rc; local
1799 ESR_ReturnCode rc; local
1845 ESR_ReturnCode rc; local
1989 ESR_ReturnCode rc; local
2606 ESR_ReturnCode rc; local
2662 ESR_ReturnCode rc; local
2788 ESR_ReturnCode rc; local
2897 ESR_ReturnCode rc; local
2988 ESR_ReturnCode rc; local
3084 ESR_ReturnCode rc; local
3259 ESR_ReturnCode rc; local
3424 ESR_ReturnCode rc; local
3434 ESR_ReturnCode rc; local
3444 ESR_ReturnCode rc; local
3454 ESR_ReturnCode rc; local
3478 ESR_ReturnCode rc; local
3495 ESR_ReturnCode rc; local
3540 ESR_ReturnCode rc; local
3558 ESR_ReturnCode rc; local
3576 ESR_ReturnCode rc; local
3594 ESR_ReturnCode rc; local
3612 ESR_ReturnCode rc; local
3630 ESR_ReturnCode rc; local
3652 ESR_ReturnCode rc; local
3768 ESR_ReturnCode rc; local
3810 ESR_ReturnCode rc; local
3883 ESR_ReturnCode rc; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/rc_binomial_heap_/
rc.hpp 37 * @file rc_binomial_heap_/rc.hpp
50 class rc class in namespace:__gnu_pbds::detail
74 rc();
76 rc(const rc&);
79 swap(rc&);
121 rc<_Node, _Alloc>::
122 rc() : m_over_top(0) function in class:__gnu_pbds::detail::rc
126 rc<_Node, _Alloc>::
127 rc(const rc<_Node, _Alloc>& other) : m_over_top(0 function in class:__gnu_pbds::detail::rc
    [all...]

Completed in 1488 milliseconds

12 3 4 5 6 7 8 91011>>