HomeSort by relevance Sort by last modified time
    Searched defs:ba (Results 1 - 25 of 410) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_destroy/
1-1.c 27 pthread_barrierattr_t ba; local
30 if (pthread_barrierattr_init(&ba) != 0) {
36 rc = pthread_barrierattr_destroy(&ba);
44 rc = pthread_barrierattr_init(&ba);
  /external/libcxx/test/std/containers/sequences/vector.bool/
vector_bool.pass.cpp 36 bool ba[] = {true, false, true, true, false}; local
37 T vb(std::begin(ba), std::end(ba));
48 bool ba[] = {true, false, true, true, false}; local
49 T vb(std::begin(ba), std::end(ba));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_getpshared/
1-1.c 27 pthread_barrierattr_t ba; local
31 rc = pthread_barrierattr_init(&ba);
38 if (pthread_barrierattr_getpshared(&ba, &pshared) != 0) {
50 rc = pthread_barrierattr_destroy(&ba);
2-1.c 62 pthread_barrierattr_t ba; local
81 if (pthread_barrierattr_init(&ba) != 0) {
87 if (pthread_barrierattr_setpshared(&ba, pshared) != 0) {
92 if (pthread_barrierattr_getpshared(&ba, &pshared) != 0) {
129 if ((pthread_barrier_init(barrier, &ba, 2)) != 0) {
135 if ((pthread_barrierattr_destroy(&ba)) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_init/
1-1.c 28 pthread_barrierattr_t ba; local
32 rc = pthread_barrierattr_init(&ba);
40 if (pthread_barrierattr_getpshared(&ba, &pshared) != 0) {
54 rc = pthread_barrierattr_destroy(&ba);
2-1.c 30 pthread_barrierattr_t ba; local
35 rc = pthread_barrierattr_init(&ba);
44 if (pthread_barrier_init(&barriers[cnt], &ba, 1) != 0) {
51 rc = pthread_barrierattr_destroy(&ba);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
vector_bool.pass.cpp 36 bool ba[] = {true, false, true, true, false}; local
37 T vb(std::begin(ba), std::end(ba));
48 bool ba[] = {true, false, true, true, false}; local
49 T vb(std::begin(ba), std::end(ba));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_init/
1-1.c 35 pthread_barrierattr_t ba; local
54 if (pthread_barrierattr_init(&ba) != 0) {
60 rc = pthread_barrier_init(&barrier, &ba, COUNT);
68 if (pthread_barrierattr_destroy(&ba) != 0) {
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 60 ByteArray ba = new ByteArray(bytes); local
62 new DirectClassFile(ba, getFilePath(), getStrictParse());
70 parsed(ba, readBytes, bytes.length - readBytes, "<extra data at end of file>");
  /external/clang/test/OpenMP/
distribute_private_messages.cpp 19 const S2 ba[5]; variable
72 #pragma omp distribute private(ba)
parallel_sections_shared_messages.cpp 20 const S2 ba[5]; variable
86 #pragma omp parallel sections shared(ba)
parallel_shared_messages.cpp 19 const S2 ba[5]; variable
72 #pragma omp parallel shared(ba)
target_parallel_shared_messages.cpp 19 const S2 ba[5]; variable
82 #pragma omp target parallel shared(ba)
task_shared_messages.cpp 20 const S2 ba[5]; variable
86 #pragma omp task shared(ba)
teams_shared_messages.cpp 19 const S2 ba[5]; variable
93 #pragma omp teams shared(ba)
distribute_firstprivate_messages.cpp 23 const S2 ba[5]; variable
102 #pragma omp distribute firstprivate(ba)
distribute_parallel_for_firstprivate_messages.cpp 23 const S2 ba[5]; variable
247 #pragma omp distribute parallel for firstprivate(ba) // OK
distribute_parallel_for_private_messages.cpp 19 const S2 ba[5]; variable
distribute_parallel_for_shared_messages.cpp 13 const S2 ba[5]; variable
132 #pragma omp distribute parallel for shared(ba)
306 #pragma omp distribute parallel for shared(ba)
distribute_parallel_for_simd_firstprivate_messages.cpp 23 const S2 ba[5]; variable
247 #pragma omp distribute parallel for simd firstprivate(ba) // OK
distribute_parallel_for_simd_private_messages.cpp 19 const S2 ba[5]; variable
  /external/webp/src/dsp/
upsampling_mips_dsp_r2.c 85 const int ba = (b & 0xf0) | 0x0f; // overwrite the lower 4 bits local
87 argb[0] = ba;
91 argb[1] = ba;
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 38 const int16_t* const ba = ba_; local
47 tmp_int32 = y[1] * ba[3]; // -a[1] * y[i-1] (low part)
48 tmp_int32 += y[3] * ba[4]; // -a[2] * y[i-2] (low part)
50 tmp_int32 += y[0] * ba[3]; // -a[1] * y[i-1] (high part)
51 tmp_int32 += y[2] * ba[4]; // -a[2] * y[i-2] (high part)
54 tmp_int32 += data[i] * ba[0]; // b[0] * x[0]
55 tmp_int32 += x[0] * ba[1]; // b[1] * x[i-1]
56 tmp_int32 += x[1] * ba[2]; // b[2] * x[i-2]
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPrintWriterTest.java 47 StringWriter ba = new StringWriter(); local
48 PrintWriter b = new PrintWriter(ba);
57 assertEquals("trueABCD1.23.045", ba.toString());
67 assertEquals("trueABCD1.23.045\ntrue\nA\nBCD\n1.2\n3.0\n4\n5\nTHE END", ba.toString());
OldAndroidStreamTokenizerTest.java 33 StringReader ba = new StringReader(strb); local
35 StreamTokenizer b = new StreamTokenizer(ba);

Completed in 184 milliseconds

1 2 3 4 5 6 7 8 91011>>