/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
H A D | hp_input.c | 27 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 D | hp_output.c | 27 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
|
H A D | hp_input.h | 26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
|
H A D | hp_output.h | 26 int16_t *ba, /* (i) B- and A-coefficients (2:nd order)
|
/external/sfntly/cpp/src/test/ |
H A D | byte_array_test.cc | 29 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/std/containers/sequences/vector.bool/ |
H A D | vector_bool.pass.cpp | 35 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/llvm/test/MC/PowerPC/ |
H A D | ppc32-ba.s | 5 # CHECK: ba -33554432 # encoding: [0x4a,0x00,0x00,0x02] 6 ba 0xfe000000
|
/external/webrtc/webrtc/modules/audio_processing/ |
H A D | 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]
|
/external/lldb/test/lang/cpp/overloaded-functions/ |
H A D | main.cpp | 9 int ba; member in struct:B
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
H A D | 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/llvm/test/MC/Sparc/ |
H A D | sparc-little-endian.s | 15 ! CHECK: ba .BB0 ! encoding: [A,A,0b10AAAAAA,0x10] 17 ! CHECK-OBJ: 4: ff ff bf 10 ba 4194303 18 ba .BB0
|
H A D | sparc-assembly-exprs.s | 12 ! DOTEXPR-NEXT: ba .Ltmp0+8
|
/external/sfntly/cpp/src/sfntly/data/ |
H A D | font_data.cc | 60 FontData::FontData(ByteArray* ba) { argument 61 Init(ba); 78 void FontData::Init(ByteArray* ba) { argument 79 array_ = ba;
|
H A D | writable_font_data.cc | 27 WritableFontData::WritableFontData(ByteArray* ba) : ReadableFontData(ba) { argument 35 ByteArrayPtr ba; local 37 ba = new MemoryByteArray(length); 38 ba->SetFilledLength(length); 40 ba = new GrowableMemoryByteArray(); 42 WritableFontDataPtr wfd = new WritableFontData(ba); 51 ByteArrayPtr ba = new GrowableMemoryByteArray(); local 52 ba->Put(0, b); 53 WritableFontDataPtr wfd = new WritableFontData(ba); [all...] |
H A D | font_data.h | 81 // @param ba the byte array to use for the backing data 82 explicit FontData(ByteArray* ba); 96 void Init(ByteArray* ba);
|
/external/pdfium/xfa/src/fxbarcode/ |
H A D | BC_Utils.cpp | 27 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/owasp/sanitizer/tools/findbugs/lib/ |
H A D | findbugs.jar | ... MissingClassException e2
edu.umd.cs.findbugs.ba.MissingClassException missingClassEx
ClassNotFoundException cnfe
String message
Throwable e
edu ... |
/external/elfutils/tests/ |
H A D | run-zstrptr.sh | 125 [ba] '.debug_aranges' 158 [ba] '.debug_aranges'
|
H A D | run-strptr.sh | 89 [ba] '.debug_aranges'
|
/external/deqp/framework/delibs/deutil/ |
H A D | deCommandLine.c | 193 const char* cmdLine = "\"hello/worl d\" --help --foo=\"bar\" \"ba z\\\"\""; 194 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z\"" }; 198 const char* cmdLine = "'hello/worl d' --help --foo='bar' 'ba z\\\''"; 199 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z'" };
|
/external/v8/test/webkit/fast/regex/ |
H A D | ecma-regex-examples.js | 40 var regex05 = /(aa|aabaac|ba|b|c)*/; 41 shouldBe('regex05.exec("aabaac")', '["aaba", "ba"]'); 62 shouldBe('regex12.exec("baaabaac")', '["baaabaac", "ba", undefined, "abaac"]');
|
/external/clang/test/OpenMP/ |
H A D | parallel_private_messages.cpp | 19 const S2 ba[5]; variable 69 #pragma omp parallel private(ba)
|
H A D | task_private_messages.cpp | 20 const S2 ba[5]; variable 78 #pragma omp task private(ba)
|
/external/curl/packages/Linux/RPM/ |
H A D | make_curl_rpm | 53 if ! rpm -ba $specs_dir/$target-$version-$arch.spec
|
/external/e2fsprogs/contrib/ |
H A D | build-rpm | 41 -ba $currdir/e2fsprogs.spec
|