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

1 23 4 5 6 7 8 91011>>

  /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...]
  /external/srec/srec/Semproc/src/
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/src/
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...]
test_superlock.c 68 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 = sqlite3_file_control(db, "main", SQLITE_FCNTL_FILE_POINTER, (void *)&fd)
154 int rc; \/* Return code *\/ local
190 int rc; \/* Return code *\/ local
314 int rc; \/* Return code from sqlite3demo_superlock() *\/ local
    [all...]
journal.c 52 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 = SQLITE_OK local
131 int rc = SQLITE_OK; local
145 int rc; local
159 int rc = SQLITE_OK; local
    [all...]
  /external/libselinux/src/
avc_internal.c 60 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 < 1)
161 int rc; local
226 int rc; local
253 int rc; local
    [all...]
  /external/srec/portable/src/
PFile.c 131 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 = ESR_INVALID_STATE
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...]
plog.c 93 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/shared/src/
HashMapImpl.c 33 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/
NametagsImpl.c 33 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_EventLogTokenInt_BASIC(impl->eventLog, impl->logLevel, L("pointer"), (int) 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/
lib_test.c 32 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 = capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, i)
    [all...]
  /external/libexif/contrib/examples/
thumbnail.c 13 int rc = 1; local
19 return rc;
52 rc = 0;
55 rc = 2;
59 rc = 1;
65 return rc;
  /external/srec/srec/Semproc/include/
SR_SemprocDefinitions.h 207 #define MEMCHK(rc, val, threshold) \
211 rc = ESR_OUT_OF_MEMORY; \
212 PLogError(L("%s: %d > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
216 #define LENCHK(rc, val, threshold) \
220 rc = ESR_OUT_OF_MEMORY; \
221 PLogError(L("%s: %s > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
  /system/core/logwrapper/
logwrapper.c 56 int rc; local
82 rc = android_fork_execvp_ext(argc, &argv[0], &status, true,
84 if (!rc) {
86 rc = WEXITSTATUS(status);
88 rc = -ECHILD;
95 return rc;
  /external/chromium_org/third_party/opus/src/silk/float/
k2a_FLP.c 37 const silk_float *rc, /* I reflection coefficients [order] */
49 A[ n ] += Atmp[ k - n - 1 ] * rc[ k ];
51 A[ k ] = -rc[ k ];
  /system/core/toolbox/
chcon.c 9 int rc, i; local
17 rc = setfilecon(argv[i], argv[1]);
18 if (rc < 0) {
  /external/llvm/utils/release/
tag.sh 18 rc=""
26 echo "usage: `basename $0` -release <num> -rc <num>"
29 echo " -rc <num> The release candidate number"
57 if ! svn ls $base_url/$proj/tags/RELEASE_$release/$rc > /dev/null 2>&1 ; then
58 svn copy -m "Creating release candidate $rc from release_$release branch" \
60 $base_url/$proj/tags/RELEASE_$release/$rc
72 -rc | --rc )
74 rc="rc$1
    [all...]
  /build/target/product/
embedded.mk 31 init.environ.rc \
32 init.rc \
80 system/core/rootdir/init.usb.rc:root/init.usb.rc \
81 system/core/rootdir/init.trace.rc:root/init.trace.rc \
82 system/core/rootdir/ueventd.rc:root/ueventd.rc \
  /system/core/rootdir/
