HomeSort by relevance Sort by last modified time
    Searched refs:dup (Results 176 - 200 of 674) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libhevc/common/arm64/
ihevc_intra_pred_filters_chroma_mode_11_to_17.s 136 dup v30.8b,w7 //intra_pred_ang
270 dup v26.8b,w9 //least idx added to final idx values
293 dup v27.4h,w0
425 dup v27.4h,w5 //row value inc or reset accordingly
431 dup v26.8b,w9
466 dup v27.4h,w9 //row value inc or reset accordingly
575 dup v26.8b,w9
ihevc_inter_pred_chroma_vert_w16inp.s 123 dup v16.4h, v0.4h[0] //coeff_0
124 dup v17.4h, v0.4h[1] //coeff_1
125 dup v18.4h, v0.4h[2] //coeff_2
126 dup v19.4h, v0.4h[3] //coeff_3
ihevc_inter_pred_chroma_vert_w16inp_w16out.s 123 dup v16.4h, v0.4h[0] //coeff_0
124 dup v17.4h, v0.4h[1] //coeff_1
125 dup v18.4h, v0.4h[2] //coeff_2
126 dup v19.4h, v0.4h[3] //coeff_3
  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 183 sp<ABuffer> dup = new ABuffer(accessUnit->size() + size); local
188 memcpy(dup->data() + offset, csd->data(), csd->size());
192 memcpy(dup->data() + offset, accessUnit->data(), accessUnit->size());
194 return dup;
205 sp<ABuffer> dup = new ABuffer(aac_frame_length); local
216 uint8_t *ptr = dup->data();
238 return dup;
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp 205 sp<AMessage> msg = mNotify->dup();
297 sp<AMessage> notify = mNotify->dup();
376 sp<AMessage> notify = mNotify->dup();
399 sp<AMessage> notify = mNotify->dup();
425 sp<AMessage> notify = mNotify->dup();
505 sp<AMessage> notify = mNotify->dup();
677 sp<AMessage> msg = mNotify->dup();
782 sp<AMessage> msg = mNotify->dup();
792 sp<AMessage> msg = mNotify->dup();
    [all...]
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 61 mStartTimeUsNotify(notify->dup()),
394 sp<AMessage> notify = mNotify->dup();
405 sp<AMessage> notify = mNotify->dup();
415 sp<AMessage> notify = mNotify->dup();
590 sp<AMessage> notify = mNotify->dup();
658 sp<AMessage> msg = mNotify->dup();
675 sp<AMessage> msg = mNotify->dup();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java 460 public static GrammarAST dup(Tree t) { method in class:GrammarAST
471 return dup(this);
518 GrammarAST root = dup(t); // make copy of root
  /external/chromium_org/tools/grit/grit/extern/
tclib.py 137 dup = 0
140 dup = 1
142 if not dup:
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_advsimd_YuvToRGB.S 88 dup v13.8h, w5
90 dup v14.8h, w5
92 dup v15.8h, w5
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py 670 for i, dup in enumerate([
686 msg = (i, dup, words)
687 self.assertTrue(dup is not words)
688 self.assertEqual(dup, words)
689 self.assertEqual(len(dup), len(words))
690 self.assertEqual(type(dup), type(words))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py 670 for i, dup in enumerate([
686 msg = (i, dup, words)
687 self.assertTrue(dup is not words)
688 self.assertEqual(dup, words)
689 self.assertEqual(len(dup), len(words))
690 self.assertEqual(type(dup), type(words))
    [all...]
  /bionic/libc/include/
unistd.h 144 extern int dup(int);
  /development/ndk/platforms/android-12/include/
unistd.h 141 extern int dup(int);
  /development/ndk/platforms/android-3/include/
unistd.h 132 extern int dup(int);
  /development/ndk/platforms/android-8/include/
unistd.h 136 extern int dup(int);
  /development/ndk/platforms/android-9/include/
unistd.h 139 extern int dup(int);
  /development/ndk/platforms/android-L/include/
unistd.h 147 extern int dup(int);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 164 CommonTree dup = (CommonTree)(new CommonTreeAdaptor()).DupTree(r0);
166 Assert.IsNull(dup.Parent);
167 Assert.AreEqual(-1, dup.ChildIndex);
168 dup.SanityCheckParentAndChildIndexes();
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 160 CommonTree dup = (CommonTree)(new CommonTreeAdaptor()).dupTree(r0); local
162 assertNull(dup.parent);
163 assertEquals(-1, dup.childIndex);
164 dup.sanityCheckParentAndChildIndexes();
  /external/chromium_org/ipc/
file_descriptor_set_posix_unittest.cc 25 const int duped = dup(fd);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddDelegateTransformer.java 84 dup(); method