Searched defs:bd (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/CXX/special/class.inhctor/
H A Delsewhere.cpp40 B<double> bd; // expected-note {{here}} variable
/external/libvpx/libvpx/test/
H A Dsubtract_test.cc21 typedef void (*subtract_b_fn_t)(BLOCK *be, BLOCKD *bd, int pitch);
32 BLOCKD bd; local
44 bd.predictor = reinterpret_cast<unsigned char*>(
45 vpx_memalign(16, kBlockHeight * kDiffPredStride * sizeof(*bd.predictor)));
72 uint8_t *predictor = bd.predictor;
80 GetParam()(&be, &bd, kDiffPredStride);
84 predictor = bd.predictor;
97 vpx_free(bd.predictor);
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_sse2.c36 void vp8_subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch) argument
41 unsigned char *predictor = &bd->predictor[0];
H A Dvp8_enc_stubs_mmx.c71 void vp8_subtract_b_mmx(BLOCK *be, BLOCKD *bd, int pitch) argument
76 unsigned char *predictor = &bd->predictor[0];
/external/v8/src/
H A Ddiy-fp.cc49 uint64_t bd = b * d; local
50 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
/external/clang/test/SemaCXX/
H A Ddefaulted-private-dtor.cpp17 BadDtor bd; // expected-note {{inaccessible destructor}} member in struct:V
H A Dconditional-expr.cpp100 BadDerived bd; local
101 (void)(i1 ? bb : bd); // expected-error {{conditional expression is ambiguous; 'BadBase' can be converted to 'BadDerived' and vice versa}}
102 (void)(i1 ? bd : bb); // expected-error {{conditional expression is ambiguous}}
/external/compiler-rt/lib/ppc/
H A Dmultc3.c28 long double bd = __gcc_qmul(b,d); local
32 DD real = { .ld = __gcc_qsub(ac,bd) };
65 DD bdDD = { .ld = bd };
/external/qemu/audio/
H A Ddsound_template.h190 DSCBUFFERDESC bd; local
195 DSBUFFERDESC bd; local
209 memset (&bd, 0, sizeof (bd));
210 bd.dwSize = sizeof (bd);
211 bd.lpwfxFormat = &wfx;
213 bd.dwBufferBytes = conf.bufsize_in;
216 &bd,
221 bd
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DBidiTest.java28 Bidi bd; field in class:BidiTest
50 bd = new Bidi(null, Bidi.DIRECTION_RIGHT_TO_LEFT);
57 bd = new Bidi(null, 0, new byte[] { 0 }, 0, 0,
65 bd = new Bidi(null);
70 bd = new Bidi("a".toCharArray(), 0, null, 0, 1,
76 bd = new Bidi("1".toCharArray(), 0, new byte[] { 0 }, 0, 20,
84 bd = new Bidi("1234567".toCharArray(), 0, new byte[] { 0 }, 0, 4,
92 bd = new Bidi("1234567".toCharArray(), 4, new byte[] { 0, 1, 2, 3,
100 bd = new Bidi("1234567".toCharArray(), 0, new byte[] { 0, 1, 2, 3,
109 bd
[all...]
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp49 ReducePassList(BugDriver &bd) : BD(bd) {} argument
111 ReduceCrashingGlobalVariables(BugDriver &bd, argument
113 : BD(bd), TestFn(testFn) {}
181 ReduceCrashingFunctions(BugDriver &bd, argument
183 : BD(bd), TestFn(testFn) {}
254 ReduceCrashingBlocks(BugDriver &bd, argument
256 : BD(bd), TestFn(testFn) {}
363 ReduceCrashingInstructions(BugDriver &bd, argument
365 : BD(bd), TestF
[all...]
H A DMiscompilation.cpp49 ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {} argument
180 ReduceMiscompilingFunctions(BugDriver &bd, argument
183 : BD(bd), TestFn(F) {}
429 ReduceMiscompiledBlocks(BugDriver &bd, argument
433 : BD(bd), TestFn(F), FunctionsBeingTested(Fns) {}
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_pixels.c318 int rd, gd, bd; local
326 bd = pal->colors[i].b - b;
327 distance = (rd*rd)+(gd*gd)+(bd*bd);
/external/ceres-solver/internal/ceres/
H A Dautodiff_test.cc115 A bd = b*d; local
120 R(0, 0) = aa+bb-cc-dd; R(0, 1) = A(2)*(bc-ad); R(0, 2) = A(2)*(ac+bd); // NOLINT
122 R(2, 0) = A(2)*(bd-ac); R(2, 1) = A(2)*(ab+cd); R(2, 2) = aa-bb-cc+dd; // NOLINT
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c337 void get_bdaddr(const char *str, bt_bdaddr_t *bd) { argument
338 char *d = ((char *)bd), *endp;
343 memset(bd, 0, sizeof(bt_bdaddr_t));
/external/ceres-solver/include/ceres/
H A Drotation.h397 T bd = b * d; local
402 R[0] = aa + bb - cc - dd; R[1] = T(2) * (bc - ad); R[2] = T(2) * (ac + bd); // NOLINT
404 R[6] = T(2) * (bd - ac); R[7] = T(2) * (ab + cd); R[8] = aa - bb - cc + dd; // NOLINT
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h344 const BlockDecl *bd, const void *contextData)
345 : LocationContext(Block, ctx, parent), BD(bd), ContextData(contextData) {}
357 const LocationContext *parent, const BlockDecl *bd,
359 ProfileCommon(ID, Block, ctx, parent, bd);
342 BlockInvocationContext(AnalysisDeclContext *ctx, const LocationContext *parent, const BlockDecl *bd, const void *contextData) argument
356 Profile(llvm::FoldingSetNodeID &ID, AnalysisDeclContext *ctx, const LocationContext *parent, const BlockDecl *bd, const void *contextData) argument
/external/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp178 extern constexpr int (B2::*bd) = (int(B2::*))&D::d; member in namespace:MemberPtr
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemb.c22 void vp8_subtract_b_c(BLOCK *be, BLOCKD *bd, int pitch) argument
26 unsigned char *pred_ptr = bd->predictor;
473 BLOCKD *bd = &x->block[24]; local
475 if(bd->dequant[0]>=35 && bd->dequant[1]>=35)
478 for(i=0;i<(*bd->eob);i++)
480 int coef = bd->dqcoeff[vp8_default_zig_zag1d[i]];
495 for(i=0;i<(*bd->eob);i++)
498 bd->qcoeff[rc]=0;
499 bd
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dparen.h464 PdtBalanceData<A> *bd = new PdtBalanceData<A>; local
484 bd->OpenInsert(paren_id, close_source + state_id_shift);
485 bd->CloseInsert(paren_id, close_source + state_id_shift,
494 bd->FinishInsert(*it);
498 return bd;
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_acl.c507 ** BTM_UNKNOWN_ADDR if no active link with bd addr specified
538 ** BTM_UNKNOWN_ADDR if no active link with bd addr specified
688 ** BTM_UNKNOWN_ADDR if no active link with bd addr specified
1942 ** BTM_UNKNOWN_ADDR if bd addr is not active or bad
2677 tBTM_STATUS BTM_SetQoS (BD_ADDR bd, FLOW_SPEC *p_flow, tBTM_CMPL_CB *p_cb) argument
2682 bd[0], bd[1], bd[2],
2683 bd[3], bd[
[all...]
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp618 const BlockDecl *bd = be->getBlockDecl(); local
619 for (BlockDecl::capture_const_iterator i = bd->capture_begin(),
620 e = bd->capture_end() ; i != e; ++i) {
/external/grub/stage2/
H A Dgunzip.c507 static int bd; /* lookup bits for td */ variable
722 unsigned ml, md; /* masks for bl and bd bits */
735 md = mask_bits[bd];
778 NEEDBITS ((unsigned) bd);
904 bd = 5;
905 if ((i = huft_build (l, 30, 0, cpdist, cpdext, &td, &bd)) > 1)
1047 bd = dbits;
1048 if ((i = huft_build (ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0)
/external/opencv/cv/src/
H A Dcvshapedescr.cpp979 double* Ad = 0, *bd = 0; local
1021 CV_CALL( bd = (double*)cvAlloc( n*sizeof(bd[0]) ));
1025 b = cvMat( n, 1, CV_64F, bd );
1043 bd[i] = 10000.0; // 1.0?
1056 b = cvMat( 2, 1, CV_64F, bd );
1061 bd[0] = gfp[3];
1062 bd[1] = gfp[4];
1067 b = cvMat( n, 1, CV_64F, bd );
1080 bd[
[all...]
/external/opencv/cxcore/src/
H A Dcxmatrix.cpp1273 #define bd(y) ((double*)(bdata + y*src2step))[0] macro
1305 t = (bd(0)*Sd(1,1) - bd(1)*Sd(0,1))*d;
1306 Dd(1,0) = (bd(1)*Sd(0,0) - bd(0)*Sd(1,0))*d;
1354 t[0] = ((Sd(1,1) * Sd(2,2) - Sd(1,2) * Sd(2,1))*bd(0) +
1355 (Sd(0,2) * Sd(2,1) - Sd(0,1) * Sd(2,2))*bd(1) +
1356 (Sd(0,1) * Sd(1,2) - Sd(0,2) * Sd(1,1))*bd(2))*d;
1358 t[1] = ((Sd(1,2) * Sd(2,0) - Sd(1,0) * Sd(2,2))*bd(0) +
1359 (Sd(0,0) * Sd(2,2) - Sd(0,2) * Sd(2,0))*bd(
[all...]

Completed in 636 milliseconds

12