HomeSort by relevance Sort by last modified time
    Searched refs:rc (Results 626 - 650 of 1678) sorted by null

<<21222324252627282930>>

  /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...]
  /frameworks/base/core/jni/
com_android_internal_os_Zygote.cpp 161 int rc = setgroups(gids.size(), reinterpret_cast<const gid_t*>(&gids[0])); local
162 if (rc == -1) {
191 int rc = setrlimit(javaRlimit[0], &rlim); local
192 if (rc == -1) {
203 int rc = prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0); local
204 if (rc == -1) {
212 int rc = prctl(PR_CAPBSET_DROP, i, 0, 0, 0); local
213 if (rc == -1) {
274 // These paths must already be created by init.rc
485 int rc = createProcessGroup(uid, getpid()) local
505 int rc = setresgid(gid, gid, gid); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 245 BOOL IntersectsWith(const Rect& rc) const {
246 INT intersectLeft = (X < rc.X) ? rc.X : X;
247 INT intersectTop = (Y < rc.Y) ? rc.Y : Y;
248 INT intersectRight = (GetRight() < rc.GetRight())
249 ? GetRight() : rc.GetRight();
250 INT intersectBottom = (GetBottom() < rc.GetBottom())
251 ? GetBottom() : rc.GetBottom();
370 BOOL IntersectsWith(const RectF& rc) const
    [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/chromium_org/third_party/sqlite/src/src/
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...]
tclsqlite.c 129 int rc; /* Return code of most recent sqlite3_exec() */ member in struct:SqliteDb
185 int rc = sqlite3_blob_close(p->pBlob); local
202 if( rc!=SQLITE_OK ){
221 int rc; /* sqlite error code */ local
231 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
232 if( rc!=SQLITE_OK ){
233 *errorCodePtr = rc;
253 int rc; /* sqlite error code */ local
264 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
265 if( rc!=SQLITE_OK )
343 int rc; local
504 int rc; local
521 int rc; local
579 int rc; local
721 int rc; local
851 int rc; local
1004 int rc = result; local
1367 int rc; local
1501 int rc = result; \/* Return code *\/ local
1569 int rc = TCL_OK; local
3463 int rc = sqlite3_create_function(db, "md5sum", -1, SQLITE_UTF8, 0, 0, local
    [all...]
  /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/pcre/dist/
pcreposix.c 325 int rc, so, eo; local
376 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so),
379 if (rc == 0) rc = (int)nmatch; /* All captured slots were filled in */
383 if (rc >= 0)
388 for (i = 0; i < (size_t)rc; i++)
402 switch(rc)
  /external/valgrind/main/tests/
s390x_features.c 305 int rc, inverted = 0; local
318 rc = go(argv[1], argv[2]);
321 switch (rc) {
322 case 0: rc = 1; break;
323 case 1: rc = 0; break;
324 case 2: rc = 2; break;
328 // printf("rc = %d\n", rc);
330 return rc;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 71 const RATE_CONTROL *rc) {
83 if (rc->av_per_frame_bandwidth < factor * number_blocks ||
181 const RATE_CONTROL *const rc = &cpi->rc; local
185 const int apply_cyclic_refresh = apply_cyclic_refresh_bitrate(cm, rc);
210 cr->thresh_rate_sb = (rc->sb64_target_rate * 256) >> 2;
217 cr->thresh_rate_sb = (rc->sb64_target_rate * 256) >> 3;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
spawn.py 69 rc = os.spawnv(os.P_WAIT, executable, cmd)
74 if rc != 0:
77 "command '%s' failed with exit status %d" % (cmd[0], rc)
88 rc = os.spawnv(os.P_WAIT, executable, cmd)
93 if rc != 0:
95 log.debug("command '%s' failed with exit status %d" % (cmd[0], rc))
97 "command '%s' failed with exit status %d" % (cmd[0], rc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
spawn.py 69 rc = os.spawnv(os.P_WAIT, executable, cmd)
74 if rc != 0:
77 "command '%s' failed with exit status %d" % (cmd[0], rc)
88 rc = os.spawnv(os.P_WAIT, executable, cmd)
93 if rc != 0:
95 log.debug("command '%s' failed with exit status %d" % (cmd[0], rc))
97 "command '%s' failed with exit status %d" % (cmd[0], rc)
  /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;
  /external/srec/srec/crec/
srec_context.c 160 int rc; local
177 rc = FST_LoadWordMap(&context->olabels, num_words_to_add, fp);
179 if (rc) return rc;
184 rc = FST_LoadGraph(context, context->ilabels, context->olabels, num_words_to_add, fp);
186 if (rc != FST_SUCCESS) return rc;
191 rc = FST_LoadReverseWordGraph(context, num_words_to_add, fp);
193 if (rc != FST_SUCCESS) return rc;
226 int rc = FST_SUCCESS; local
336 ESR_ReturnCode rc; local
458 ESR_ReturnCode rc; local
509 ESR_ReturnCode rc; local
709 ESR_ReturnCode rc = PHashTablePutValue ( wmap->wordIDForWord, wmap->words[i], local
759 ESR_ReturnCode rc = PHashTablePutValue ( wmap->wordIDForWord, wmap->words[wdID], local
812 ESR_ReturnCode rc = PHashTablePutValue ( wmap->wordIDForWord, wmap->words[i], local
866 ESR_ReturnCode rc = PHashTablePutValue ( wmap->wordIDForWord, wmap->words[wdID], local
886 int rc = 0; local
909 int i, rc = 0; local
1140 int rc = 0; local
1197 int irc, rc = FST_SUCCESS; local
1572 int i, rc = 0; local
2281 int rc = FST_SUCCESS; local
2695 int rc; local
2782 ESR_ReturnCode rc = ESR_SUCCESS; local
2926 ESR_ReturnCode rc; local
2978 ESR_ReturnCode rc; local
3062 ESR_ReturnCode rc; local
3280 int rc = FST_SUCCESS; local
3536 int rc = FST_SUCCESS; local
    [all...]
  /bionic/libc/bionic/
dirent.cpp 86 int rc = TEMP_FAILURE_RETRY(__getdents64(d->fd_, d->buff_, sizeof(d->buff_))); local
87 if (rc <= 0) {
90 d->available_bytes_ = rc;
  /device/moto/shamu/cryptfs_hw/
cryptfs_hw.c 164 int rc = 0; local
170 if (!err) rc = 1;
172 return rc;
  /external/chromium_org/testing/
xvfb.py 108 rc = xvfb_proc.poll()
109 if rc is None:
113 print 'Xvfb exited, code %d' % rc

Completed in 979 milliseconds

<<21222324252627282930>>