/external/clang/test/CodeGen/ |
2008-02-26-inline-asm-bug.c | 4 int d1, d2; local 5 asm("%0,%1": "=r" (d1) : "r" (d2));
|
x86.c | 12 int d1, d2; local 13 asm ("" : "=a" (d1), "=b" (d2) :
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieIdentityComparator.java | 59 String d2 = c2.getDomain(); local 60 if (d2 == null) { 61 d2 = ""; 63 res = d1.compareToIgnoreCase(d2);
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnClassifier.cpp | 60 float d2 = -a2 + 3 * a3; local 66 // the vector defined by (d1, d2, d3), this fixes the problem of the 69 FloatPoint3D nd(d1, d2, d3); 72 d2 = nd.y(); 78 float term0 = (3 * d2 * d2 - 4 * d1 * d3); 87 d2 = roundToZero(d2); 93 return Result(kPoint, d1, d2, d3); 96 if (!d1 && !d2) { [all...] |
LoopBlinnClassifier.h | 59 , d2(inputD2) 67 float d2; member in struct:WebCore::LoopBlinnClassifier::Result
|
/external/chromium/third_party/modp_b64/ |
modp_b64_data.h | 204 static const uint32_t d2[256] = { variable 397 static const uint32_t d2[256] = { variable
|
/external/clang/test/SemaTemplate/ |
fun-template-def.cpp | 43 dummy d2 = offsetof(T, foo); // expected-error {{no viable conversion}} local
|
instantiation-default-1.cpp | 16 void test_Def1(Def1<int, const int> *d1, Def1<const int, const int> *d2, 19 d2->bar(); 31 void test_Def2(Def2<int, int const*> *d2) { 32 d2->foo(); 36 Def2<int_ref_t> *d2; // expected-note{{in instantiation of default argument for 'Def2<int &>' required here}} variable
|
/external/libffi/testsuite/libffi.call/ |
struct2.c | 13 double d2; member in struct:__anon7325 19 ts.d2--; 52 ts2_arg.d2 = 6.66; 55 printf ("%g\n", ts2_arg.d2); 60 printf ("%g\n", ts2_result->d2); 63 CHECK(ts2_result->d2 == 6.66 - 1);
|
/external/libvpx/vp8/encoder/ |
dct.c | 68 int a2, b2, c2, d2; local 101 d2 = a1 - d1; 106 d2 += d2<0; 111 op[12]= (d2+3) >> 3;
|
/external/llvm/test/MC/MachO/ |
variable-exprs.s | 18 d2 = d define 19 .globl d2 33 .long d2 209 // CHECK-I386: ('_string', 'd2') 410 // CHECK-X86_64: ('_string', 'd2')
|
/system/netd/ |
main.cpp | 104 DIR *d2; local 116 d2 = fdopendir(fd); 117 if(d2 == 0) 120 do_coldboot(d2, lvl + 1); 121 closedir(d2);
|
PppController.cpp | 85 char *d2 = strdup(inet_ntoa(dns2)); local 96 lr, "ms-dns", d1, "ms-dns", d2, "lcp-max-configure", "99999", (char *) NULL)) {
|
/cts/tools/host/test/com/android/cts/ |
DeviceManagerTests.java | 24 private TestDevice d1, d2, d3; field in class:DeviceManagerTests 33 d2 = new TestDevice(d2SerialNumber); 40 d1 = d2 = d3 = null; 57 dm.mDevices.add(d2); 103 dm.mDevices.add(d2); 120 d2.setStatus(TestDevice.STATUS_OFFLINE); 122 dm.mDevices.add(d2); 132 assertEquals(TestDevice.STATUS_IDLE, d2.getStatus()); 144 d2.setStatus(TestDevice.STATUS_OFFLINE); 146 dm.mDevices.add(d2); [all...] |
/external/valgrind/main/massif/tests/ |
alloc-fns.c | 20 void d2(int n) { d3(n); } function 21 void d1(int n) { d2(n); } 31 d2(400);
|
/external/webkit/Source/WebCore/platform/graphics/ |
UnitBezier.h | 69 double d2; local 77 d2 = sampleCurveDerivativeX(t2); 78 if (fabs(d2) < 1e-6) 80 t2 = t2 - x2 / d2;
|
/dalvik/tests/080-oom-throw/src/ |
Main.java | 37 double d1, d2, d3, d4, d5, d6, d7, d8; field in class:Main.InstanceMemEater
|
/external/chromium/webkit/glue/ |
glue_serialize_unittest.cc | 37 const char d2[] = "data the second"; local 38 http_body.appendData(WebData(d2, sizeof(d2)-1));
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p12.cpp | 99 Derived2<int> d2; local 100 d2.foo(i); 101 d2.testUnresolved(i);
|
/external/clang/test/CodeGenCXX/ |
copy-assign-synthesis.cpp | 54 X() : d(0.0), d1(1.1), d2(1.2), d3(1.3) {} 57 double d2; member in struct:X 60 printf("d = %f d1 = %f d2 = %f d3 = %f\n", d, d1,d2,d3);
|
empty-classes.cpp | 45 D d1, d2; local 46 d2 = d1; 49 CHECK(d2.a == 0x87654321);
|
/external/clang/test/Sema/ |
anonymous-struct-union.c | 5 double d2; member in union:X::__anon4824
|
attr-aligned.c | 33 char d2[__alignof__(d.member) == 2 ?: -1] = {0}; variable
|
/external/clang/test/SemaCXX/ |
overload-member-call.cpp | 52 double& d2 = X::g(0.0); local
|
warn-sign-compare.cpp | 29 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}} local 63 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}} local
|