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

1234

/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/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc50 FontData::FontData(ByteArray* ba) { argument
51 Init(ba);
68 void FontData::Init(ByteArray* ba) { argument
69 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 Dfor_private_messages.cpp19 const S2 ba[5]; variable
H A Dfor_simd_private_messages.cpp19 const S2 ba[5]; variable
H A Dparallel_firstprivate_messages.cpp22 const S2 ba[5]; variable
75 #pragma omp parallel firstprivate(ba)
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_firstprivate_messages.cpp23 const S2 ba[5]; variable
79 #pragma omp task firstprivate(ba)
H A Dtask_private_messages.cpp20 const S2 ba[5]; variable
73 #pragma omp task private(ba)
H A Dtask_shared_messages.cpp20 const S2 ba[5]; variable
86 #pragma omp task shared(ba)
H A Dteams_firstprivate_messages.cpp23 const S2 ba[5]; variable
98 #pragma omp teams firstprivate(ba)
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)
H A Dfor_firstprivate_messages.cpp23 const S2 ba[5]; variable
217 #pragma omp for firstprivate(ba) // OK
H A Dfor_lastprivate_messages.cpp25 const S2 ba[5]; variable
207 #pragma omp for lastprivate(ba)
/external/deqp/framework/common/
H A DtcuRGBA.cpp86 int ba = (aPacked >> RGBA::BLUE_SHIFT) & 0xFF; local
89 bDiff = (deUint8)deAbs32(ba - bb);
/external/sfntly/cpp/src/test/
H A Dbyte_array_test.cc29 void FillTestByteArray(ByteArray* ba, int32_t size) { argument
31 ba->Put(i, (byte_t)(i % 256));
35 void ReadByteArrayWithBuffer(ByteArray* ba, ByteVector* buffer, ByteVector* b) { argument
36 b->resize(ba->Length());
38 while (index < ba->Length()) {
39 int32_t bytes_read = ba->Get(index, buffer);
46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size, argument
48 b->resize(ba->Length());
51 while (index < ba->Length()) {
54 int32_t bytes_read = ba
93 CopyTest(ByteArray* ba) argument
107 ByteArrayTester(ByteArray* ba) argument
119 ByteArrayPtr ba = new MemoryByteArray(size); local
133 ByteArrayPtr ba = new GrowableMemoryByteArray(); local
[all...]

Completed in 936 milliseconds

1234