HomeSort by relevance Sort by last modified time
    Searched defs:rc (Results 101 - 125 of 1081) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/tool/
rollback-test.c 29 int rc; local
31 rc = sqlite3_open(zFilename, &db);
32 if( rc ){
62 int rc; local
64 rc = sqlite3_exec(db, zSql, execCallback, 0, &zErr);
69 if( rc ){
  /external/chromium_org/tools/grit/grit/node/
structure_unittest.py 22 from grit.format import rc namespace
29 <structure type="dialog" name="IDD_ABOUTBOX" file="klonk.rc" encoding="utf-16-le">
30 <skeleton expr="lang == 'fr'" variant_of_revision="1" file="klonk-alternate-skeleton.rc" />
35 transl = ''.join(rc.Format(grd, 'fr', '.'))
  /external/chromium_org/tools/grit/grit/
shortcuts_unittests.py 20 from grit.gather import rc namespace
46 dlg = rc.Dialog(StringIO.StringIO('''\
  /external/chromium_org/v8/test/mjsunit/
unicodelctest-no-optimization.js 74 function rc(last) { function
101 last = rc(last);
    [all...]
unicodelctest.js 73 function rc(last) { function
99 last = rc(last);
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32Window.cpp 104 RECT rc; local
106 rc.left = 0;
107 rc.top = 0;
108 rc.right = width;
109 rc.bottom = height;
111 if (!AdjustWindowRect(&rc, GetWindowLong(m_window, GWL_STYLE), GetMenu(m_window) != NULL))
115 rc.right - rc.left, rc.bottom - rc.top
122 RECT rc; 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));
  /external/deqp/modules/gles3/functional/
es3fScissorTests.cpp 64 glu::RenderContext& rc = m_context.getRenderContext(); local
95 rc,
104 addChild(createClearTest(tc, rc, "clear_depth", "Depth buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_DEPTH_BUFFER_BIT));
105 addChild(createClearTest(tc, rc, "clear_stencil", "Stencil buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_STENCIL_BUFFER_BIT));
106 addChild(createClearTest(tc, rc, "clear_color", "Color buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_COLOR_BUFFER_BIT));
108 addChild(createFramebufferClearTest(tc, rc, "clear_fixed_buffer", "Fixed point color clear", CLEAR_COLOR_FIXED));
109 addChild(createFramebufferClearTest(tc, rc, "clear_int_buffer", "Integer color clear", CLEAR_COLOR_INT));
110 addChild(createFramebufferClearTest(tc, rc, "clear_uint_buffer", "Unsigned integer buffer clear", CLEAR_COLOR_UINT));
111 addChild(createFramebufferClearTest(tc, rc, "clear_depth_buffer", "Depth buffer clear", CLEAR_DEPTH));
112 addChild(createFramebufferClearTest(tc, rc, "clear_stencil_buffer", "Stencil buffer clear", CLEAR_STENCIL))
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
filecap.c 54 capng_results_t rc; local
58 rc = capng_have_capabilities(CAPNG_SELECT_CAPS);
59 if (rc > CAPNG_NONE) {
65 if (rc == CAPNG_FULL)
  /external/libnl/tests/
test-cache-mngr.c 32 struct nl_cache *lc, *nc, *ac, *rc; local
56 if ((err = nl_cache_mngr_add(mngr, "route/route", &change_cb, &rc)) < 0)
  /external/libopus/silk/float/
LPC_inv_pred_gain_FLP.c 46 double invGain, rc, rc_mult1, rc_mult2; local
55 rc = -Anew[ k ];
56 if( rc > RC_THRESHOLD || rc < -RC_THRESHOLD ) {
59 rc_mult1 = 1.0f - rc * rc;
66 Anew[ n ] = (silk_float)( ( Aold[ n ] - Aold[ k - n - 1 ] * rc ) * rc_mult2 );
69 rc = -Anew[ 0 ];
70 if( rc > RC_THRESHOLD || rc < -RC_THRESHOLD )
    [all...]
  /external/libselinux/src/
callbacks.c 17 int rc; local
20 rc = vfprintf(stderr, fmt, ap);
22 return rc;
init.c 32 int rc; local
42 rc = statfs(SELINUXMNT, &sfbuf);
43 } while (rc < 0 && errno == EINTR);
44 if (rc == 0) {
label.c 48 int rc = 0; local
53 rc = selinux_validate(&contexts->ctx_raw);
54 if (rc < 0)
59 return rc;
procattr.c 23 int fd, rc; local
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
34 if (rc < 0)
80 int fd, rc; local
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
91 if (rc < 0)
  /external/libsepol/src/
assertion.c 95 int rc; local
133 rc = -1;
143 rc = -1;
150 rc = 0;
154 return rc;
util.c 85 int rc; local
93 rc = hashtab_map(cladatum->permissions.table,
95 if (!rc && cladatum->comdatum) {
96 rc = hashtab_map(cladatum->comdatum->
100 if (rc)
  /external/libvpx/libvpx/vp9/common/
vp9_scan.c 302 int rc = scan[n]; local
303 if (rc == idx)
320 int rc = scan[n]; local
322 i = rc / l;
323 j = rc % l;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
rblist.c 20 int rc; local
24 rc = rblist->node_cmp(parent, new_entry);
25 if (rc > 0)
27 else if (rc < 0)
57 int rc; local
61 rc = rblist->node_cmp(parent, entry);
62 if (rc > 0)
64 else if (rc < 0)
  /external/lldb/test/lang/c/stepping/
main.c 34 int rc = c(val); // thread step-out while stopped at "c(2)" local
35 return rc;
  /external/oprofile/opjitconv/
parse_dump.c 30 int rc = OP_JIT_CONV_OK; local
75 rc = OP_JIT_CONV_FAIL;
77 return rc;
140 int rc = OP_JIT_CONV_OK; local
146 rc = OP_JIT_CONV_FAIL;
153 rc = OP_JIT_CONV_FAIL;
171 rc = OP_JIT_CONV_FAIL;
180 rc = OP_JIT_CONV_FAIL;
188 return rc;
198 int rc = OP_JIT_CONV_OK local
    [all...]
  /external/qemu/distrib/libselinux/src/
callbacks.c 17 int rc; local
20 rc = vfprintf(stderr, fmt, ap);
22 return rc;
init.c 32 int rc; local
42 rc = statfs(SELINUXMNT, &sfbuf);
43 } while (rc < 0 && errno == EINTR);
44 if (rc == 0) {
label.c 48 int rc = 0; local
53 rc = selinux_validate(&contexts->ctx_raw);
54 if (rc < 0)
59 return rc;
procattr.c 23 int fd, rc; local
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
34 if (rc < 0)
80 int fd, rc; local
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
91 if (rc < 0)

Completed in 695 milliseconds

1 2 3 45 6 7 8 91011>>