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

1 2 3 45 6 7 8 91011

  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon63279
120 unsigned tc :1; /* truncated message */ member in struct:__anon63279
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon64056
120 unsigned tc :1; /* truncated message */ member in struct:__anon64056
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon64834
120 unsigned tc :1; /* truncated message */ member in struct:__anon64834
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon65602
120 unsigned tc :1; /* truncated message */ member in struct:__anon65602
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon66370
120 unsigned tc :1; /* truncated message */ member in struct:__anon66370
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon67148
120 unsigned tc :1; /* truncated message */ member in struct:__anon67148
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon67926
120 unsigned tc :1; /* truncated message */ member in struct:__anon67926
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/arpa/
nameser_compat.h 108 unsigned tc: 1; /* truncated message */ member in struct:__anon68703
120 unsigned tc :1; /* truncated message */ member in struct:__anon68703
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 168 TextChange tc = (TextChange) change; local
169 TextEdit edit = tc.getEdit();
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 931 TonemapCurve tc = new TonemapCurve(red, green, blue); local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_lgammal_r.c 65 * Domain x in [tc-0.24, tc+0.28], range ~[-6.3201e-37, 6.3201e-37]:
66 * |(lgamma(x) - tf) - t(x - tc)| < 2**-120.3.
69 tc = 1.46163214496836234126265954232572133e+00L, variable
266 else if(x>=2.3163998126983643e-01) {y= x-(tc-1); i=1;}
271 else if(x>=1.2316322326660156e+00) {y=x-tc;i=1;}
  /cts/tools/utils/
DescriptionGenerator.java 280 void addTestClass(TestClass tc) {
281 appendSuiteToElement(mDoc.getDocumentElement(), tc); local
  /external/avahi/avahi-core/
server.c 404 int tc = p && !!(avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS) & AVAHI_DNS_FLAG_TC); local
415 if (flush_cache && !tc && !auxiliary && avahi_record_list_all_flush_cache(s->record_list))
    [all...]
  /external/dnsmasq/src/
nameser.h 290 unsigned tc: 1; /* truncated message */ member in struct:__anon9993
302 unsigned tc :1; /* truncated message */ member in struct:__anon9993
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBodyHelpers.cpp 969 float tc=0.0f; local
971 tc = (1.0f/((resx-1))*ix);
974 tc = (1.0f/((resy-1))*(resy-1-iy));
977 tc = (1.0f/((resy-1))*(resy-1-iy-1));
980 tc = (1.0f/((resx-1))*(ix+1));
982 return tc;
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHull.cpp 452 btHullTriangle* tc = allocateTriangle(v,t[0],t[1]); local
453 tc->n = int3(t0->n[2],n+0,n+1);
457 checkit(tc);
460 if(hasvert(*m_tris[tc->n[0]],v)) removeb2b(tc,m_tris[tc->n[0]]);
  /external/libgdx/gdx/jni/gdx2d/
gdx2d.c 855 float tc = (1 - x_diff) * (y_diff); local
860 ((c3 & 0xff000000) >> 24) * tc +
864 ((c3 & 0xff0000) >> 16) * tc +
868 ((c3 & 0xff00) >> 8) * tc +
872 (c3 & 0xff) * tc +
  /external/mesa3d/src/mesa/swrast/
s_span.c 142 const GLfloat *tc = ctx->Current.RasterTexCoords[i]; local
145 COPY_4V(span->attrStart[attr], tc);
147 else if (tc[3] > 0.0F) {
149 span->attrStart[attr][0] = tc[0] / tc[3];
150 span->attrStart[attr][1] = tc[1] / tc[3];
151 span->attrStart[attr][2] = tc[2] / tc[3];
    [all...]
  /external/ppp/pppd/
eap.c 1324 struct t_client *tc; local
    [all...]
  /external/testng/src/main/java/org/testng/internal/
BaseTestMethod.java 131 public void setTestClass(ITestClass tc) {
132 assert null != tc; local
133 if (! tc.getRealClass().equals(m_method.getDeclaringClass())) {
134 assert m_method.getDeclaringClass().isAssignableFrom(tc.getRealClass()) :
135 "\nMISMATCH : " + tc.getRealClass() + " " + m_method.getDeclaringClass();
137 m_testClass = tc;
Utils.java 284 ITestAnnotation tc = AnnotationHelper.findTest(finder, cls); local
285 if (null != tc) {
286 for (String group : tc.getDependsOnGroups()) {
314 ITestAnnotation tc = AnnotationHelper.findTest(finder, cls); local
315 if (null != tc) {
316 for (String group : tc.getGroups()) {
  /external/testng/src/main/java/org/testng/reporters/
SuiteHTMLReporter.java 221 for (ITestClass tc : m_classes.values()) {
222 sb.append(generateClass(tc));
582 ITestClass tc = tm.getTestClass(); local
583 m_classes.put(tc.getRealClass().getName(), tc); local
635 ITestContext tc = sr.getTestContext(); local
636 int failed = tc.getFailedTests().size();
637 int skipped = tc.getSkippedTests().size();
638 int passed = tc.getPassedTests().size();
692 ITestContext tc = sr.getTestContext() local
    [all...]
  /external/v8/test/cctest/
test-macro-assembler-mips.cc 411 struct TestCaseLsa tc[] = {// rt, rs, sa, expected_res local
449 size_t nr_test_cases = sizeof(tc) / sizeof(TestCaseLsa);
451 uint32_t res = run_lsa(tc[i].rt, tc[i].rs, tc[i].sa);
452 PrintF("0x%x =? 0x%x == lsa(v0, %x, %x, %hhu)\n", tc[i].expected_res, res,
453 tc[i].rt, tc[i].rs, tc[i].sa);
454 CHECK_EQ(tc[i].expected_res, res)
    [all...]
test-macro-assembler-mips64.cc 479 struct TestCaseLsa tc[] = {// rt, rs, sa, expected_res local
517 size_t nr_test_cases = sizeof(tc) / sizeof(TestCaseLsa);
519 uint64_t res = run_lsa(tc[i].rt, tc[i].rs, tc[i].sa);
521 tc[i].expected_res, res, tc[i].rt, tc[i].rs, tc[i].sa);
522 CHECK_EQ(tc[i].expected_res, res)
561 struct TestCaseLsa tc[] = {\/\/ rt, rs, sa, expected_res local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 201 CHECK_BETTER(left, tr, tc - hstep); \
202 CHECK_BETTER(right, tr, tc + hstep); \
203 CHECK_BETTER(up, tr - hstep, tc); \
204 CHECK_BETTER(down, tr + hstep, tc); \
209 CHECK_BETTER(diag, tr - hstep, tc - hstep); \
212 CHECK_BETTER(diag, tr - hstep, tc + hstep); \
215 CHECK_BETTER(diag, tr + hstep, tc - hstep); \
218 CHECK_BETTER(diag, tr + hstep, tc + hstep); \
227 if (tr != br && tc != bc) { \
229 kc = bc - tc; \
299 int tc = bc; local
398 int tc = bc; local
900 int tr, tc; local
    [all...]

Completed in 669 milliseconds

1 2 3 45 6 7 8 91011