HomeSort by relevance Sort by last modified time
    Searched defs:xa (Results 1 - 13 of 13) sorted by null

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7.cpp 15 auto xa = x, xb = 0; local
  /system/media/wilhelm/tests/examples/
xaVideoDecoderCapabilities.cpp 60 XAObjectItf xa; local
71 res = xaCreateEngine( &xa, 1, EngineOption, NUM_ENGINE_INTERFACES, itfIidArray, itfRequired);
75 res = (*xa)->Realize(xa, XA_BOOLEAN_FALSE); ExitOnError(res);
79 res = (*xa)->GetInterface(xa, XA_IID_VIDEODECODERCAPABILITIES, (void*)&decItf);
126 (*xa)->Destroy(xa);
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 147 } xa, xb; local
148 #define a xa.x8
312 } xa, xb; local
313 #define a xa.x8
  /external/openssl/crypto/jpake/
jpake.c 9 * In the definition, (xa, xb, xc, xd) are Alice's (x1, x2, x3, x4) or
29 BIGNUM *xa; /* Alice's x1 or Bob's x3 */ member in struct:JPAKE_CTX
89 ctx->xa = BN_new();
100 BN_clear_free(ctx->xa);
254 /* Generate each party's random numbers. xa is in [0, q), xb is in [1, q). */
259 /* xa in [0, q) */
260 BN_rand_range(ctx->xa, ctx->p.q);
279 generate_step_part(&send->p1, ctx->xa, ctx->p.g, ctx);
351 * X = g^{(xa + xc + xd) * xb * s}
352 * t1 = g^xa
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
tytypes.c 69 static void pp_XArray_of_cuOffs ( XArray* xa )
73 for (i = 0; i < VG_(sizeXA)(xa); i++) {
74 UWord cuOff = *(UWord*)VG_(indexXA)(xa, i);
76 if (i+1 < VG_(sizeXA)(xa))
258 XArray* xa = ent->Te.TyArray.boundRs; local
259 for (w = 0; w < VG_(sizeXA)(xa); w++) {
260 pp_TyBound_C_ishly( tyents, *(UWord*)VG_(indexXA)(xa, w) );
709 static void copy_UWord_into_XA ( XArray* /* of UChar */ xa,
714 VG_(addBytesToXA)( xa, buf, VG_(strlen)(buf));
723 XArray* xa = VG_(newXA)( ML_(dinfo_zalloc), "di.tytypes.dt.1" local
    [all...]
readdwarf3.c 545 XArray* xa; /* XArray of UChar */ local
561 /* Who frees this xa? It is freed before this fn exits. */
562 xa = VG_(newXA)( ML_(dinfo_zalloc), "di.readdwarf3.mgGX.1",
566 { UChar c = 1; /*biasMe*/ VG_(addBytesToXA)( xa, &c, sizeof(c) ); }
609 VG_(addBytesToXA)( xa, &c, sizeof(c) );
611 VG_(addBytesToXA)( xa, &w, sizeof(w) );
613 VG_(addBytesToXA)( xa, &w, sizeof(w) );
615 VG_(addBytesToXA)( xa, &s, sizeof(s) );
622 VG_(addBytesToXA)( xa, &byte, 1 );
628 { UChar c = 1; /*isEnd*/ VG_(addBytesToXA)( xa, &c, sizeof(c) );
686 XArray* xa; \/* XArray of AddrRange *\/ local
698 XArray* xa; local
726 XArray* xa; \/* XArray of AddrRange *\/ local
1267 XArray* xa = parser->ranges[i]; local
1730 XArray* \/* of AddrRange *\/ xa; local
    [all...]
  /external/valgrind/main/coregrind/
m_xarray.c 58 struct _XArray* xa; local
68 xa = alloc_fn( cc, sizeof(struct _XArray) );
69 vg_assert(xa);
70 xa->alloc = alloc_fn;
71 xa->cc = cc;
72 xa->free = free_fn;
73 xa->cmpFn = NULL;
74 xa->elemSzB = elemSzB;
75 xa->usedsizeE = 0;
76 xa->totsizeE = 0
84 struct _XArray* xa = (struct _XArray*)xao; local
120 struct _XArray* xa = (struct _XArray*)xao; local
130 struct _XArray* xa = (struct _XArray*)xao; local
139 struct _XArray* xa = (struct _XArray*)xao; local
183 struct _XArray* xa = (struct _XArray*)xao; local
201 struct _XArray* xa = (struct _XArray*)xao; local
221 struct _XArray* xa = (struct _XArray*)xao; local
234 struct _XArray* xa = (struct _XArray*)xao; local
265 struct _XArray* xa = (struct _XArray*)xao; local
274 struct _XArray* xa = (struct _XArray*)xao; local
281 struct _XArray* xa = (struct _XArray*)xao; local
290 struct _XArray* xa = (struct _XArray*)xao; local
313 struct _XArray* xa = (struct _XArray*)xao; local
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 260 X509_ALGOR *xa = NULL; local
301 xa = p7->d.digest->md;
315 if (xa && !PKCS7_bio_add_digest(&out, xa))
417 X509_ALGOR *xa; local
469 xa=sk_X509_ALGOR_value(md_sk,i);
476 j=OBJ_obj2nid(xa->algorithm);
1125 X509_ATTRIBUTE *xa; local
1132 xa=sk_X509_ATTRIBUTE_value(sk,i);
1133 if (OBJ_cmp(xa->object,o) == 0
    [all...]
  /bionic/libc/stdlib/
strtod.c 674 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local
696 for(x = c->x, xa = x + wc; x < xa; x++)
698 xa = a->x;
699 xae = xa + wa;
706 x = xa;
720 x = xa;
738 x = xa;
890 ULong *xa, *xa0, *xb, *xb0; local
911 xa = xa0 + j
934 ULong *xa, *xae, *xb, *xbe, *xc; local
1060 ULong *xa, *xa0, w, y, z; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 336 const uint32_t* xa; local
360 for (xc = c.words(), xa = xc + wc; xc < xa; xc++)
362 xa = a->words();
363 xae = xa + wa;
370 x = xa;
384 x = xa;
397 x = xa;
528 const uint32_t *xa, *xa0, *xb, *xb0; local
538 xa = xa0 + j
573 const uint32_t* xa = a->words(); local
629 const uint32_t* xa; local
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 805 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; variable
828 for(x = c->x, xa = x + wc; x < xa; x++)
830 xa = a->x;
831 xae = xa + wa;
838 x = xa;
854 x = xa;
868 x = xa;
886 x = xa;
1032 ULong *xa, *xa0, *xb, *xb0 variable
1068 ULong *xa, *xae, *xb, *xbe, *xc; variable
1202 ULong *xa, *xa0, w, y, z; variable
    [all...]
  /external/valgrind/main/helgrind/
hg_main.c 2591 XArray* xa; local
2608 XArray* xa; local
2650 XArray* xa = (XArray*)valW; local
    [all...]
  /external/kernel-headers/original/linux/
cdrom.h 251 __u8 xa_flag; /* 1: "is XA disk" */
319 * - XA data (green, mode2 form1): | sync - head - sub - data - EDC - ECC |
322 * - XA data (green, mode2 form2): | sync - head - sub - data - Spare |
337 #define CD_SUBHEAD_SIZE 8 /* subheader bytes per raw XA data frame */
348 #define CD_XA_HEAD (CD_HEAD_SIZE+CD_SUBHEAD_SIZE) /* "before data" part of raw XA frame */
349 #define CD_XA_TAIL (CD_EDC_SIZE+CD_ECC_SIZE) /* "after data" part of raw XA frame */
350 #define CD_XA_SYNC_HEAD (CD_SYNC_SIZE+CD_XA_HEAD) /* sync bytes + header of XA frame */
1000 int xa; member in struct:__anon7140
    [all...]

Completed in 1148 milliseconds