Searched refs:rc (Results 26 - 50 of 1076) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/opus/src/silk/float/
H A DLPC_inv_pred_gain_FLP.c46 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 <
[all...]
/external/libopus/silk/float/
H A DLPC_inv_pred_gain_FLP.c46 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 <
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_frag.c81 #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)
97 get_input_source(struct combiner_state *rc, int source) argument
141 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
163 get_input_arg(struct combiner_state *rc, int arg, int flags) argument
218 setup_combiner(struct combiner_state *rc) argument
333 struct combiner_state rc = {}; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_frag.c81 #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)
97 get_input_source(struct combiner_state *rc, int source) argument
141 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
163 get_input_arg(struct combiner_state *rc, int arg, int flags) argument
218 setup_combiner(struct combiner_state *rc) argument
333 struct combiner_state rc = {}; local
[all...]
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dusbgnubbyfactory.js33 gnubby.open(which, function(rc) {
34 if (rc) {
35 cb(rc, gnubby);
38 gnubby.sync(function(rc) {
39 cb(rc, gnubby);
/external/chromium_org/third_party/sqlite/src/src/
H A Dvacuum.c26 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!
96 int rc = SQLITE_OK; /* Return code from service routines */ local
[all...]
H A Dprepare.c37 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
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...]
H A Dtest9.c34 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!
[all...]
H A Dtest_superlock.c68 int rc; /* Return Code */ local
71 rc = sqlite3_prepare(pLock->db, "PRAGMA main.journal_mode", -1, &pStmt, 0);
72 if( rc!=SQLITE_OK ) return rc;
97 int rc; local
100 rc = xShmLock(fd, idx, nByte, SQLITE_SHM_LOCK|SQLITE_SHM_EXCLUSIVE);
101 }while( rc==SQLITE_BUSY && superlockBusyHandler((void *)pBusy, 0) );
102 return rc;
113 int rc; /* Return code */ local
118 rc
154 int rc; /* Return code */ local
190 int rc; /* Return code */ local
314 int rc; /* Return code from sqlite3demo_superlock() */ local
[all...]
H A Djournal.c52 int rc = SQLITE_OK; local
55 rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0);
56 if( rc==SQLITE_OK ){
60 rc = sqlite3OsWrite(p->pReal, p->zBuf, p->iSize, 0);
64 return rc;
88 int rc = SQLITE_OK; local
91 rc = sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
93 rc = SQLITE_IOERR_SHORT_READ;
97 return rc;
109 int rc local
131 int rc = SQLITE_OK; local
145 int rc; local
159 int rc = SQLITE_OK; local
[all...]
/external/valgrind/main/tests/
H A Dcheck_makefile_consistency60 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/srec/srec/Semproc/src/
H A DSemanticResultImpl.c32 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, HashMapGetKeyAtInde
108 ESR_ReturnCode rc; local
126 ESR_ReturnCode rc = ESR_SUCCESS; local
[all...]
H A DExpressionParser.c45 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, HashMapDestro
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/
H A Dfulltext.c507 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/
H A DPANSIFileSystemImpl.c48 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, PHashTableDestro
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...]
H A DPFile.c131 ESR_ReturnCode rc; local
138 rc = self->getFilename(self, filename, len);
139 return rc;
164 ESR_ReturnCode rc; local
171 rc = self->vfprintf(self, result, format, args);
172 return rc;
199 ESR_ReturnCode rc; local
210 rc = ESR_READ_ERROR;
211 PLogError(ESR_rc2str(rc));
216 rc
273 ESR_ReturnCode rc = ESR_SUCCESS; local
338 ESR_ReturnCode rc; local
361 ESR_ReturnCode rc; local
371 ESR_ReturnCode rc; local
381 ESR_ReturnCode rc; local
396 ESR_ReturnCode rc; local
407 ESR_ReturnCode rc; local
442 ESR_ReturnCode rc; local
453 ESR_ReturnCode rc; local
464 ESR_ReturnCode rc; local
[all...]
H A Dplog.c93 ESR_ReturnCode rc; local
97 rc = pvfprintf(p->fp, format, args);
99 return rc;
155 ESR_ReturnCode rc = ESR_SUCCESS; local
163 if ((rc = PtrdMutexCreate(&Gmutex)) != ESR_SUCCESS)
164 return rc;
171 rc = createPFileLogger(PSTDERR, &Glogger);
172 if (rc != ESR_SUCCESS)
176 return rc;
185 return rc;
213 ESR_ReturnCode rc = ESR_SUCCESS; local
264 ESR_ReturnCode rc = ESR_SUCCESS; local
423 ESR_ReturnCode rc; local
477 ESR_ReturnCode rc; local
[all...]
/external/srec/srec/Recognizer/src/
H A DRecognizerImpl.c68 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_SessionSetIntIfEmpt
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...]
/external/libselinux/src/
H A Davc_internal.c60 int len, rc = 0; local
65 rc = fd;
73 rc = -1;
86 rc = -1;
90 return rc;
102 int rc; local
109 rc = poll(&pfd, 1, (blocking ? -1 : 0));
110 } while (rc < 0 && errno == EINTR);
112 if (rc == 0 && !blocking) {
116 else if (rc <
161 int rc; local
226 int rc; local
253 int rc; local
[all...]
/external/qemu/distrib/libselinux/src/
H A Davc_internal.c60 int len, rc = 0; local
65 rc = fd;
73 rc = -1;
86 rc = -1;
90 return rc;
102 int rc; local
109 rc = poll(&pfd, 1, (blocking ? -1 : 0));
110 } while (rc < 0 && errno == EINTR);
112 if (rc == 0 && !blocking) {
116 else if (rc <
161 int rc; local
226 int rc; local
253 int rc; local
[all...]
/external/srec/shared/src/
H A DHashMapImpl.c33 ESR_ReturnCode rc = ESR_SUCCESS; local
41 if ((rc = PHashTableCreate(hashArgs, MTAG, &impl->table)) != ESR_SUCCESS)
44 return rc;
83 ESR_ReturnCode rc; local
86 CHKLOG(rc, PHashTableContainsKey(impl->table, key, &exists));
93 if ((rc = PHashTablePutValue(impl->table, clone, value, NULL)) != ESR_SUCCESS)
101 CHKLOG(rc, PHashTableGetEntry(impl->table, key, &entry));
102 rc = PHashTableEntrySetValue(entry, value, NULL);
104 return rc;
106 return rc;
112 ESR_ReturnCode rc = ESR_SUCCESS; local
144 ESR_ReturnCode rc = ESR_SUCCESS; local
180 ESR_ReturnCode rc = ESR_SUCCESS; local
192 ESR_ReturnCode rc = ESR_SUCCESS; local
204 ESR_ReturnCode rc = ESR_SUCCESS; local
227 ESR_ReturnCode rc; local
242 ESR_ReturnCode rc; local
257 ESR_ReturnCode rc; local
283 ESR_ReturnCode rc = ESR_SUCCESS; local
[all...]
/external/srec/srec/Nametag/src/
H A DNametagsImpl.c33 ESR_ReturnCode rc; local
59 CHKLOG(rc, HashMapCreate(&impl->value));
60 CHKLOG(rc, ESR_SessionGetSize_t(L("SREC.Recognizer.osi_log_level"), &impl->logLevel));
62 CHKLOG(rc, ESR_SessionGetProperty(L("eventlog"), (void **)&impl->eventLog, TYPES_SR_EVENTLOG));
63 CHKLOG(rc, SR_EventLogTokenPointer_BASIC(impl->eventLog, impl->logLevel, L("pointer"), self));
64 CHKLOG(rc, SR_EventLogEvent_BASIC(impl->eventLog, impl->logLevel, L("SR_NametagsCreate")));
69 return rc;
75 ESR_ReturnCode rc; local
94 rc = ESR_INVALID_STATE;
95 PLogError(ESR_rc2str(rc));
195 ESR_ReturnCode rc; local
282 ESR_ReturnCode rc; local
309 ESR_ReturnCode rc; local
324 ESR_ReturnCode rc; local
336 ESR_ReturnCode rc; local
352 ESR_ReturnCode rc; local
368 ESR_ReturnCode rc; local
380 ESR_ReturnCode rc; local
[all...]
/external/libcap-ng/libcap-ng-0.7/src/test/
H A Dlib_test.c32 int rc, i, len, last = CAP_LAST_CAP; local
64 rc = capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, i);
65 if (rc) {
69 rc = capng_have_capability(CAPNG_EFFECTIVE, i);
70 if (rc == 0) {
83 rc = capng_update(CAPNG_ADD, CAPNG_BOUNDING_SET, i);
84 if (rc) {
88 rc = capng_have_capability(CAPNG_BOUNDING_SET, i);
89 if (rc == 0) {
120 rc
[all...]
/external/fio/engines/
H A Dfusion-aw.c39 int rc; local
44 rc = -EINVAL;
50 rc = -EINVAL;
56 rc = -EINVAL;
62 rc = -EINVAL;
66 rc = nvm_atomic_write(d->nvm_handle, (uint64_t) io_u->xfer_buf,
68 if (rc == -1) {
70 rc = -errno;
73 rc = FIO_Q_COMPLETED;
75 if (rc <
83 int rc; local
[all...]
/external/libexif/contrib/examples/
H A Dthumbnail.c13 int rc = 1; local
19 return rc;
52 rc = 0;
55 rc = 2;
59 rc = 1;
65 return rc;

Completed in 565 milliseconds

1234567891011>>