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

1 2 3 4 5 6 7

  /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/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/sandbox/linux/bpf_dsl/
cons_unittest.cc 23 Cons<char>::List ba = local
25 EXPECT_EQ("ba", Join(ba));
27 Cons<char>::List cba = Cons<char>::Make('c', ba);
28 Cons<char>::List dba = Cons<char>::Make('d', ba);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 32 const int16_t* ba; member in struct:webrtc::__anon20529::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/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;
writable_font_data.cc 26 WritableFontData::WritableFontData(ByteArray* ba) : ReadableFontData(ba) {
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...]
font_data.h 92 // @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/
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)))
  /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/chromium_org/third_party/sqlite/src/test/
collate2.test 43 # 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
    [all...]
  /external/deqp/framework/delibs/deutil/
deCommandLine.c 194 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/
mat2d.js 157 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;
  /external/clang/test/OpenMP/
parallel_private_messages.cpp 19 const S2 ba[5]; variable
61 #pragma omp parallel private(ba)
  /external/e2fsprogs/contrib/
build-rpm 41 -ba $currdir/e2fsprogs.spec
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font_factory.cc 124 FontBuilderArray ba; local
125 LoadCollectionForBuilding(is, &ba);
126 output->reserve(ba.size());
127 for (FontBuilderArray::iterator builder = ba.begin(), builders_end = ba.end();
  /external/chromium_org/third_party/libwebp/dsp/
yuv.h 142 const int ba = (b & 0xf0) | 0x0f; // overwrite the lower 4 bits local
144 argb[0] = ba;
148 argb[1] = ba;
207 const int ba = (VP8kClip4Bits[y + b_off - YUV_RANGE_MIN] << 4) | 0x0f; local
209 argb[0] = ba;
213 argb[1] = ba;

Completed in 652 milliseconds

1 2 3 4 5 6 7