Searched refs:ba (Results 1 - 25 of 185) sorted by relevance

12345678

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_barrierattr_init.c68 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;
H A Dpthread_barrierattr_destroy.c76 pthread_barrierattr_t ba = *attr; local
79 free (ba);
/external/chromium_org/third_party/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...]
/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...]
/external/libcxx/test/containers/sequences/vector.bool/
H A Dvector_bool.pass.cpp34 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/
H A Dhp_input.h26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
H A Dhp_output.h26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
H A Dhp_input.c27 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] */
25 WebRtcIlbcfix_HpInput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, int16_t len) argument
H A Dhp_output.c27 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] */
25 WebRtcIlbcfix_HpOutput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, int16_t len) argument
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc32 const int16_t* ba; member in struct:webrtc::__anon15206::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[
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcursor_selection_test.js55 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
[all...]
/external/webrtc/src/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc33 const WebRtc_Word16* ba; member in struct:webrtc::__anon32617::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[
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dlower_breaks_6.opt_test10 ((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/
H A Dfont_data.cc50 FontData::FontData(ByteArray* ba) { argument
51 Init(ba);
68 void FontData::Init(ByteArray* ba) { argument
69 array_ = ba;
H A Dwritable_font_data.cc26 WritableFontData::WritableFontData(ByteArray* ba) : ReadableFontData(ba) { argument
34 ByteArrayPtr ba; local
36 ba = new MemoryByteArray(length);
37 ba->SetFilledLength(length);
39 ba = new GrowableMemoryByteArray();
41 WritableFontDataPtr wfd = new WritableFontData(ba);
50 ByteArrayPtr ba = new GrowableMemoryByteArray(); local
51 ba->Put(0, b);
52 WritableFontDataPtr wfd = new WritableFontData(ba);
[all...]
H A Dfont_data.h92 // @param ba the byte array to use for the backing data
93 explicit FontData(ByteArray* ba);
107 void Init(ByteArray* ba);
/external/lldb/test/lang/cpp/overloaded-functions/
H A Dmain.cpp9 int ba; member in struct:B
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_breaks_6.opt_test10 ((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/
H A Dfont_data.cc50 FontData::FontData(ByteArray* ba) { argument
51 Init(ba);
68 void FontData::Init(ByteArray* ba) { argument
69 array_ = ba;
H A Dwritable_font_data.cc24 WritableFontData::WritableFontData(ByteArray* ba) : ReadableFontData(ba) { argument
32 ByteArrayPtr ba; local
34 ba = new MemoryByteArray(length);
35 ba->SetFilledLength(length);
37 ba = new GrowableMemoryByteArray();
39 WritableFontDataPtr wfd = new WritableFontData(ba);
48 ByteArrayPtr ba = new GrowableMemoryByteArray(); local
49 ba->Put(0, b);
50 WritableFontDataPtr wfd = new WritableFontData(ba);
[all...]
H A Dfont_data.h92 // @param ba the byte array to use for the backing data
93 explicit FontData(ByteArray* ba);
107 void Init(ByteArray* ba);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jar ... MissingClassException e2 edu.umd.cs.findbugs.ba.MissingClassException missingClassEx ClassNotFoundException cnfe String message Throwable e edu ...
/external/chromium_org/third_party/sqlite/src/test/
H A Dcollate2.test43 # NULL aa ab ba bb aA aB bA bB Aa Ab Ba Bb AA AB BA BB
47 # BINARY: NULL AA AB Aa Ab BA BB Ba Bb aA aB aa ab bA bB ba bb
48 # NOCASE: NULL aa aA Aa AA ab aB Ab AB ba bA Ba BA bb bB Bb BB
49 # BACKWARDS: NULL AA BA aA bA AB BB aB bB Aa Ba aa ba Ab Bb ab bb
70 INSERT INTO collate2t1 VALUES( 'ba', 'ba', 'ba' );
100 } {ab bA bB ba bb}
105 } {ab bA bB ba bb}
110 } {ab bA bB ba b
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeCommandLine.c194 const char* cmdLine = "\"hello/worl d\" --help --foo=\"bar\" \"ba z\\\"\"";
195 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z\"" };
199 const char* cmdLine = "'hello/worl d' --help --foo='bar' 'ba z\\\''";
200 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z'" };
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2d.js157 ba = b[0], bb = b[1], bc = b[2], bd = b[3],
160 out[0] = aa*ba + ab*bc;
162 out[2] = ac*ba + ad*bc;
164 out[4] = ba*atx + bc*aty + btx;

Completed in 1477 milliseconds

12345678