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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_barrierattr_init.c 68 pthread_barrierattr_t ba; local
71 ba = (pthread_barrierattr_t) calloc (1, sizeof (*ba));
73 if (ba == NULL)
79 ba->pshared = PTHREAD_PROCESS_PRIVATE;
82 *attr = ba;
pthread_barrierattr_destroy.c 76 pthread_barrierattr_t ba = *attr; local
79 free (ba);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
byte_array_test.cc 29 void FillTestByteArray(ByteArray* ba, int32_t size) {
31 ba->Put(i, (byte_t)(i % 256));
35 void ReadByteArrayWithBuffer(ByteArray* ba, ByteVector* buffer, ByteVector* b) {
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,
48 b->resize(ba->Length());
51 while (index < ba->Length()) {
54 int32_t bytes_read = ba->Get(index, &((*b)[0]), index, actual_window_size)
119 ByteArrayPtr ba = new MemoryByteArray(size); local
133 ByteArrayPtr ba = new GrowableMemoryByteArray(); local
    [all...]
  /external/sfntly/cpp/src/test/
byte_array_test.cc 29 void FillTestByteArray(ByteArray* ba, int32_t size) {
31 ba->Put(i, (byte_t)(i % 256));
35 void ReadByteArrayWithBuffer(ByteArray* ba, ByteVector* buffer, ByteVector* b) {
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,
48 b->resize(ba->Length());
51 while (index < ba->Length()) {
54 int32_t bytes_read = ba->Get(index, &((*b)[0]), index, actual_window_size)
119 ByteArrayPtr ba = new MemoryByteArray(size); local
133 ByteArrayPtr ba = new GrowableMemoryByteArray(); local
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
vector_bool.pass.cpp 34 bool ba[] = {true, false, true, true, false}; local
35 T vb(std::begin(ba), std::end(ba));
45 bool ba[] = {true, false, true, true, false}; local
46 T vb(std::begin(ba), std::end(ba));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
vector_bool.pass.cpp 34 bool ba[] = {true, false, true, true, false}; local
35 T vb(std::begin(ba), std::end(ba));
45 bool ba[] = {true, false, true, true, false}; local
46 T vb(std::begin(ba), std::end(ba));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
hp_input.h 26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
hp_output.h 26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
hp_input.c 27 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
46 tmpW32 = WEBRTC_SPL_MUL_16_16(y[1], ba[3]); /* (-a[1])*y[i-1] (low part) */
47 tmpW32 += WEBRTC_SPL_MUL_16_16(y[3], ba[4]); /* (-a[2])*y[i-2] (low part) */
49 tmpW32 += WEBRTC_SPL_MUL_16_16(y[0], ba[3]); /* (-a[1])*y[i-1] (high part) */
50 tmpW32 += WEBRTC_SPL_MUL_16_16(y[2], ba[4]); /* (-a[2])*y[i-2] (high part) */
53 tmpW32 += WEBRTC_SPL_MUL_16_16(signal[i], ba[0]); /* b[0]*x[0] */
54 tmpW32 += WEBRTC_SPL_MUL_16_16(x[0], ba[1]); /* b[1]*x[i-1] */
55 tmpW32 += WEBRTC_SPL_MUL_16_16(x[1], ba[2]); /* b[2]*x[i-2] */
hp_output.c 27 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
46 tmpW32 = WEBRTC_SPL_MUL_16_16(y[1], ba[3]); /* (-a[1])*y[i-1] (low part) */
47 tmpW32 += WEBRTC_SPL_MUL_16_16(y[3], ba[4]); /* (-a[2])*y[i-2] (low part) */
49 tmpW32 += WEBRTC_SPL_MUL_16_16(y[0], ba[3]); /* (-a[1])*y[i-1] (high part) */
50 tmpW32 += WEBRTC_SPL_MUL_16_16(y[2], ba[4]); /* (-a[2])*y[i-2] (high part) */
53 tmpW32 += WEBRTC_SPL_MUL_16_16(signal[i], ba[0]); /* b[0]*x[0] */
54 tmpW32 += WEBRTC_SPL_MUL_16_16(x[0], ba[1]); /* b[1]*x[i-1] */
55 tmpW32 += WEBRTC_SPL_MUL_16_16(x[1], ba[2]); /* b[2]*x[i-2] */
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 32 const int16_t* ba; member in struct:webrtc::__anon19819::FilterState
39 hpf->ba = kFilterCoefficients8kHz;
41 hpf->ba = kFilterCoefficients;
56 const int16_t* ba = hpf->ba; local
63 WEBRTC_SPL_MUL_16_16(y[1], ba[3]); // -a[1] * y[i-1] (low part)
65 WEBRTC_SPL_MUL_16_16(y[3], ba[4]); // -a[2] * y[i-2] (low part)
68 WEBRTC_SPL_MUL_16_16(y[0], ba[3]); // -a[1] * y[i-1] (high part)
70 WEBRTC_SPL_MUL_16_16(y[2], ba[4]); // -a[2] * y[i-2] (high part)
73 tmp_int32 += WEBRTC_SPL_MUL_16_16(data[i], ba[0]); // b[0]*x[0
    [all...]
  /external/webrtc/src/modules/audio_processing/
high_pass_filter_impl.cc 33 const WebRtc_Word16* ba; member in struct:webrtc::__anon37191::FilterState
40 hpf->ba = kFilterCoefficients8kHz;
42 hpf->ba = kFilterCoefficients;
57 const WebRtc_Word16* ba = hpf->ba; local
64 WEBRTC_SPL_MUL_16_16(y[1], ba[3]); // -a[1] * y[i-1] (low part)
66 WEBRTC_SPL_MUL_16_16(y[3], ba[4]); // -a[2] * y[i-2] (low part)
69 WEBRTC_SPL_MUL_16_16(y[0], ba[3]); // -a[1] * y[i-1] (high part)
71 WEBRTC_SPL_MUL_16_16(y[2], ba[4]); // -a[2] * y[i-2] (high part)
74 tmp_int32 += WEBRTC_SPL_MUL_16_16(data[i], ba[0]); // b[0]*x[0
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
cursor_selection_test.js 55 var ba = new cvox.CursorSelection(b, a, true);
56 assertEquals(true, ba.isReversed());
57 assertEquals(true, ba.start.equals(b));
58 assertEquals(true, ba.end.equals(a));
60 ba = new cvox.CursorSelection(a, b, true);
61 assertEquals(true, ba.isReversed());
62 assertEquals(true, ba.start.equals(b));
63 assertEquals(true, ba.end.equals(a));
86 var ba = new cvox.CursorSelection(b, a, true).collapse();
87 assertEquals(12, ba.absStart().index)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_breaks_6.opt_test 10 ((declare (in) float a) (declare (in) float ba) (declare (in) float bb)
17 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_data.cc 50 FontData::FontData(ByteArray* ba) {
51 Init(ba);
68 void FontData::Init(ByteArray* ba) {
69 array_ = ba;
  /external/lldb/test/lang/cpp/overloaded-functions/
main.cpp 9 int ba; member in struct:B
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_6.opt_test 10 ((declare (in) float a) (declare (in) float ba) (declare (in) float bb)
17 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 50 FontData::FontData(ByteArray* ba) {
51 Init(ba);
68 void FontData::Init(ByteArray* ba) {
69 array_ = ba;
  /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());
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_array_init.java 77 boolean[] ba = s.get_ba();
78 _RS_ASSERT("ba[0] == true", ba[0] == true);
79 _RS_ASSERT("ba[1] == false", ba[1] == false);
80 _RS_ASSERT("ba[2] == false", ba[2] == false);
81 _RS_ASSERT("ba.length == 3", ba.length == 3);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_array_init.java 77 boolean[] ba = s.get_ba();
78 _RS_ASSERT("ba[0] == true", ba[0] == true);
79 _RS_ASSERT("ba[1] == false", ba[1] == false);
80 _RS_ASSERT("ba[2] == false", ba[2] == false);
81 _RS_ASSERT("ba.length == 3", ba.length == 3);
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 134 // ByteArray ba = bytes.slice(offset, bytes.size());
138 // out("// "+dumpReadableString(ba));
139 // out(" "+dumpBytes(ba));
154 ByteArray ba = bytes.slice(offset, bytes.size());
157 // out("// "+dumpReadableString(ba));
158 // out(" "+dumpBytes(ba));
176 ByteArray ba = bytes.slice(offset, offset + len);
177 check(ba);
178 out("// " + dumpReadableString(ba));
179 out(" " + dumpBytes(ba));
    [all...]
  /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, at, bytes.length - at, "<extra data at end of file>");
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 1312 milliseconds

1 2 3 4 5 6 7 8 91011