/external/libopus/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/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_app.c | 48 int rc = 0; local 56 rc = pthread_cond_timedwait(&app_cond_v, &app_mutex,&tw); 60 return rc; 65 int rc = 0; local 72 return rc; 114 int rc = MM_CAMERA_OK; local 134 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); 135 if (rc < 0) { 142 rc = ioctl(main_ion_fd, ION_IOC_SHARE, &ion_info_fd); 143 if (rc < 0) 179 int rc = 0; local 333 int i, rc = MM_CAMERA_OK; local 355 int i, rc; local 486 int32_t rc; local 598 int rc = MM_CAMERA_OK; local 615 int rc = MM_CAMERA_OK; local 629 int rc = MM_CAMERA_OK; local 652 int rc = MM_CAMERA_OK; local 673 uint32_t rc = MM_CAMERA_OK; local 759 int rc = MM_CAMERA_OK; local 916 int rc = MM_CAMERA_OK; local 933 int rc = MM_CAMERA_OK; local 948 int rc = MM_CAMERA_OK; local 977 int rc = MM_CAMERA_OK; local 1007 int rc = MM_CAMERA_OK; local 1036 int rc = MM_CAMERA_OK; local 1073 int rc = MM_CAMERA_OK; local 1101 int rc = MM_CAMERA_OK; local 1138 int rc = MM_CAMERA_OK; local 1166 int rc = MM_CAMERA_OK; local 1195 int rc = MM_CAMERA_OK; local 1224 int rc = MM_CAMERA_OK; local 1253 int rc = MM_CAMERA_OK; local 1284 int rc = MM_CAMERA_OK; local 1327 int rc = MM_CAMERA_OK; local 1360 int rc = MM_CAMERA_OK; local 1393 int rc = MM_CAMERA_OK; local 1426 int rc = MM_CAMERA_OK; local 1459 int rc = MM_CAMERA_OK; local 1492 int rc = MM_CAMERA_OK; local 1525 int rc = MM_CAMERA_OK; local 1558 int rc = MM_CAMERA_OK; local 1592 int rc = MM_CAMERA_OK; local 1625 int rc = MM_CAMERA_OK; local 1658 int rc = MM_CAMERA_OK; local 1692 int rc = MM_CAMERA_OK; local 1725 int rc = MM_CAMERA_OK; local 1758 int rc = MM_CAMERA_OK; local 1806 int rc = 0; local 1885 int rc = MM_CAMERA_OK; local 1947 int rc = MM_CAMERA_OK; local 1990 int rc = MM_CAMERA_OK; local 2043 int rc = MM_CAMERA_OK; local 2076 int rc = MM_CAMERA_OK; local 2103 int rc = MM_CAMERA_OK; local 2537 int rc = 0; local 2553 int rc = MM_CAMERA_OK; local [all...] |
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...] |
/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...] |
/external/chromium_org/third_party/sqlite/src/src/ |
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...] |
test9.c | 34 int rc; local 41 rc = sqlite3_open(":memory:", &db); 42 if( rc!=SQLITE_OK ){ 47 rc = sqlite3_create_collation(db, "collate", 456, 0, 0); 48 if( rc!=SQLITE_MISUSE ){ 116 int rc; local 126 rc = sqlite3_open(":memory:", &db); 127 if( rc!=SQLITE_OK ){ 134 rc = sqlite3_errcode(db); 135 if( rc!=SQLITE_MISUSE ) [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...] |
/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...] |
ExpressionParser.c | 45 ESR_ReturnCode rc; local 62 CHKLOG(rc, HashMapCreate(&Interface->pfunctions)); 66 CHKLOG(rc, EP_RegisterFunction(Interface, L("concat"), NULL, EE_concat)); 67 CHKLOG(rc, EP_RegisterFunction(Interface, L("conditional"), NULL, EE_conditional)); 68 CHKLOG(rc, EP_RegisterFunction(Interface, L("add"), NULL, EE_add)); 69 CHKLOG(rc, EP_RegisterFunction(Interface, L("subtract"), NULL, EE_subtract)); 75 return rc; 80 ESR_ReturnCode rc; local 87 CHKLOG(rc, HashMapRemoveAll(self->pfunctions)); 93 CHKLOG(rc, HashMapDestroy(self->pfunctions)) 104 ESR_ReturnCode rc; local 191 ESR_ReturnCode rc; local 213 ESR_ReturnCode rc; local 229 ESR_ReturnCode rc; local 248 ESR_ReturnCode rc; local 316 ESR_ReturnCode rc; local 355 ESR_ReturnCode rc; local 438 ESR_ReturnCode rc; local 455 ESR_ReturnCode rc; 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...] |
/device/moto/shamu/camera/QCamera2/HAL/ |
QCameraStateMachine.cpp | 244 int32_t rc = NO_ERROR; local 248 rc = procEvtPreviewStoppedState(evt, payload); 251 rc = procEvtPreviewReadyState(evt, payload); 254 rc = procEvtPreviewingState(evt, payload); 257 rc = procEvtPrepareSnapshotState(evt, payload); 260 rc = procEvtPicTakingState(evt, payload); 263 rc = procEvtRecordingState(evt, payload); 266 rc = procEvtVideoPicTakingState(evt, payload); 269 rc = procEvtPreviewPicTakingState(evt, payload); 275 return rc; 295 int32_t rc = NO_ERROR; local 607 int32_t rc = NO_ERROR; local 903 int32_t rc = NO_ERROR; local 1305 int32_t rc = NO_ERROR; local 1438 int32_t rc = NO_ERROR; local 1793 int32_t rc = NO_ERROR; local 2146 int32_t rc = NO_ERROR; local 2490 int32_t rc = NO_ERROR; 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...] |
/device/lge/hammerhead/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/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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...] |
/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...] |
/prebuilts/ndk/9/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...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/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...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/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...] |