HomeSort by relevance Sort by last modified time
    Searched refs:rc (Results 326 - 350 of 1119) sorted by null

<<11121314151617181920>>

  /art/runtime/
runtime_android.cc 69 int rc = 0; local
70 rc += sigaction(SIGSEGV, &action, &old_action);
71 CHECK_EQ(rc, 0);
  /device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_data.c 144 int rc = 0; local
190 int32_t rc = 0; local
202 return rc;
207 int32_t rc = 0; local
225 return rc;
230 int32_t rc = 0; local
234 return rc;
239 int32_t rc = 0; local
240 rc = mm_camera_cmd_thread_stop(cmd_thread);
241 if (0 == rc) {
    [all...]
  /external/chromium_org/base/
safe_strerror_posix.cc 41 char *rc = (*strerror_r_ptr)(err, buf, len); local
42 if (rc != buf) {
46 strncat(buf, rc, len - 1);
  /external/chromium_org/pdf/
fading_controls.h 26 uint32 id, const pp::Rect& rc, bool visible,
30 virtual void Paint(pp::ImageData* image_data, const pp::Rect& rc);
38 virtual void Invalidate(uint32 control_id, const pp::Rect& rc);
  /external/e2fsprogs/misc/
logsave.c 162 int status, rc, pid; local
209 rc = WEXITSTATUS(status);
210 if (rc) {
212 sprintf(buffer, " died with exit status %d\n", rc);
221 rc = 1;
223 rc = 0;
225 return rc;
253 int c, pid, rc; local
300 rc = copy_from_stdin();
302 rc = run_program(argv)
    [all...]
  /external/libsepol/src/
genbools.c 153 int rc, changes = 0; local
177 rc = policydb_write(&policydb, &pf);
178 if (rc) {
197 int rc, changes = 0; local
199 rc = load_booleans(policydb, booleans, &changes);
200 if (!rc && changes)
201 rc = evaluate_conds(policydb);
202 if (rc)
204 return rc;
214 int rc, i, errors = 0 local
    [all...]
module.c 65 int rc; local
71 rc = fseek(fp->fp, 0L, SEEK_END);
72 if (rc < 0)
73 return rc;
77 rc = fseek(fp->fp, prev_offset, SEEK_SET);
78 if (rc < 0)
79 return rc;
119 int rc; local
125 rc = module_package_init(*p);
126 if (rc < 0
349 int rc; local
379 int rc; local
469 int rc; local
657 int rc; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 57 int rc = 0; \
60 rc = fwrite(p_addr, 1, len, fp); \
76 int rc = 0; \
79 rc = fwrite(p_addr1, 1, len1, fp); \
80 rc = fwrite(p_addr2, 1, len2, fp); \
182 int rc = 0; \
185 rc = -1; \
192 rc; \
209 int rc = 0; \
213 rc = -1;
444 OMX_ERRORTYPE rc = OMX_ErrorNone; local
487 OMX_ERRORTYPE rc = OMX_ErrorNone; local
536 OMX_ERRORTYPE rc = 0; local
596 OMX_ERRORTYPE rc = 0; local
1011 OMX_ERRORTYPE rc = OMX_ErrorNone; local
1068 OMX_ERRORTYPE rc = OMX_ErrorNone; local
1454 int32_t rc = 0; local
1521 int rc = 0; local
1583 int32_t rc = 0; local
1611 int32_t rc = 0; local
1651 int32_t rc = 0; local
1697 int32_t rc = 0; local
1789 int32_t rc = -1; local
1865 int32_t rc = -1; local
1922 int32_t rc = 0; local
1984 int32_t rc = 0; local
2042 int32_t rc = -1; local
2111 int32_t rc = -1; local
2172 int rc = 0; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbeaux.c 1133 int rc = SQLITE_OK; \/* Return code *\/ local
1676 int rc; local
1700 int rc = SQLITE_OK; local
1983 int rc = SQLITE_OK; local
2063 int rc; \/* Used to store transient return codes *\/ local
2362 int rc = SQLITE_OK; local
2451 int res, rc; local
2468 int rc = sqlite3BtreeCursorHasMoved(p->pCursor, &hasMoved); local
2919 int rc = 0; local
3021 int rc; local
3105 int rc; local
    [all...]
test_syscall.c 401 int rc = Tcl_GetIndexFromObjStruct(interp, local
404 if( rc ) return rc;
447 int rc; local
456 rc = pVfs->xSetSystemCall(pVfs, 0, 0);
461 rc = pVfs->xSetSystemCall(pVfs, Tcl_GetString(objv[2]), 0);
462 for(i=0; rc==SQLITE_OK && aSyscall[i].zName; i++){
468 if( rc!=SQLITE_OK ){
469 Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3TestErrorName(rc), -1));
535 int rc; local
642 int rc; local
    [all...]
vtab.c 29 int rc, nName; local
55 rc = sqlite3ApiExit(db, SQLITE_OK);
57 return rc;
438 int rc; local
461 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
462 if( rc==SQLITE_NOMEM ) db->mallocFailed = 1;
464 if( SQLITE_OK!=rc ){
481 rc = SQLITE_ERROR;
526 return rc;
540 int rc; local
600 int rc = SQLITE_OK; local
640 int rc = SQLITE_OK; local
702 int rc = SQLITE_OK; local
761 int rc = SQLITE_OK; local
806 int rc = SQLITE_OK; local
867 int rc = 0; local
    [all...]
mutex_os2.c 119 APIRET rc; local
129 rc = DosCreateMutexSem( name, &mutex, 0, FALSE);
130 if( rc == NO_ERROR ){
139 }else if( rc == ERROR_DUPLICATE_NAME ){
229 int rc = SQLITE_BUSY; local
232 rc = SQLITE_OK;
237 return rc;
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_poll_thread.c 92 int rc; local
97 rc = pthread_cond_timedwait(&poll_cb->cond_v, &poll_cb->mutex, &ts);
98 if (rc) {
99 ALOGV("%s: error on pthread_cond_timedwait: %s", __func__, strerror(rc));
257 int rc = 0, i; local
268 rc = poll(fds, poll_cb->data.num_fds, timeoutms);
269 if(rc > 0) {
285 int rc = 0; local
311 int rc; local
316 rc = pthread_cond_timedwait(&poll_cb->cond_v, &poll_cb->mutex, &ts)
383 int rc = MM_CAMERA_OK; local
422 int rc = MM_CAMERA_OK; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_svc_layercontext.c 35 RATE_CONTROL *const lrc = &lc->rc;
90 const RATE_CONTROL *const rc = &cpi->rc; local
103 RATE_CONTROL *const lrc = &lc->rc;
113 (int64_t)(rc->starting_buffer_level * bitrate_alloc);
115 (int64_t)(rc->optimal_buffer_level * bitrate_alloc);
117 (int64_t)(rc->maximum_buffer_size * bitrate_alloc);
127 lrc->max_frame_bandwidth = rc->max_frame_bandwidth;
129 lrc->worst_quality = rc->worst_quality;
130 lrc->best_quality = rc->best_quality
    [all...]
vp9_firstpass.c 234 static int frame_max_bits(const RATE_CONTROL *rc,
236 int64_t max_bits = ((int64_t)rc->avg_frame_bandwidth *
240 else if (max_bits > rc->max_frame_bandwidth)
241 max_bits = rc->max_frame_bandwidth;
388 cpi->rc.frames_to_key = INT_MAX;
964 const RATE_CONTROL *const rc = &cpi->rc; local
1332 const RATE_CONTROL *const rc = &cpi->rc; local
1393 RATE_CONTROL *const rc = &cpi->rc; local
1553 RATE_CONTROL *const rc = &cpi->rc; local
1871 RATE_CONTROL *const rc = &cpi->rc; local
2172 RATE_CONTROL *const rc = &cpi->rc; local
2327 RATE_CONTROL *const rc = &cpi->rc; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 405 int rc; member in struct:Error
439 p->rc = 0;
443 if( p->rc!=SQLITE_OK ){
444 printf("Error: (%d) \"%s\" at line %d\n", p->rc, p->zErr, p->iLine);
455 pErr->rc = iSys;
466 pErr->rc = sqlite3_errcode(pDb->db);
477 if( pErr->rc==SQLITE_OK ){
478 pErr->rc = 1;
487 int rc
489 if( pErr->rc==rc )
508 int rc; local
529 int rc; local
565 int rc; local
631 int rc; local
670 int rc; local
696 int rc; \/* Return code *\/ local
736 int rc; local
764 int rc; local
855 int rc; local
872 int rc; local
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp 577 ALOGV("%s:rc= %d",__func__, mHasAutoFocusSupport);
582 bool rc ; local
583 mCameraHandle->ops->is_parm_supported(mCameraHandle->camera_handle,MM_CAMERA_PARM_ASD_ENABLE,(uint8_t*)&rc,(uint8_t*)&rc);
584 return rc;
588 bool rc ; local
589 mCameraHandle->ops->is_parm_supported(mCameraHandle->camera_handle,MM_CAMERA_PARM_FD,(uint8_t*)&rc,(uint8_t*)&rc);
590 return rc;
594 bool rc ; local
600 bool rc ; local
701 int rc = 0; local
1397 status_t rc, final_rc = NO_ERROR; local
1496 char* rc = NULL; local
1551 int rc = MM_CAMERA_OK; local
1574 int rc = MM_CAMERA_OK; local
1601 int rc = MM_CAMERA_OK; local
1650 int rc = 0; local
1678 status_t rc = NO_ERROR; local
1889 status_t rc; local
1963 status_t rc; local
2283 status_t rc = NO_ERROR; local
2326 status_t rc = NO_ERROR; local
2361 status_t rc = NO_ERROR; local
2608 int rc = NO_ERROR; local
2750 status_t rc = NO_ERROR; local
2774 status_t rc = NO_ERROR; local
2885 status_t rc = NO_ERROR; local
3249 status_t rc = NO_ERROR; local
3729 status_t rc = NO_ERROR; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRasterClip.h 118 SkAutoRasterClipValidate(const SkRasterClip& rc) : fRC(rc) {
130 #define AUTO_RASTERCLIP_VALIDATE(rc) SkAutoRasterClipValidate arcv(rc)
132 #define AUTO_RASTERCLIP_VALIDATE(rc)
  /device/asus/flo/camera/QCamera2/HAL/
QCameraParameters.cpp 1328 int32_t rc = NO_ERROR; local
1417 int rc = NO_ERROR; local
1674 int32_t rc = setContrast(contrast); local
2729 int32_t rc; local
3266 int32_t rc = commitParameters(); local
3288 int32_t rc = NO_ERROR; local
3481 int32_t rc = initBatchUpdate(m_pParamBuf); local
4428 int32_t rc = AddSetParmEntryToBatch(m_pParamBuf, local
5547 int32_t rc = NO_ERROR; local
5594 int32_t rc = NO_ERROR; local
5657 int32_t rc = NO_ERROR; local
5698 int32_t rc = NO_ERROR; local
5734 int32_t rc = NO_ERROR; local
6069 int32_t rc = NO_ERROR; local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraParameters.cpp 1328 int32_t rc = NO_ERROR; local
1417 int rc = NO_ERROR; local
1674 int32_t rc = setContrast(contrast); local
2729 int32_t rc; local
3266 int32_t rc = commitParameters(); local
3288 int32_t rc = NO_ERROR; local
3481 int32_t rc = initBatchUpdate(m_pParamBuf); local
4428 int32_t rc = AddSetParmEntryToBatch(m_pParamBuf, local
5547 int32_t rc = NO_ERROR; local
5594 int32_t rc = NO_ERROR; local
5657 int32_t rc = NO_ERROR; local
5698 int32_t rc = NO_ERROR; local
5734 int32_t rc = NO_ERROR; local
6069 int32_t rc = NO_ERROR; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest8.c 60 int rc; local
67 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &stmtTail);
71 printf("sqlite3_prepare_v2() returns %d in %llu cycles\n", rc, iElapse);
73 if( rc==SQLITE_OK ){
76 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; }
81 rc, nRow, iElapse);
84 rc = sqlite3_finalize(pStmt);
88 printf("sqlite3_finalize() returns %d in %llu cycles\n", rc, iElapse);
95 int rc; local
200 rc = sqlite3_open(argv[1], &db)
    [all...]
  /external/oprofile/libabi/
opimport.cpp 158 int rc = odb_add_node(dest, key, val); local
159 if (rc != EXIT_SUCCESS) {
160 cerr << strerror(rc) << endl;
201 int rc; local
205 rc = fstat(in_fd, &statb);
206 assert(rc == 0);
210 rc = odb_open(&dest, output_filename.c_str(), ODB_RDWR,
212 if (rc) {
214 << strerror(rc) << endl;
226 rc = munmap(in, statb.st_size)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSpinnerTest.java 189 Rect rc = new Rect(0, 0, 100, 100); local
190 Rect rcChild0 = new Rect(0, 0, 20, rc.bottom);
191 Rect rcChild1 = new Rect(rcChild0.right, 0, 70, rc.bottom);
192 Rect rcChild2 = new Rect(rcChild1.right, 0, rc.right, rc.bottom);
193 absSpinner.layout(rc.left, rc.top, rc.right, rc.bottom);
202 assertEquals(0, absSpinner.pointToPosition(rcChild0.left + 1, rc.bottom - 1))
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 69 int rc; /* value returned by declare_vtab() */ local
87 rc = sqlite3_declare_vtab(db, FTS3_TERMS_SCHEMA);
88 if( rc!=SQLITE_OK ) return rc;
241 int rc; local
250 rc = sqlite3Fts3SegReaderStep(pFts3, &pCsr->csr);
251 if( rc==SQLITE_ROW ){
322 rc = SQLITE_OK;
326 return rc;
341 int rc; local
464 int rc; \/* Return code *\/ local
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraMem.cpp 243 int rc = OK; local
260 rc = allocOneBuffer(mMemInfo[i], heap_id, size, m_bCached,
262 if (rc < 0) {
269 rc = mMemoryPool->allocateBuffer(mMemInfo[i],
275 if (rc < 0) {
285 return rc;
329 int rc = OK; local
358 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc);
359 if (rc < 0) {
366 rc = ioctl(main_ion_fd, ION_IOC_SHARE, &ion_info_fd)
524 int rc = NAME_NOT_FOUND; local
571 int rc = NO_ERROR; local
651 int rc = -1; local
703 int rc = alloc(count, size, heap_mask, NON_SECURE); local
882 int rc = alloc(count, size, heap_mask, isSecure); local
913 int rc = alloc(count, size, heap_mask, NON_SECURE); local
1099 int rc = QCameraStreamMemory::allocate(count, size, isSecure); local
1142 int rc = QCameraStreamMemory::allocateMore(count, size); local
    [all...]

Completed in 939 milliseconds

<<11121314151617181920>>