/device/asus/flo/camera/QCamera2/HAL3/ |
QCamera3Mem.cpp | 264 int rc = OK; local 275 rc = allocOneBuffer(mMemInfo[i], heap_id, size); 276 if (rc < 0) { 283 return rc; 317 int rc = OK; local 336 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); 337 if (rc < 0) { 345 rc = ioctl(main_ion_fd, ION_IOC_SHARE, &ion_info_fd); 346 if (rc < 0) { 433 int rc = alloc(count, size, heap_id_mask) local [all...] |
/device/lge/hammerhead/camera/QCamera2/HAL3/ |
QCamera3Mem.cpp | 269 int rc = OK; local 280 rc = allocOneBuffer(mMemInfo[i], heap_id, size); 281 if (rc < 0) { 288 return rc; 322 int rc = OK; local 341 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); 342 if (rc < 0) { 350 rc = ioctl(main_ion_fd, ION_IOC_SHARE, &ion_info_fd); 351 if (rc < 0) { 438 int rc = alloc(count, size, heap_mask) local [all...] |
/device/moto/shamu/camera/QCamera/HAL2/core/src/ |
QCameraHWI.cpp | 60 int rc = 0; local 81 rc = mCameraHandle->ops->set_parm(mCameraHandle->camera_handle, 83 if (rc < 0) { 84 ALOGE("set_parm MM_CAMERA_PARM_RECORDING_HINT returns %d", rc); 85 return rc; 94 rc = stream->prepareStream(); 95 if (rc < 0) { 96 ALOGE("prepareStream for stream %d failed %d", streamId, rc); 97 return rc; 106 rc = stream->streamOn() [all...] |
/device/samsung/manta/ |
device.mk | 25 device/samsung/manta/init.manta.rc:root/init.manta.rc \ 26 device/samsung/manta/init.manta.usb.rc:root/init.manta.usb.rc \ 27 device/samsung/manta/init.recovery.manta.rc:root/init.recovery.manta.rc \ 29 device/samsung/manta/ueventd.manta.rc:root/ueventd.manta.rc 40 device/samsung/manta/init.smdk5250.rc:root/init.smdk5250.rc \ [all...] |
/device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_data.c | 142 int rc = 0; local 186 int32_t rc = 0; local 198 return rc; 203 int32_t rc = 0; local 225 return rc;
|
/external/chromium_org/pdf/ |
draw_utils.cc | 98 void GradientFill(pp::ImageData* image, const pp::Rect& rc, 101 colors.resize(horizontal ? rc.width() : rc.height()); 114 uint32_t* origin_pixel = image->GetAddr32(rc.point()); 115 for (int y = 0; y < rc.height(); y++) { 121 uint32_t* origin_pixel = image->GetAddr32(rc.point()); 122 for (int y = 0; y < rc.height(); y++) { 124 for (int x = 0; x < rc.width(); x++) { 202 void FillRect(pp::ImageData* image, const pp::Rect& rc, uint32 color) { 203 int height = rc.height() [all...] |
/external/chromium_org/third_party/libxslt/libexslt/ |
crypto.c | 379 gcry_error_t rc = 0; local 383 rc = gcry_cipher_open (&cipher, GCRY_CIPHER_ARCFOUR, 385 if (rc) { 389 gcry_strerror (rc)); 392 rc = gcry_cipher_setkey (cipher, key, RC4_KEY_LENGTH); 393 if (rc) { 397 gcry_strerror (rc)); 400 rc = gcry_cipher_encrypt (cipher, (unsigned char *) dest, destlen, 402 if (rc) { 406 gcry_strerror (rc)); 418 gcry_error_t rc = 0; local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
notify.c | 153 int rc = SQLITE_OK; local 175 rc = SQLITE_LOCKED; /* Deadlock detected. */ 187 sqlite3Error(db, rc, (rc?"database is deadlocked":0)); 189 return rc;
|
test_quota.c | 294 int rc; /* Result code */ local 314 rc = pOrigVfs->xOpen(pOrigVfs, zName, pConn, flags, pOutFlags); 320 rc = pOrigVfs->xOpen(pOrigVfs, zName, pSubOpen, flags, pOutFlags); 321 if( rc==SQLITE_OK ){ 351 return rc; 364 int rc; local 365 rc = pSubOpen->pMethods->xClose(pSubOpen); 377 return rc; 437 int rc = pSubOpen->pMethods->xTruncate(pSubOpen, size); local 440 if( rc==SQLITE_OK ) 467 int rc; local 741 int rc; \/* Tcl error code *\/ local 792 int rc; \/* Value returned by quota_initialize() *\/ local 819 int rc; \/* Value returned by quota_shutdown() *\/ local 845 int rc; \/* Value returned by quota_set() *\/ local [all...] |
vdbemem.c | 41 int rc; local 56 rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc); 57 assert(rc==SQLITE_OK || rc==SQLITE_NOMEM); 58 assert(rc==SQLITE_OK || pMem->enc!=desiredEnc); 59 assert(rc==SQLITE_NOMEM || pMem->enc==desiredEnc); 60 return rc; 204 int rc = SQLITE_OK; local 236 return rc; 248 int rc = SQLITE_OK local 638 int rc = SQLITE_OK; local 779 int rc; local 909 int rc = SQLITE_OK; \/* Return code *\/ local [all...] |
/external/deqp/modules/gles2/functional/ |
es2fScissorTests.cpp | 54 glu::RenderContext& rc = m_context.getRenderContext(); local 85 rc, 94 addChild(createClearTest(tc, rc, "clear_depth", "Depth buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_DEPTH_BUFFER_BIT)); 95 addChild(createClearTest(tc, rc, "clear_stencil", "Stencil buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_STENCIL_BUFFER_BIT)); 96 addChild(createClearTest(tc, rc, "clear_color", "Color buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_COLOR_BUFFER_BIT));
|
/device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/ |
mm_jpeg_exif.c | 61 int32_t rc = 0; local 79 rc = -1; 94 rc = -1; 107 rc = -1; 122 rc = -1; 137 rc = -1; 151 rc = -1; 163 rc = -1; 178 rc = -1; 192 return rc; [all...] |
/device/asus/fugu/ |
device.mk | 71 device/asus/fugu/init.fugu.rc:root/init.fugu.rc \ 72 device/asus/fugu/init.fugu.usb.rc:root/init.fugu.usb.rc \ 73 device/asus/fugu/ueventd.fugu.rc:root/ueventd.fugu.rc \ 74 device/asus/fugu/init.recovery.fugu.rc:root/init.recovery.fugu.rc 241 # Debug rc files 244 device/asus/fugu/init.fugu.diag.rc.userdebug:root/init.fugu.diag.r [all...] |
/external/iputils/ |
arping.c | 597 int rc; local 601 rc = getifaddrs(&ifa0); 602 if (rc) { 681 int rc = sysfs_devattr_ulong(ptr, v, idx, 10); local 682 return rc; 687 int rc = sysfs_devattr_ulong(ptr, v, idx, 16); local 688 return rc; 720 int rc = -1; local 750 int rc = -1; local 762 rc = -1 862 int rc; local 914 int rc; local 1091 int rc; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
encodemb.c | 237 int rc; local 289 rc = vp8_default_zig_zag1d[i]; 290 x = qcoeff_ptr[rc]; 321 dx = dqcoeff_ptr[rc] - coeff_ptr[rc]; 333 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) && 334 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc])) 490 int rc = vp8_default_zig_zag1d[i]; local [all...] |
quantize.c | 21 int i, rc, eob; local 33 rc = vp8_default_zig_zag1d[i]; 34 z = coeff_ptr[rc]; 39 y = ((x + round_ptr[rc]) * quant_ptr[rc]) >> 16; /* quantize (x) */ 41 qcoeff_ptr[rc] = x; /* write to destination */ 42 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ 54 int i, rc, eob; local 75 rc = vp8_default_zig_zag1d[i] [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
encodemb.c | 237 int rc; local 296 rc = vp8_default_zig_zag1d[i]; 297 x = qcoeff_ptr[rc]; 328 dx = dqcoeff_ptr[rc] - coeff_ptr[rc]; 340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) && 341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc])) 497 int rc = vp8_default_zig_zag1d[i]; local [all...] |
/external/chromium_org/net/tools/quic/ |
quic_socket_utils.cc | 73 int rc = setsockopt(fd, IPPROTO_IP, IP_PKTINFO, local 75 if (rc == 0 && address_family == AF_INET6) { 76 rc = setsockopt(fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, 79 return rc; 216 int rc = sendmsg(fd, &hdr, 0); local 217 if (rc >= 0) { 218 return WriteResult(WRITE_STATUS_OK, rc);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
simplethread.cpp | 369 int32_t rc; local 379 rc = pthread_attr_create(&attr); 382 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this); 385 rc = pthread_attr_init(&attr); 401 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this); 404 if (rc != 0) { 410 return rc;
|
/external/chromium_org/third_party/sqlite/src/ext/icu/ |
icu.c | 422 int rc; /* Return code from sqlite3_create_collation_x() */ local 439 rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator, 442 if( rc!=SQLITE_OK ){ 477 int rc = SQLITE_OK; local 480 for(i=0; rc==SQLITE_OK && i<(int)(sizeof(scalars)/sizeof(scalars[0])); i++){ 482 rc = sqlite3_create_function( 487 return rc;
|
/external/deqp/framework/opengl/simplereference/ |
sglrShaderProgram.hpp | 36 namespace rc namespace in namespace:sglr 44 } // rc 210 const rc::Texture1D* tex1D; 211 const rc::Texture2D* tex2D; 212 const rc::TextureCube* texCube; 213 const rc::Texture2DArray* tex2DArray; 214 const rc::Texture3D* tex3D; 215 const rc::TextureCubeArray* texCubeArray;
|
/external/icu/icu4c/source/test/intltest/ |
simplethread.cpp | 369 int32_t rc; local 379 rc = pthread_attr_create(&attr); 382 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this); 385 rc = pthread_attr_init(&attr); 401 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this); 404 if (rc != 0) { 410 return rc;
|
/external/libsepol/src/ |
context_record.c | 286 int rc; local 299 rc = snprintf(str, total_sz + 1, "%s:%s:%s:%s", 301 if (rc < 0 || (rc >= total_sz + 1)) { 306 rc = snprintf(str, total_sz + 1, "%s:%s:%s", 308 if (rc < 0 || (rc >= total_sz + 1)) {
|
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/ |
baseline_policy_unittest.cc | 314 int rc = getpriority(PRIO_PROCESS, getpid()); local 317 rc = getpriority(PRIO_PROCESS, getpid() + 1); 318 BPF_ASSERT_EQ(-1, rc); 321 rc = setpriority(PRIO_PROCESS, 0, original_prio); 322 BPF_ASSERT_EQ(0, rc); 324 rc = setpriority(PRIO_PROCESS, getpid(), original_prio); 325 BPF_ASSERT_EQ(0, rc); 328 rc = setpriority(PRIO_PROCESS, getpid() + 1, original_prio); 329 BPF_ASSERT_EQ(-1, rc);
|
/external/dnsmasq/src/ |
helper.c | 176 pid_t rc = wait(&status); local 178 if (rc == pid) 188 if (rc == -1 && errno != EINTR) 407 ssize_t rc; local 412 if ((rc = write(daemon->helperfd, buf, bytes_in_buf)) != -1) 414 if (bytes_in_buf != (size_t)rc) 415 memmove(buf, buf + rc, bytes_in_buf - rc); 416 bytes_in_buf -= rc;
|