Android.mk 4 # init.rc
5 # Only copy init.rc if the target doesn't have its own.
9 LOCAL_MODULE := init.rc
17 # init.environ.rc
21 LOCAL_MODULE := init.environ.rc
24 # Put it here instead of in init.rc module definition,
25 # because init.rc is conditionally included.
33 $(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/init.environ.rc.in
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 738 int rc; local
747 rc = dlrStep(pReader);
748 if( rc!=SQLITE_OK ) dlrDestroy(pReader);
749 return rc;
990 int rc; local
1190 int rc; local
1298 int rc = SQLITE_OK; local
1405 int rc; local
1457 int rc; local
1531 int rc; local
1597 int rc; local
1646 int rc; local
1692 int rc; local
1755 int rc; local
1845 int rc; local
1855 int rc; local
2128 int rc; local
2142 int rc = sqlite3_reset(v->pFulltextStatements[iStmt]); local
2155 int rc = sqlite3_step(s); local
2172 int rc = sql_prepare(v->db, v->zDb, v->zName, &v->pLeafSelectStmts[idx], local
2176 int rc = sqlite3_reset(v->pLeafSelectStmts[idx]); local
2189 int rc = sql_get_statement(v, CONTENT_INSERT_STMT, &s); local
2209 int rc = sql_get_statement(v, CONTENT_UPDATE_STMT, &s); local
2243 int rc; local
2280 int rc = sql_get_statement(v, CONTENT_DELETE_STMT, &s); local
2294 int rc = sql_get_statement(v, CONTENT_EXISTS_STMT, &s); local
2314 int rc = sql_get_statement(v, BLOCK_INSERT_STMT, &s); local
2337 int rc = sql_get_statement(v, BLOCK_DELETE_STMT, &s); local
2355 int rc = sql_get_statement(v, SEGDIR_MAX_INDEX_STMT, &s); local
2395 int rc = sql_get_statement(v, SEGDIR_SET_STMT, &s); local
2427 int rc = sql_get_statement(v, SEGDIR_SPAN_STMT, &s); local
2463 int rc = segdir_span(v, iLevel, &iStartBlockid, &iEndBlockid); local
2486 int rc = sql_get_statement(v, SEGDIR_DELETE_ALL_STMT, &s); local
2504 int rc = sql_get_statement(v, SEGDIR_COUNT_STMT, &s); local
2988 int rc; local
3068 int rc = parseSpec(&spec, argc, argv, pzErr); local
3085 int rc; local
3167 int rc; local
3269 int rc; \/* Return code *\/ local
3564 int rc; local
3631 int i, rc; local
3732 int rc = pModule->xOpen(pTokenizer, pSegment, nSegment, &pCursor); local
3852 int i, iNext, rc; local
3995 int rc; local
4117 int rc; local
4173 int rc = buildTerms(v, iRowid, zText, i); local
4184 int i, rc; local
4209 int rc; local
4225 int rc = initPendingTerms(v, iRow); local
4240 int rc = initPendingTerms(v, iRow); local
4497 int rc; local
4796 int nStartingTerm, rc, n; local
4840 int rc = leafWriterInternalFlush(v, pWriter, 0, pWriter->data.nData); local
4869 int rc = leafWriterFlush(v, pWriter); local
4894 int rc, nRootInfo; local
4989 int i, nData, n, nActualData, nActual, rc, nTermDistinct; local
5116 int rc; local
5329 int rc; local
5344 int rc = sql_get_leaf_statement(v, idx, &s); local
5398 int rc; local
5480 int i, rc = sql_get_statement(v, SEGDIR_SELECT_LEVEL_STMT, &s); local
5539 int rc; local
5572 int rc = segdir_max_index(v, iLevel, pidx); local
5596 int i, rc, idx = 0; local
5665 int rc; local
5697 int nBuffers = 0, nMaxBuffers = 0, rc; local
5816 int rc; local
5837 int rc; local
5866 int rc; local
5916 int rc; local
5979 int rc; local
6037 int rc; local
6084 int rc = sql_get_statement(v, SEGDIR_SELECT_ALL_STMT, &s); local
6156 int idx, rc, i, n; local
6220 int rc = writeZeroSegment(v, &v->pendingTerms); local
6238 int rc = flushPendingTerms(v); local
6254 int rc; local
6466 int i, rc = SQLITE_OK; local
6601 int i, rc, iMaxLevel; local
6726 int rc; local
6832 int rc; local
6899 int rc; local
7009 int rc; local
7147 int rc = SQLITE_NOMEM; local
7216 int rc = SQLITE_OK; local
    [all...]
  /external/srec/portable/src/UNIX/
PFileSystemUNIXImpl.c 41 ESR_ReturnCode rc; local
54 CHKLOG(rc, PANSIFileSystemCreate());
56 CHKLOG(rc, PMemSetLogEnabled(ESR_FALSE));
57 CHKLOG(rc, PHashTablePutValue(PFileSystemPathMap, L("/"), PANSIFileSystemSingleton, NULL));
58 CHKLOG(rc, PHashTablePutValue(ANSIImpl->directoryMap, L("/"), L("/"), NULL));
59 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stdin"), isLittleEndian, &PSTDIN));
63 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stdout"), isLittleEndian, &PSTDOUT));
68 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stderr"), isLittleEndian, &PSTDERR));
75 CHKLOG(rc, PtrdIsEnabled(&threadingEnabled));
78 CHKLOG(rc, PtrdMonitorDestroy(impl->Interface.lock))
96 ESR_ReturnCode rc; local
    [all...]
  /device/asus/flo/camera/QCamera2/HAL/
QCameraStateMachine.cpp 244 int32_t rc = NO_ERROR; local
247 rc = procEvtPreviewStoppedState(evt, payload);
250 rc = procEvtPreviewReadyState(evt, payload);
253 rc = procEvtPreviewingState(evt, payload);
256 rc = procEvtPrepareSnapshotState(evt, payload);
259 rc = procEvtPicTakingState(evt, payload);
262 rc = procEvtRecordingState(evt, payload);
265 rc = procEvtVideoPicTakingState(evt, payload);
268 rc = procEvtPreviewPicTakingState(evt, payload);
274 return rc;
294 int32_t rc = NO_ERROR; local
589 int32_t rc = NO_ERROR; local
870 int32_t rc = NO_ERROR; local
1228 int32_t rc = NO_ERROR; local
1335 int32_t rc = NO_ERROR; local
1627 int32_t rc = NO_ERROR; local
1939 int32_t rc = NO_ERROR; local
2244 int32_t rc = NO_ERROR; local
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCameraStateMachine.cpp 244 int32_t rc = NO_ERROR; local
247 rc = procEvtPreviewStoppedState(evt, payload);
250 rc = procEvtPreviewReadyState(evt, payload);
253 rc = procEvtPreviewingState(evt, payload);
256 rc = procEvtPrepareSnapshotState(evt, payload);
259 rc = procEvtPicTakingState(evt, payload);
262 rc = procEvtRecordingState(evt, payload);
265 rc = procEvtVideoPicTakingState(evt, payload);
268 rc = procEvtPreviewPicTakingState(evt, payload);
274 return rc;
294 int32_t rc = NO_ERROR; local
589 int32_t rc = NO_ERROR; local
870 int32_t rc = NO_ERROR; local
1228 int32_t rc = NO_ERROR; local
1335 int32_t rc = NO_ERROR; local
1627 int32_t rc = NO_ERROR; local
1939 int32_t rc = NO_ERROR; local
2244 int32_t rc = NO_ERROR; local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraStream.cpp 106 int rc = MM_CAMERA_OK;
115 rc = cam_config_get_parm(cameraId, MM_CAMERA_PARM_DIMENSION, &dim);
116 if (MM_CAMERA_OK != rc) {
123 rc = cam_ops_ch_acquire(cameraId, MM_CAMERA_CH_PREVIEW);
124 LOGV("%s:ch_acquire MM_CAMERA_CH_PREVIEW, rc=%d\n",__func__, rc);
126 if(MM_CAMERA_OK != rc) {
127 LOGE("%s: preview channel acquir error =%d\n", __func__, rc);
142 rc = cam_config_set_parm(cameraId, MM_CAMERA_PARM_CH_IMAGE_FMT, &fmt);
143 LOGV("%s: preview MM_CAMERA_PARM_CH_IMAGE_FMT rc = %d\n", __func__, rc)
187 int rc = MM_CAMERA_OK; local
232 int rc = MM_CAMERA_OK; local
259 int rc = MM_CAMERA_OK; local
    [all...]

Completed in 368 milliseconds

1 23 4 5 6 7 8 91011>>