Searched defs:ba (Results 1 - 25 of 121) sorted by relevance

12345

/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dvector_bool.pass.cpp35 bool ba[] = {true, false, true, true, false}; local
36 T vb(std::begin(ba), std::end(ba));
46 bool ba[] = {true, false, true, true, false}; local
47 T vb(std::begin(ba), std::end(ba));
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dhp_input.c27 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
46 tmpW32 = y[1] * ba[3]; /* (-a[1])*y[i-1] (low part) */
47 tmpW32 += y[3] * ba[4]; /* (-a[2])*y[i-2] (low part) */
49 tmpW32 += y[0] * ba[3]; /* (-a[1])*y[i-1] (high part) */
50 tmpW32 += y[2] * ba[4]; /* (-a[2])*y[i-2] (high part) */
53 tmpW32 += signal[i] * ba[0]; /* b[0]*x[0] */
54 tmpW32 += x[0] * ba[1]; /* b[1]*x[i-1] */
55 tmpW32 += x[1] * ba[2]; /* b[2]*x[i-2] */
25 WebRtcIlbcfix_HpInput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, size_t len) argument
H A Dhp_output.c27 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
46 tmpW32 = y[1] * ba[3]; /* (-a[1])*y[i-1] (low part) */
47 tmpW32 += y[3] * ba[4]; /* (-a[2])*y[i-2] (low part) */
49 tmpW32 += y[0] * ba[3]; /* (-a[1])*y[i-1] (high part) */
50 tmpW32 += y[2] * ba[4]; /* (-a[2])*y[i-2] (high part) */
53 tmpW32 += signal[i] * ba[0]; /* b[0]*x[0] */
54 tmpW32 += x[0] * ba[1]; /* b[1]*x[i-1] */
55 tmpW32 += x[1] * ba[2]; /* b[2]*x[i-2] */
25 WebRtcIlbcfix_HpOutput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, size_t len) argument
/external/pdfium/xfa/src/fxbarcode/
H A DBC_Utils.cpp27 void BC_FX_ByteString_Append(CFX_ByteString& dst, const CFX_ByteArray& ba) { argument
28 for (int32_t i = 0; i < ba.GetSize(); i++) {
29 dst += ba[i];
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc60 FontData::FontData(ByteArray* ba) { argument
61 Init(ba);
78 void FontData::Init(ByteArray* ba) { argument
79 array_ = ba;
/external/lldb/test/lang/cpp/overloaded-functions/
H A Dmain.cpp9 int ba; member in struct:B
/external/clang/test/OpenMP/
H A Ddistribute_firstprivate_messages.cpp23 const S2 ba[5]; variable
102 #pragma omp distribute firstprivate(ba)
H A Ddistribute_private_messages.cpp19 const S2 ba[5]; variable
72 #pragma omp distribute private(ba)
H A Dfor_private_messages.cpp19 const S2 ba[5]; variable
H A Dfor_simd_private_messages.cpp19 const S2 ba[5]; variable
H A Dparallel_for_private_messages.cpp19 const S2 ba[5]; variable
H A Dparallel_for_simd_private_messages.cpp19 const S2 ba[5]; variable
H A Dparallel_private_messages.cpp19 const S2 ba[5]; variable
69 #pragma omp parallel private(ba)
H A Dparallel_sections_private_messages.cpp19 const S2 ba[5]; variable
H A Dparallel_sections_shared_messages.cpp20 const S2 ba[5]; variable
86 #pragma omp parallel sections shared(ba)
H A Dparallel_shared_messages.cpp19 const S2 ba[5]; variable
72 #pragma omp parallel shared(ba)
H A Dsections_private_messages.cpp19 const S2 ba[5]; variable
H A Dsimd_private_messages.cpp18 const S2 ba[5]; variable
H A Dsingle_private_messages.cpp19 const S2 ba[5]; variable
H A Dtask_private_messages.cpp20 const S2 ba[5]; variable
78 #pragma omp task private(ba)
H A Dtask_shared_messages.cpp20 const S2 ba[5]; variable
86 #pragma omp task shared(ba)
H A Dtaskloop_private_messages.cpp19 const S2 ba[5]; variable
H A Dtaskloop_simd_private_messages.cpp19 const S2 ba[5]; variable
H A Dteams_private_messages.cpp19 const S2 ba[5]; variable
90 #pragma omp teams private(ba)
H A Dteams_shared_messages.cpp19 const S2 ba[5]; variable
93 #pragma omp teams shared(ba)

Completed in 303 milliseconds

12345