/external/elfutils/libelf/ |
elf_begin.c | 910 dup_elf (int fildes, Elf_Cmd cmd, Elf *ref) 916 fildes = ref->fildes; 919 else if (unlikely (ref->fildes != -1 && fildes != ref->fildes)) 928 if (unlikely (ref->cmd != ELF_C_READ && ref->cmd != ELF_C_READ_MMAP 929 && ref->cmd != ELF_C_WRITE && ref->cmd != ELF_C_WRITE_MMAP 930 && ref->cmd != ELF_C_RDWR && ref->cmd != ELF_C_RDWR_MMA [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
h264bsd_interpolate_hor_ver_quarter.s | 34 ref RN 0 label 134 ADD ref,sp,#0x28 ;// ref = p1 145 ADD ref, ref, tmp5 ;// ref += y0*width+x0 146 STR ref, [sp, #0x1e4] ;// store "ref" for vertical filtering 147 AND tmp6, tmp6, #2 ;// calculate ref for horizontal filter 150 MLA ref, tmp6, width, re [all...] |
h264bsd_interpolate_mid_hor.s | 35 ref RN 0 ;// pointer to current position in reference image
label 83 LDR x_3_1, [ref, #-8]
85 LDR x_7_5, [ref, #-4]
101 LDR x_3_1, [ref], #4
132 LDR x_7_5, [ref], #4
155 SMLABB ref, count, mult_20_01, ref ;// +width
156 SBC ref, ref, tmp3, LSR #16 ;// -(partWidth-1)-1
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
AbstractConnPool.java | 34 import java.lang.ref.Reference; 35 import java.lang.ref.ReferenceQueue; 195 public void handleReference(Reference ref) { 200 if (ref instanceof BasicPoolEntryRef) { 204 final boolean lost = issuedConnections.remove(ref); 207 ((BasicPoolEntryRef)ref).getRoute();
|
/external/guava/guava-tests/test/com/google/common/testing/ |
GcFinalizationTest.java | 10 import java.lang.ref.WeakReference; 61 final WeakReference<Object> ref = new WeakReference<Object>(new Object()); local 62 GcFinalization.awaitClear(ref); 63 assertNull(ref.get()); 146 final WeakReference<Object> ref = new WeakReference<Object>(Boolean.TRUE); local 148 GcFinalization.awaitClear(ref);
|
/external/skia/include/core/ |
SkRefCnt.h | 20 objects. When an existing owner wants to share a reference, it calls ref(). 50 void ref() const { function in class:SkRefCnt 75 * Alias for ref(), for compatibility with scoped_refptr. 77 void AddRef() { this->ref(); } 100 * Called when the ref count goes to 0. 119 null in on each side of the assignment, and ensuring that ref() is called 124 if (src) src->ref(); \ 130 /** Call obj->ref() and return obj. The obj must not be NULL. 134 obj->ref(); 138 /** Check if the argument is non-null, and if so, call obj->ref() and return obj [all...] |
/external/skia/src/gpu/gl/debug/ |
GrDebugGL.cpp | 47 fTextureUnits[i]->ref(); 103 fArrayBuffer->ref(); 124 fElementArrayBuffer->ref(); 148 fFrameBuffer->ref(); 168 fRenderBuffer->ref(); 188 fProgram->ref();
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_reconstruct.c | 295 image (ref) is read at correct position and the predicted part 301 u8 *ref, 324 ASSERT(ref); 329 h264bsdFillBlock(ref, block, x0, y0, width, height, 331 ref += width * height; 332 h264bsdFillBlock(ref, block + (chromaPartWidth+1)*(chromaPartHeight+1), 336 ref = block; 349 ptrA = ref + (comp * height + (u32)y0) * width + x0; 428 u8 *ref; local 448 ref = refPic->data + 256 * refPic->width * refPic->height 1983 u8 *partData, *ref; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeWizard.java | 34 public ExtractIncludeWizard(ExtractIncludeRefactoring ref, LayoutEditorDelegate editor) { 35 super(ref, editor); 36 setDefaultPageTitle(ref.getName()); 41 ExtractIncludeRefactoring ref = (ExtractIncludeRefactoring) getRefactoring(); local 42 String initialName = ref.getInitialName(); 43 IFile sourceFile = ref.getSourceFile();
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/external/llvm/lib/IR/ |
Use.cpp | 139 const UserRef *ref = reinterpret_cast<const UserRef*>(End); local 140 return ref->getInt() 141 ? ref->getPointer()
|
/external/oprofile/daemon/liblegacy/ |
p_module.h | 58 struct old_module_ref ref[0]; /* actual size defined by n_refs */ member in struct:old_symbol_table 70 unsigned long ref; /* the list of modules that refer to me */ member in struct:old_module 129 unsigned tgt_long ref; member in struct:module_ref
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/ |
Activator.java | 59 ServiceReference ref = context.getServiceReference(clazz.getName()); local 60 return (ref != null) ? (T) context.getService(ref) : null;
|
/external/eigen/test/ |
product_trsolve.cpp | 13 (XB).setRandom(); ref = (XB); \ 15 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 16 (XB).setRandom(); ref = (XB); \ 18 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 22 (XB).setRandom(); ref = (XB); \ 24 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 25 (XB).setRandom(); ref = (XB); \ 27 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 41 Matrix<Scalar,Dynamic,Dynamic,colmajor> ref(size,cols);
|
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/ |
Class.pm | 24 (my $class = ref $test) =~ s/^Test:://xms;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
NodeLocator.java | 22 package org.apache.xml.dtm.ref;
|
/external/eigen/unsupported/test/ |
splines.cpp | 215 PointType ref = points.col(i); local 216 VERIFY( (pt - ref).matrix().norm() < 1e-14 ); 227 PointType ref = points.col(i); local 228 VERIFY( (pt - ref).matrix().norm() < 1e-14 );
|
/external/guava/guava/src/com/google/common/base/internal/ |
Finalizer.java | 19 import java.lang.ref.PhantomReference; 20 import java.lang.ref.Reference; 21 import java.lang.ref.ReferenceQueue; 22 import java.lang.ref.WeakReference;
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
vp8_sad16x16_armv6.asm | 39 ldr r8, [r2, #0x0] ; load 4 ref pixels (1A) 41 ldr r9, [r2, #0x4] ; load 4 ref pixels (1A) 48 ldr r12, [r2, #0x8] ; load 4 ref pixels (1B) 49 ldr lr, [r2, #0xC] ; load 4 ref pixels (1B) 65 ldr r8, [r2, #0x0] ; load 4 ref pixels (2A) 66 ldr r9, [r2, #0x4] ; load 4 ref pixels (2A) 73 ldr r12, [r2, #0x8] ; load 4 ref pixels (2B) 74 ldr lr, [r2, #0xC] ; load 4 ref pixels (2B)
|
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 146 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 147 inline ty *unwrap(ref P) { \ 151 inline ref wrap(const ty *P) { \ 152 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
|