HomeSort by relevance Sort by last modified time
    Searched refs:ta (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/qemu/android/
audio-test.c 32 TestAudio* ta = opaque; local
34 //printf("%s: pos=%d free=%d\n", __FUNCTION__, ta->pos, free);
37 int avail = SAMPLE_SIZE - ta->pos;
41 AUD_write(ta->voice, ta->sample + ta->pos, avail);
42 ta->pos += avail;
43 if (ta->pos >= SAMPLE_SIZE)
44 ta->pos = 0;
51 testAudio_init( TestAudio* ta )
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ImageProcessingTest.java 96 public void runTest(TestAction ta, String testName) {
99 runOnUiThread(ta);
100 float bmValue = ta.getBenchmark();
117 TestAction ta = new TestAction(TestName.LEVELS_VEC3_RELAXED); local
118 runTest(ta, TestName.LEVELS_VEC3_RELAXED.name());
124 TestAction ta = new TestAction(TestName.LEVELS_VEC4_RELAXED); local
125 runTest(ta, TestName.LEVELS_VEC4_RELAXED.name());
131 TestAction ta = new TestAction(TestName.LEVELS_VEC3_FULL); local
132 runTest(ta, TestName.LEVELS_VEC3_FULL.name());
138 TestAction ta = new TestAction(TestName.LEVELS_VEC4_FULL) local
145 TestAction ta = new TestAction(TestName.BLUR_RADIUS_25); local
152 TestAction ta = new TestAction(TestName.INTRINSIC_BLUE_RADIUS_25); local
159 TestAction ta = new TestAction(TestName.GREYSCALE); local
166 TestAction ta = new TestAction(TestName.GRAIN); local
173 TestAction ta = new TestAction(TestName.FISHEYE_FULL); local
180 TestAction ta = new TestAction(TestName.FISHEYE_RELAXED); local
187 TestAction ta = new TestAction(TestName.FISHEYE_APPROXIMATE_FULL); local
194 TestAction ta = new TestAction(TestName.FISHEYE_APPROXIMATE_RELAXED); local
201 TestAction ta = new TestAction(TestName.VIGNETTE_FULL); local
208 TestAction ta = new TestAction(TestName.VIGNETTE_RELAXED); local
215 TestAction ta = new TestAction(TestName.VIGNETTE_APPROXIMATE_FULL); local
222 TestAction ta = new TestAction(TestName.VIGNETTE_APPROXIMATE_RELAXED); local
229 TestAction ta = new TestAction(TestName.GROUP_TEST_EMULATED); local
236 TestAction ta = new TestAction(TestName.GROUP_TEST_NATIVE); local
243 TestAction ta = new TestAction(TestName.CONVOLVE_3X3); local
250 TestAction ta = new TestAction(TestName.INTRINSICS_CONVOLVE_3X3); local
257 TestAction ta = new TestAction(TestName.COLOR_MATRIX); local
264 TestAction ta = new TestAction(TestName.INTRINSICS_COLOR_MATRIX); local
271 TestAction ta = new TestAction(TestName.INTRINSICS_COLOR_MATRIX_GREY); local
278 TestAction ta = new TestAction(TestName.COPY); local
285 TestAction ta = new TestAction(TestName.CROSS_PROCESS_USING_LUT); local
292 TestAction ta = new TestAction(TestName.CONVOLVE_5X5); local
299 TestAction ta = new TestAction(TestName.INTRINSICS_CONVOLVE_5X5); local
306 TestAction ta = new TestAction(TestName.MANDELBROT); local
313 TestAction ta = new TestAction(TestName.INTRINSICS_BLEND); local
320 TestAction ta = new TestAction(TestName.INTRINSICS_BLUR_25G); local
327 TestAction ta = new TestAction(TestName.VIBRANCE); local
334 TestAction ta = new TestAction(TestName.BW_FILTER); local
341 TestAction ta = new TestAction(TestName.SHADOWS); local
348 TestAction ta = new TestAction(TestName.CONTRAST); local
355 TestAction ta = new TestAction(TestName.EXPOSURE); local
362 TestAction ta = new TestAction(TestName.WHITE_BALANCE); local
369 TestAction ta = new TestAction(TestName.COLOR_CUBE); local
376 TestAction ta = new TestAction(TestName.COLOR_CUBE_3D_INTRINSIC); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXCertPathValidatorResultTest.java 79 TrustAnchor ta = TestUtils.getTrustAnchor(); local
80 if (ta == null) {
84 ta,
114 TrustAnchor ta = TestUtils.getTrustAnchor(); local
115 if (ta == null) {
121 ta,
135 TrustAnchor ta = TestUtils.getTrustAnchor(); local
136 if (ta == null) {
141 ta,
153 TrustAnchor ta = TestUtils.getTrustAnchor() local
176 TrustAnchor ta = TestUtils.getTrustAnchor(); local
202 TrustAnchor ta = TestUtils.getTrustAnchor(); local
229 TrustAnchor ta = TestUtils.getTrustAnchor(); local
253 TrustAnchor ta = TestUtils.getTrustAnchor(); local
304 TrustAnchor ta = TestUtils.getTrustAnchor(); local
325 TrustAnchor ta = TestUtils.getTrustAnchor(); local
    [all...]
PKIXCertPathBuilderResultTest.java 87 TrustAnchor ta = TestUtils.getTrustAnchor(); local
88 if (ta == null) {
94 ta,
110 TrustAnchor ta = TestUtils.getTrustAnchor(); local
111 if (ta == null) {
117 ta,
130 TrustAnchor ta = TestUtils.getTrustAnchor(); local
131 if (ta == null) {
139 ta,
173 TrustAnchor ta = TestUtils.getTrustAnchor() local
193 TrustAnchor ta = TestUtils.getTrustAnchor(); local
195 + ": not performed (could not create test TrustAnchor)", ta); local
217 TrustAnchor ta = TestUtils.getTrustAnchor(); local
244 TrustAnchor ta = TestUtils.getTrustAnchor(); local
    [all...]
TrustAnchorTest.java 105 TrustAnchor ta = new TrustAnchor(validCaNameRfc2253, pk, ncCopy); local
110 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
216 TrustAnchor ta = new TrustAnchor(new X500Principal(validCaNameRfc2253), local
222 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
277 TrustAnchor ta = local
279 assertEquals("equals1", pk, ta.getCAPublicKey());
282 ta = new TrustAnchor(x500p, pk, null);
283 assertEquals("equals2", pk, ta.getCAPublicKey());
300 TrustAnchor ta = local
302 assertEquals("equals1", validCaNameRfc2253, ta.getCAName())
323 TrustAnchor ta = local
347 TrustAnchor ta = local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
PKIXCertPathValidatorResultTest.java 73 TrustAnchor ta = TestUtils.getTrustAnchor(); local
74 if (ta == null) {
78 ta,
108 TrustAnchor ta = TestUtils.getTrustAnchor(); local
109 if (ta == null) {
115 ta,
129 TrustAnchor ta = TestUtils.getTrustAnchor(); local
130 if (ta == null) {
135 ta,
147 TrustAnchor ta = TestUtils.getTrustAnchor() local
170 TrustAnchor ta = TestUtils.getTrustAnchor(); local
196 TrustAnchor ta = TestUtils.getTrustAnchor(); local
223 TrustAnchor ta = TestUtils.getTrustAnchor(); local
247 TrustAnchor ta = TestUtils.getTrustAnchor(); local
298 TrustAnchor ta = TestUtils.getTrustAnchor(); local
319 TrustAnchor ta = TestUtils.getTrustAnchor(); local
    [all...]
PKIXCertPathBuilderResultTest.java 82 TrustAnchor ta = TestUtils.getTrustAnchor(); local
83 if (ta == null) {
89 ta,
105 TrustAnchor ta = TestUtils.getTrustAnchor(); local
106 if (ta == null) {
112 ta,
125 TrustAnchor ta = TestUtils.getTrustAnchor(); local
126 if (ta == null) {
134 ta,
168 TrustAnchor ta = TestUtils.getTrustAnchor() local
187 TrustAnchor ta = TestUtils.getTrustAnchor(); local
189 + ": not performed (could not create test TrustAnchor)", ta); local
211 TrustAnchor ta = TestUtils.getTrustAnchor(); local
238 TrustAnchor ta = TestUtils.getTrustAnchor(); local
    [all...]
TrustAnchorTest.java 108 TrustAnchor ta = new TrustAnchor(validCaNameRfc2253, pk, ncCopy); local
113 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
219 TrustAnchor ta = new TrustAnchor(new X500Principal(validCaNameRfc2253), local
225 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
411 TrustAnchor ta = local
413 assertEquals("equals1", pk, ta.getCAPublicKey());
416 ta = new TrustAnchor(x500p, pk, null);
417 assertEquals("equals2", pk, ta.getCAPublicKey());
434 TrustAnchor ta = local
436 assertEquals("equals1", validCaNameRfc2253, ta.getCAName())
457 TrustAnchor ta = local
562 TrustAnchor ta = local
    [all...]
  /frameworks/wilhelm/tests/sandbox/
multithread.c 46 ThreadArgument *ta = (ThreadArgument *) param; local
51 ++ta->mCounter;
52 switch (ta->mObjectID) {
56 result = (*ta->mEngineEngine)->CreateOutputMix(ta->mEngineEngine, &myMixObject, 0, NULL,
67 SLDataLocator_URI locURI = {SL_DATALOCATOR_URI, ta->mURI};
70 SLDataLocator_OutputMix locOutputMix = {SL_DATALOCATOR_OUTPUTMIX, ta->mMixObject};
73 result = (*ta->mEngineEngine)->CreateAudioPlayer(ta->mEngineEngine, &myPlayerObject,
132 ThreadArgument *ta = &thread_args[i] local
165 ThreadArgument *ta = &thread_args[i]; local
177 ThreadArgument *ta = &thread_args[i]; local
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java 59 TypedArray ta = local
63 assertEqualsTextAppearanceStyle(ta);
106 private void assertEqualsTextAppearanceStyle(TypedArray ta) {
113 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount());
115 ta.getColor(R.styleable.TextAppearance_textColor, defValue));
117 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue));
119 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue));
121 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue));
123 ta.getDimension(R.styleable.TextAppearance_textSize, defValue));
125 ta.getInt(R.styleable.TextAppearance_textStyle, defValue))
    [all...]
  /bionic/libc/netbsd/nameser/
ns_samedomain.c 202 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
204 if (ns_makecanon(a, ta, sizeof ta) < 0 ||
207 if (strcasecmp(ta, tb) == 0)
  /external/qemu/audio/
audio.h 153 __typeof (a) ta = a; \
155 ((ta)>(tb)?(tb):(ta)); \
159 __typeof (a) ta = a; \
161 ((ta)<(tb)?(tb):(ta)); \
  /external/webkit/Tools/Scripts/
report-include-statistics 109 my $ta = keys %{ $totalIncludes{$filea} };
111 return $ta <=> $tb if $ta != $tb;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
TrustAnchor_ImplTest.java 121 TrustAnchor ta = new TrustAnchor( local
128 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
412 TrustAnchor ta = new TrustAnchor( local
414 byte[] ncRet = ta.getNameConstraints();
419 assertNotSame(ncRet, ta.getNameConstraints());
440 TrustAnchor ta = new TrustAnchor( local
443 assertNull(ta.getCAPublicKey());
463 TrustAnchor ta = new TrustAnchor( local
466 assertNull(ta.getCAName());
487 TrustAnchor ta = new TrustAnchor(cert, null) local
508 TrustAnchor ta = new TrustAnchor( local
531 TrustAnchor ta = new TrustAnchor( local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarOverlayLayout.java 60 TypedArray ta = getContext().getTheme().obtainStyledAttributes(mActionBarSizeAttr); local
61 mActionBarHeight = ta.getDimensionPixelSize(0, 0);
62 ta.recycle();
  /external/dropbear/libtommath/
bn_mp_div.c 23 mp_int ta, tb, tq, q; local
45 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
52 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
60 if (mp_cmp(&tb, &ta) != MP_GT) {
61 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
72 /* now q == quotient and ta == remainder */
80 mp_exch(d, &ta);
84 mp_clear_multi(&ta, &tb, &tq, &q, NULL);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 69 const uchar *ta = &tb[256]; local
73 uchar4 o = {tr[p.x], tg[p.y], tb[p.z], ta[p.w]};
  /external/libvpx/libvpx/vp8/encoder/
encodemb.c 513 ENTROPY_CONTEXT *ta; local
519 ta = (ENTROPY_CONTEXT *)&t_above;
529 ta + vp8_block2above[b], tl + vp8_block2left[b]);
535 ta + vp8_block2above[b], tl + vp8_block2left[b]);
542 ta + vp8_block2above[b], tl + vp8_block2left[b]);
544 ta + vp8_block2above[b], tl + vp8_block2left[b]);
556 ENTROPY_CONTEXT *ta; local
568 ta = (ENTROPY_CONTEXT *)&t_above;
578 ta + vp8_block2above[b], tl + vp8_block2left[b]);
586 ta + vp8_block2above[b], tl + vp8_block2left[b])
596 ENTROPY_CONTEXT *ta; local
    [all...]
  /external/ipsec-tools/src/racoon/
security.c 74 struct isakmp_parse_t *ta; local
121 ta = (struct isakmp_parse_t *)tbuf->v;
122 if (ta->type != ISAKMP_NPTYPE_T) {
124 "Invalid payload type=%u\n", ta->type);
128 trns = (struct isakmp_pl_t *)ta->ptr;
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 97 protected Object onGetDefaultValue(TypedArray ta,int index) {
98 int dValue = (int)ta.getInt(index, INITIAL_VALUE);
  /frameworks/base/services/java/com/android/server/
AttributeCache.java 58 public Entry(Context c, TypedArray ta) {
60 array = ta;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 473 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs); local
474 map.put(resid, ta);
476 return ta;
487 TypedArray ta = map.get(resid); local
489 if (ta == null) {
490 ta = createStyleBasedTypedArray(style, attrs);
491 map.put(resid, ta);
494 return ta;
538 BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length, local
697 ta.bridgeSetValue(index, attrName, frameworkAttr, resValue)
730 BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length, local
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
TypedArrayTest.java 166 final TypedArray ta = getContext().getResources().obtainAttributes(set, local
168 assertEquals(1, ta.getIndexCount());
169 assertEquals(EXPECTED_NON_RESOURCE_STRING, ta.getNonResourceString(
171 ta.recycle();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
SplineMath.java 61 double ta = a * y1; local
65 double y = ta + tb + (delta2 / 6) * (tc + td);
102 double ta = a * y1; local
106 double y = ta + tb + (delta2 / 6) * (tc + td);
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieTransition.java 68 final TransitionAlpha ta = (TransitionAlpha)transition; local
69 mAlphaMaskFilename = ta.getMaskFilename();
71 mAlphaMaskBlendingPercent = ta.getBlendingPercent();
72 mAlphaInvert = ta.isInvert();

Completed in 2484 milliseconds

1 2 3 4 5 6 7