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

1 2 3 4 5

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_barrierattr_destroy.c 76 pthread_barrierattr_t ba = *attr; local
79 free (ba);
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;
  /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/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/clang/test/OpenMP/
for_private_messages.cpp 19 const S2 ba[5]; variable
parallel_for_private_messages.cpp 19 const S2 ba[5]; variable
parallel_sections_private_messages.cpp 19 const S2 ba[5]; variable
sections_private_messages.cpp 19 const S2 ba[5]; variable
simd_private_messages.cpp 18 const S2 ba[5]; variable
single_private_messages.cpp 19 const S2 ba[5]; variable
parallel_firstprivate_messages.cpp 22 const S2 ba[5]; variable
67 #pragma omp parallel firstprivate(ba)
parallel_private_messages.cpp 19 const S2 ba[5]; variable
61 #pragma omp parallel private(ba)
parallel_sections_shared_messages.cpp 20 const S2 ba[5]; variable
78 #pragma omp parallel sections shared(ba)
parallel_shared_messages.cpp 19 const S2 ba[5]; variable
64 #pragma omp parallel shared(ba)
for_firstprivate_messages.cpp 23 const S2 ba[5]; variable
209 #pragma omp for firstprivate(ba) // OK
  /external/lldb/test/lang/cpp/overloaded-functions/
main.cpp 9 int ba; member in struct:B
  /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>");
  /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);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery-1.4.3.min.js 16 (function(E,A){function U(){return false}function ba(){return true}function ja(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ga(a){var b,d,e=[],f=[],h,k,l,n,s,v,B,D;k=c.data(this,this.nodeType?"events":"__events__");if(typeof k==="function")k=k.events;if(!(a.liveFired===this||!k||!k.live||a.button&&a.type==="click")){if(a.namespace)D=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var H=k.live.slice(0);for(n=0;n<H.length;n++){k=H[n];k.origType.replace(X, function
67 c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ba;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ba;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ba;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
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...]
  /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/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/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...]

Completed in 978 milliseconds

1 2 3 4 5