/external/chromium_org/third_party/sqlite/src/src/ |
test6.c | 174 int rc = SQLITE_OK; local 180 rc = sqlite3OsWrite(p->pRealFile, &z[iSkip], iAmt-iSkip, iOff+iSkip); 182 return rc; 190 int rc = SQLITE_OK; local 225 for(pWrite=*ppPtr; rc==SQLITE_OK && pWrite; pWrite=*ppPtr){ 279 rc = writeDbFile( 283 rc = sqlite3OsTruncate(pRealFile, pWrite->iOffset); 323 for(i=iFirst; rc==SQLITE_OK && i<=iLast; i++){ 325 rc = writeDbFile( 331 rc = SQLITE_NOMEM 589 int rc; local 749 int rc; local [all...] |
test_malloc.c | 195 int rc; local 205 rc = sqlite3_config(SQLITE_CONFIG_GETMALLOC, &memfault.m); 207 if( rc==SQLITE_OK ){ 208 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &m); 224 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &memfault.m); 228 if( rc==SQLITE_OK ){ 231 return rc; 894 int sz, N, rc; local 906 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, 0, 0, 0); 909 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, buf, sz, N) 934 int sz, N, rc; local 1015 int enable, rc; local 1036 int rc; local 1071 int rc; local 1112 int rc; \/* Return code of sqlite3_config() *\/ local 1227 int rc, iValue, mxValue; local 1284 int rc, iValue, mxValue; local 1340 int rc; local 1364 int rc = SQLITE_MISUSE; local [all...] |
loadext.c | 475 int rc; local 477 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg); 478 rc = sqlite3ApiExit(db, rc); 480 return rc; 558 int rc = SQLITE_OK; local 560 rc = sqlite3_initialize(); 561 if( rc ){ 562 return rc; 580 rc = SQLITE_NOMEM [all...] |
tokenize.c | 403 pParse->rc = SQLITE_OK; 426 pParse->rc = SQLITE_TOOBIG; 433 pParse->rc = SQLITE_INTERRUPT; 452 if( pParse->rc!=SQLITE_OK ){ 460 if( zSql[i]==0 && nErr==0 && pParse->rc==SQLITE_OK ){ 475 pParse->rc = SQLITE_NOMEM; 477 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){ 478 sqlite3SetString(&pParse->zErrMsg, db, "%s", sqlite3ErrStr(pParse->rc)); 483 sqlite3_log(pParse->rc, "%s", *pzErrMsg) [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_firstpass.c | 339 static int frame_max_bits(const RATE_CONTROL *rc, const VP9_CONFIG *oxcf) { 340 int64_t max_bits = ((int64_t)rc->av_per_frame_bandwidth * 344 else if (max_bits > rc->max_frame_bandwidth) 345 max_bits = rc->max_frame_bandwidth; 909 const RATE_CONTROL *const rc = &cpi->rc; local 916 return rc->worst_quality; // Highest value allowed 1407 RATE_CONTROL *const rc = &cpi->rc; local 1901 RATE_CONTROL *const rc = &cpi->rc; local 2201 RATE_CONTROL *const rc = &cpi->rc; local [all...] |
vp9_aq_complexity.c | 30 (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref)) { 51 vp9_compute_qdelta_by_rate(&cpi->rc, cm->frame_type, cm->base_qindex, 80 const int target_rate = (cpi->rc.sb64_target_rate * xmis * ymis * 256) /
|
vp9_ratectrl.h | 92 void vp9_rc_init(const struct VP9_CONFIG *oxcf, int pass, RATE_CONTROL *rc); 171 int vp9_compute_qdelta(const RATE_CONTROL *rc, double qstart, double qtarget); 175 int vp9_compute_qdelta_by_rate(const RATE_CONTROL *rc, FRAME_TYPE frame_type,
|
/external/chromium_org/chrome/browser/resources/cryptotoken/ |
usbgnubbyfactory.js | 33 gnubby.open(which, function(rc) { 34 if (rc) { 35 cb(rc, gnubby); 38 gnubby.sync(function(rc) { 39 cb(rc, gnubby);
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
version.rc | 67 # error Resource compiler doesn't know which cleanup style you're using - see version.rc 77 # error Resource compiler doesn't know which cleanup style you're using - see version.rc 87 # error Resource compiler doesn't know which cleanup style you're using - see version.rc 97 # error Resource compiler doesn't know which cleanup style you're using - see version.rc 100 # error Resource compiler doesn't know which compiler you're using - see version.rc
|
/external/dnsmasq/src/ |
netlink.c | 79 ssize_t rc; local 91 while ((rc = recvmsg(daemon->netlinkfd, &msg, MSG_PEEK | MSG_TRUNC)) == -1 && errno == EINTR); 94 if (rc != -1 && (msg.msg_flags & MSG_TRUNC)) 97 if ((size_t)rc == iov.iov_len) 99 if (expand_buf(&iov, rc + 100)) 103 expand_buf(&iov, rc); 108 while ((rc = recvmsg(daemon->netlinkfd, &msg, 0)) == -1 && errno == EINTR); 111 if (rc == -1 || nladdr.nl_pid == 0) 118 rc = -1; 122 return rc; [all...] |
/external/libselinux/src/ |
android.c | 686 int rc = -1; local 691 rc = getfilecon(pkgdir, &ctx_str); 692 if (rc < 0) 700 rc = seapp_context_lookup(SEAPP_TYPE, uid, 0, seinfo, pkgname, NULL, ctx); 701 if (rc == -1) 703 else if (rc == -2) 710 rc = security_check_context(ctx_str); 711 if (rc < 0) 715 rc = setfilecon(pkgdir, ctx_str); 716 if (rc < 0 743 int rc = -1; local 1046 int rc = 0; local 1132 int rc = 0; local 1330 int fd = -1, rc; local 1387 int rc; local [all...] |
callbacks.c | 17 int rc; local 20 rc = vfprintf(stderr, fmt, ap); 22 return rc;
|
/device/asus/flo/camera/QCamera2/HAL3/ |
QCamera3HWI.cpp | 266 int rc = 0; local 279 rc = openCamera(); 280 if (rc == 0) { 287 if (rc == 0) { 297 return rc; 341 int rc = NO_ERROR; local 343 rc = mCameraHandle->ops->close_camera(mCameraHandle->camera_handle); 348 if (rc == NO_ERROR) { 358 return rc; 375 int rc; local 411 int rc = 0; local 745 int rc = 0; local 817 int rc = NO_ERROR; local 1604 int rc = 0; local 1680 int rc = 0; local 1770 int rc = 0; local 2408 int rc = 0; local 2591 int rc = 0; local 2644 int rc = 0; local 3335 int rc = hw->initialize(callback_ops); local 3364 int rc = hw->configureStreams(stream_list); local 3389 int rc = hw->registerStreamBuffers(buffer_set); local 3447 int rc = hw->processCaptureRequest(request); local 3635 int32_t rc = NO_ERROR; local [all...] |
/external/chromium_org/net/tools/quic/ |
quic_server.cc | 102 int rc = QuicSocketUtils::SetGetAddressInfo(fd_, address_family); local 104 if (rc < 0) { 110 rc = setsockopt( 113 if (rc < 0) { 136 rc = bind(fd_, 139 if (rc < 0) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
d3d10winmain.cpp | 87 RECT rc; 88 GetClientRect(hwnd, &rc ); 89 width = rc.right - rc.left; 90 height = rc.bottom - rc.top;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
d3d11winmain.cpp | 87 RECT rc; 88 GetClientRect(hwnd, &rc ); 89 width = rc.right - rc.left; 90 height = rc.bottom - rc.top;
|
/external/fio/os/ |
os-mac.h | 77 int rc; local 89 rc = sigaction(SIGALRM, &sa, NULL); 91 if (!rc) 92 rc = setitimer(ITIMER_REAL, &tv, &tv_out); 94 if (!rc && ovalue != NULL) { 101 return rc;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
d3d10winmain.cpp | 87 RECT rc; 88 GetClientRect(hwnd, &rc ); 89 width = rc.right - rc.left; 90 height = rc.bottom - rc.top;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
d3d11winmain.cpp | 87 RECT rc; 88 GetClientRect(hwnd, &rc ); 89 width = rc.right - rc.left; 90 height = rc.bottom - rc.top;
|
/device/lge/hammerhead/camera/QCamera2/HAL3/ |
QCamera3HWI.cpp | 355 int rc = 0; local 368 rc = openCamera(); 369 if (rc == 0) { 376 if (rc == 0) { 386 return rc; 430 int rc = NO_ERROR; local 432 rc = mCameraHandle->ops->close_camera(mCameraHandle->camera_handle); 437 if (rc == NO_ERROR) { 452 return rc; 469 int rc; local 503 int rc = NO_ERROR; local 609 int rc = 0; local 1581 int rc = NO_ERROR; local 3246 int rc = 0; local 3322 int rc = 0; local 3417 int rc = 0; local 4535 int rc = 0; local 4874 int rc = 0; local 4935 int rc = 0; local 4991 int rc = 0; local 5666 int rc = hw->initialize(callback_ops); local 5695 int rc = hw->configureStreams(stream_list); local 5720 int rc = hw->registerStreamBuffers(buffer_set); local 5778 int rc = hw->processCaptureRequest(request); local 5824 int rc; local 5953 int32_t rc = NO_ERROR; local [all...] |
/art/runtime/gc/allocator/ |
dlmalloc.cc | 63 int rc = madvise(start, length, MADV_DONTNEED); local 64 if (UNLIKELY(rc != 0)) { 65 errno = rc;
|
/external/bluetooth/bluedroid/utils/src/ |
bt_utils.c | 121 int rc = 0; local 131 rc = set_sched_policy(tid, SP_AUDIO_SYS); 136 if (rc) {
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
fetch.c | 166 int rc = allocate_reg(ctx, proc, long_info, &tmp); local 167 if (rc >= 0) { 172 if (rc < 0) 200 int rc= copy_aggregate_part(ctx, proc, buf, sz); local 202 return rc; 292 int rc = allocate_float(ctx, proc, hfa_info, &tmp, 0); local 293 if (rc >= 0) { 302 rc = -1; 307 if (rc < 0) 319 int rc = allocate_reg(ctx, proc, long_info, &tmp) local [all...] |
/external/oprofile/libpopt/ |
poptparse.c | 66 int rc = POPT_ERROR_MALLOC; local 68 if (argv == NULL) return rc; 78 rc = POPT_ERROR_BADQUOTE; 102 rc = POPT_ERROR_BADQUOTE; 116 rc = poptDupArgv(argc, argv, argcPtr, argvPtr); 120 return rc;
|
/bionic/libc/bionic/ |
libgen.cpp | 155 int rc = basename_r(path, basename_tls_buffer, basename_tls_buffer_size); local 156 return (rc < 0) ? NULL : basename_tls_buffer; 161 int rc = dirname_r(path, dirname_tls_buffer, dirname_tls_buffer_size); local 162 return (rc < 0) ? NULL : dirname_tls_buffer;
|