Searched defs:ta (Results 1 - 25 of 52) sorted by relevance

123

/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-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/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);
/external/testng/src/test/java/test/junit4/
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
H A DJUnit4Sample2.java15 public static final String[] SKIPPED = {"t3", "ta"};
37 public void ta() { method in class:JUnit4Sample2
/external/ipsec-tools/src/racoon/
H A Dsecurity.c74 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/
H A DSliderPreference.java97 protected Object onGetDefaultValue(TypedArray ta,int index) { argument
98 int dValue = (int)ta.getInt(index, INITIAL_VALUE);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.h135 char td, ta; // DC & AC huffman tables member in struct:GrFmtJpegReader::cmp_info
H A Dgrfmt_jpeg.cpp1052 int td, ta, c = lstrm.GetByte() - 1; local
1061 ta = td & 15;
1063 if( !(ta <= 3 && m_is_ta[ta] &&
1069 m_ci[c].ta = (char)ta;
1289 const short* ta = m_ta[m_ci[c].ta]; local
1305 cat = m_strm.GetHuff( ta );
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreeadaptor.c179 pANTLR3_BASE_TREE_ADAPTOR ta; local
183 ta = ANTLR3_TREE_ADAPTORNew(strFactory);
185 if (ta != NULL)
189 antlr3BaseTreeAdaptorInit(ta, debugger);
190 ta->create = (void * (*) (pANTLR3_BASE_TREE_ADAPTOR, pANTLR3_COMMON_TOKEN))
192 ta->setTokenBoundaries = (void (*) (pANTLR3_BASE_TREE_ADAPTOR, void *, pANTLR3_COMMON_TOKEN, pANTLR3_COMMON_TOKEN))
196 return ta;
/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/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_swtnl_t.c172 struct tnl_clipspace_attr *ta = &vtx->attr[i]; local
173 struct nouveau_array *a = &render->attrs[ta->attrib];
176 a->offset = swtnl->offset + ta->vertoffset;
/external/pdfium/third_party/libtiff/
H A Dtif_dirinfo.c338 const TIFFField* ta = *(const TIFFField**) a; local
341 if (ta->field_tag != tb->field_tag)
342 return (int)ta->field_tag - (int)tb->field_tag;
344 return (ta->field_type == TIFF_ANY) ?
345 0 : ((int)tb->field_type - (int)ta->field_type);
351 const TIFFField* ta = *(const TIFFField**) a; local
353 int ret = strcmp(ta->field_name, tb->field_name);
358 return (ta->field_type == TIFF_ANY) ?
359 0 : ((int)tb->field_type - (int)ta->field_type);
/external/libjpeg-turbo/
H A Djcmarker.c321 int i, td, ta; local
341 ta = cinfo->Se ? compptr->ac_tbl_no : 0;
343 emit_byte(cinfo, (td << 4) + ta);
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemb.c458 ENTROPY_CONTEXT *ta; local
464 ta = (ENTROPY_CONTEXT *)&t_above;
474 ta + vp8_block2above[b], tl + vp8_block2left[b]);
480 ta + vp8_block2above[b], tl + vp8_block2left[b]);
487 ta + vp8_block2above[b], tl + vp8_block2left[b]);
489 ta + vp8_block2above[b], tl + vp8_block2left[b]);
501 ENTROPY_CONTEXT *ta; local
513 ta = (ENTROPY_CONTEXT *)&t_above;
523 ta + vp8_block2above[b], tl + vp8_block2left[b]);
531 ta
541 ENTROPY_CONTEXT *ta; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemb.c30 ENTROPY_CONTEXT ta[MAX_MB_PLANE][16]; member in struct:optimize_ctx
599 a = &ctx->ta[plane][i];
756 ctx.ta[plane], ctx.tl[plane]);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr3xx_vertprog.c559 struct temporary_allocation * ta; local
585 ta = (struct temporary_allocation*)memory_pool_malloc(&compiler->Base.Pool,
587 memset(ta, 0, sizeof(struct temporary_allocation) * num_orig_temps);
619 ta[inst->U.I.SrcReg[i].Index].LastRead = end_loop ? end_loop : inst;
631 inst->U.I.SrcReg[i].Index = ta[orig].HwTemp;
633 if (ta[orig].Allocated && inst == ta[orig].LastRead)
634 hwtemps[ta[orig].HwTemp] = 0;
642 if (!ta[orig].Allocated) {
647 ta[ori
[all...]
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jcmarker.c311 int i, td, ta; local
324 ta = compptr->ac_tbl_no;
332 ta = 0; /* DC scan */
339 emit_byte(cinfo, (td << 4) + ta);
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp1011 T<&a> ta; local
1013 T<&b> tb(ta);
/external/iptables/libiptc/
H A Dlibiptc.c1925 STRUCT_ENTRY_TARGET *ta, *tb; local
1930 ta = GET_TARGET(a->entry);
1939 return ((STRUCT_STANDARD_TARGET *)ta)->verdict
1942 if (ta->u.target_size != tb->u.target_size)
1944 if (strcmp(ta->u.user.name, tb->u.user.name) != 0)
1947 for (i = 0; i < ta->u.target_size - sizeof(*ta); i++)
1948 if (((ta->data[i] ^ tb->data[i]) & mask[i]) != 0)
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dstroker.c501 VGfloat ta = line_dy(l1) / line_dx(l1); local
503 isect[1] = ta * l2[0] + l1[1] - ta*l1[0];
506 VGfloat ta = line_dy(l1) / line_dx(l1); local
508 if (ta == la)
511 x = ( - l2[1] + la * l2[0] + l1[1] - ta * l1[0] ) / (la - ta);
513 isect[1] = ta*(x - l1[0]) + l1[1];
/external/toybox/toys/posix/
H A Dps.c928 struct carveup *ta = *(struct carveup **)aa, *tb = *(struct carveup **)bb; local
936 if (ta->slot[slot]<tb->slot[slot]) ret = -1;
937 if (ta->slot[slot]>tb->slot[slot]) ret = 1;
942 memccpy(toybuf, string_field(ta, field), 0, 2048);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c1611 mp_int ta, tb, tq, q; local
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1640 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1648 if (mp_cmp(&tb, &ta) != MP_GT) {
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1660 /* now q == quotient and ta == remainder */
1668 mp_exch(d, &ta);
1672 mp_clear_multi(&ta, &tb, &tq, &q, NULL);
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c1611 mp_int ta, tb, tq, q; local
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1640 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1648 if (mp_cmp(&tb, &ta) != MP_GT) {
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1660 /* now q == quotient and ta == remainder */
1668 mp_exch(d, &ta);
1672 mp_clear_multi(&ta, &tb, &tq, &q, NULL);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c1611 mp_int ta, tb, tq, q; local
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1640 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1648 if (mp_cmp(&tb, &ta) != MP_GT) {
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1660 /* now q == quotient and ta == remainder */
1668 mp_exch(d, &ta);
1672 mp_clear_multi(&ta, &tb, &tq, &q, NULL);

Completed in 3101 milliseconds

123