Searched refs:ta (Results 1 - 25 of 152) sorted by relevance

1234567

/external/v8/test/mjsunit/regress/
H A Dregress-et-clobbers-doubles.js37 var ta = [1,,3]; variable
38 t_smi(ta);
39 assertEquals([1.5,,3], ta);
H A Dregress-crbug-501809.js7 var ta = new Int32Array(sab);
8 ta.__defineSetter__('length', function() {;});
10 Atomics.compareExchange(ta, 4294967295, 0, 0);
H A Dregress-convert-hole2.js70 var ta = [1,,3]; variable
71 t_smi(ta);
72 ta.__proto__ = [6,6,6];
73 assertEquals([1.5,6,3], ta);
/external/v8/test/mjsunit/es7/
H A Dtyped-array-includes.js61 var ta = new TypedArrayConstructor([1, 2, 3]);
64 ta.includes(2, Symbol());
82 var ta = new TypedArrayConstructor([1, 2, 3]);
85 ta.includes(2, fromIndex);
95 var ta = new TypedArrayConstructor([1, 2, 3]);
96 assertTrue(ta.includes(1));
97 assertTrue(ta.includes(2));
98 assertTrue(ta.includes(3));
107 var ta = new TypedArrayConstructor([1, 2]);
108 assertFalse(ta
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DPKIXCertPathValidatorResultTest.java81 TrustAnchor ta = TestUtils.getTrustAnchor();
82 if (ta == null) {
86 ta,
116 TrustAnchor ta = TestUtils.getTrustAnchor();
117 if (ta == null) {
123 ta,
137 TrustAnchor ta = TestUtils.getTrustAnchor();
138 if (ta == null) {
143 ta,
156 TrustAnchor ta
[all...]
H A DPKIXCertPathBuilderResultTest.java90 TrustAnchor ta = TestUtils.getTrustAnchor();
91 if (ta == null) {
97 ta,
114 TrustAnchor ta = TestUtils.getTrustAnchor();
115 if (ta == null) {
121 ta,
134 TrustAnchor ta = TestUtils.getTrustAnchor();
135 if (ta == null) {
143 ta,
177 TrustAnchor ta
[all...]
H A DTrustAnchorTest.java108 TrustAnchor ta = new TrustAnchor(validCaNameRfc2253, pk, ncCopy);
113 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
222 TrustAnchor ta = new TrustAnchor(new X500Principal(validCaNameRfc2253),
228 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
283 TrustAnchor ta =
285 assertEquals("equals1", pk, ta.getCAPublicKey());
288 ta = new TrustAnchor(x500p, pk, null);
289 assertEquals("equals2", pk, ta.getCAPublicKey());
307 TrustAnchor ta =
309 assertEquals("equals1", validCaNameRfc2253, ta
[all...]
/external/v8/test/mjsunit/
H A Dd8-worker-sharedarraybuffer.js36 var ta = new Uint32Array(sab);
41 if (ta[i] !== i) {
45 // Atomically update ta[0]
46 Atomics.store(ta, 0, 100);
52 var ta = new Uint32Array(sab);
54 ta[i] = i;
61 // Spinwait for the worker to update ta[0]
63 while ((ta0 = Atomics.load(ta, 0)) == 0) {}
77 var ta = new Uint32Array(sab);
78 Atomics.store(ta, i
[all...]
/external/clang/test/Analysis/
H A Duninit-const.c63 int ta[5]; local
64 int* tp = ta; // expected-note {{'tp' initialized here}}
70 int ta[5]; // expected-note {{'ta' initialized here}} local
71 doStuff_pointerToConstInt(ta); // expected-warning {{Function call argument is a pointer to uninitialized value}}
76 int ta[5] = {1,2,3,4,5}; local
77 int* tp = ta;
82 int ta[5] = {1,2,3,4,5}; local
83 doStuff_pointerToConstInt(ta); // no-warning
/external/jemalloc/test/unit/
H A Dticker.c51 ticker_t ta, tb; local
53 ticker_init(&ta, NTICKS);
54 ticker_copy(&tb, &ta);
59 ticker_tick(&ta);
60 ticker_copy(&tb, &ta);
H A Datomic.c11 #define TEST_BODY(p, t, tc, ta, FMT) do { \
35 assert_##ta##_eq(atomic_read_##p(&accum), \
39 assert_##ta##_eq(atomic_add_##p(&accum, tests[i].x), \
43 assert_##ta##_eq(atomic_read_##p(&accum), accum, \
47 assert_##ta##_eq(atomic_sub_##p(&accum, tests[i].x), \
51 assert_##ta##_eq(atomic_read_##p(&accum), accum, \
58 assert_##ta##_eq(accum, err ? tests[i].accum0 : \
63 assert_##ta##_eq(accum, tests[i].s, \
/external/v8/test/mjsunit/asm/
H A Datomics-and.js74 var ta = new taConstr(sab, offset);
75 var name = Object.prototype.toString.call(ta);
76 ta[0] = 0x7f;
78 assertEquals(0xf, ta[0]);
80 assertEquals(0x9, ta[0]);
83 assertThrows(function() { f(ta.length, 0); });
H A Datomics-sub.js74 var ta = new taConstr(sab, offset);
75 var name = Object.prototype.toString.call(ta);
76 ta[0] = 30;
78 assertEquals(20, ta[0]);
80 assertEquals(10, ta[0]);
83 assertThrows(function() { f(ta.length, 0); });
H A Datomics-add.js74 var ta = new taConstr(sab, offset);
75 var name = Object.prototype.toString.call(ta);
77 assertEquals(10, ta[0]);
79 assertEquals(20, ta[0]);
82 assertThrows(function() { f(ta.length, 0); });
H A Datomics-exchange.js77 var ta = new taConstr(sab, offset);
78 var name = Object.prototype.toString.call(ta);
79 ta[0] = 0x7f;
81 assertEquals(0xf, ta[0]);
84 assertThrows(function() { f(ta.length, 0); });
H A Datomics-or.js77 var ta = new taConstr(sab, offset);
78 var name = Object.prototype.toString.call(ta);
80 assertEquals(0xf, ta[0]);
82 assertEquals(0x1f, ta[0]);
85 assertThrows(function() { f(ta.length, 0); });
H A Datomics-xor.js74 var ta = new taConstr(sab, offset);
75 var name = Object.prototype.toString.call(ta);
77 assertEquals(0xf, ta[0]);
79 assertEquals(0x1e, ta[0]);
82 assertThrows(function() { f(ta.length, 0); });
H A Datomics-compareexchange.js80 var ta = new taConstr(sab, offset);
81 var name = Object.prototype.toString.call(ta);
82 assertEquals(0, ta[0]);
84 assertEquals(50, ta[0]);
87 assertEquals(50, ta[0]);
90 assertThrows(function() { f(ta.length, 0, 0); });
H A Datomics-load.js68 var ta = new taConstr(sab, offset);
69 var name = Object.prototype.toString.call(ta);
70 ta[0] = 10;
75 assertThrows(function() { f(ta.length); });
H A Datomics-store.js74 var ta = new taConstr(sab, offset);
75 var name = Object.prototype.toString.call(ta);
77 assertEquals(10, ta[0]);
80 assertThrows(function() { f(ta.length, 0); });
/external/testng/src/test/java/test/junit4/
H A DJUnit4Sample2.java15 public static final String[] SKIPPED = {"t3", "ta"};
37 public void ta() { method in class:JUnit4Sample2
H A DJUnit4ParameterizedTest.java18 public static final String[] SKIPPED = {"t3[0]", "t3[1]", "ta[0]", "ta[1]"};
54 public void ta() { method in class:JUnit4ParameterizedTest
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DEventState.java214 double ta = t0;
246 // - there was an event near ta,
247 // - there is another event between ta and tb
248 // - when ta was computed, convergence was reached on the "wrong side" of the interval
250 // shift ta to make sure ga and gb get opposite signs and the solver won't complain
254 ta += epsilon;
256 ga = f.value(ta);
269 root = (ta <= tb) ?
270 solver.solve(maxIterationCount, f, ta, tb) :
271 solver.solve(maxIterationCount, f, tb, ta);
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
H A DTrustAnchor_ImplTest.java121 TrustAnchor ta = new TrustAnchor(
128 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
413 TrustAnchor ta = new TrustAnchor(
415 byte[] ncRet = ta.getNameConstraints();
420 assertNotSame(ncRet, ta.getNameConstraints());
441 TrustAnchor ta = new TrustAnchor(
444 assertNull(ta.getCAPublicKey());
465 TrustAnchor ta = new TrustAnchor(
468 assertNull(ta.getCAName());
489 TrustAnchor ta
[all...]
/external/v8/test/mjsunit/harmony/
H A Dfutex.js21 ta) {
22 assertThrows(function() { Atomics.futexWait(ta, 0, 0); });
23 assertThrows(function() { Atomics.futexWake(ta, 0, 1); });
24 assertThrows(function() { Atomics.futexWakeOrRequeue(ta, 0, 1, 0, 0); });
41 ta) {
42 assertThrows(function() { Atomics.futexWait(ta, 0, 0); });
43 assertThrows(function() { Atomics.futexWake(ta, 0, 1); });
44 assertThrows(function() { Atomics.futexWakeOrRequeue(ta, 0, 1, 0, 0); });

Completed in 813 milliseconds

1234567