/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/ |
xcoff-ref-1.s | 1 .ref foo 3 .ref 1234 4 .ref a, 5 .ref , 6 .ref
|
/libcore/ojluni/src/main/java/java/lang/ref/ |
package-info.java | 50 * base <code>{@link java.lang.ref.Reference}</code> class. An instance of one of 70 * queues are implemented by the <code>{@link java.lang.ref.ReferenceQueue}</code> 87 * java.lang.ref.ReferenceQueue#poll ReferenceQueue.poll}</code> method simply 135 package java.lang.ref;
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvers/ |
vers27d2.c | 4 ref () function
|
vers27d3.c | 1 extern void ref (); 8 ref ();
|
vers26b.c | 6 ref () function
|
/external/clang/test/CodeGenCXX/ |
reference-in-block-args.cpp | 11 void OUTER_BLOCK(void (^fixer)(ST& ref)) { 12 ST ref = {2, 100}; local 13 fixer(ref); 21 OUTER_BLOCK(^(ST &ref) { 22 INNER_BLOCK(^() { return ref.referrer + ref.filler; });
|
vla.cpp | 22 // CHECK-NEXT: [[REF:%.*]] = alloca i16*, align 8 37 // CHECK-NEXT: store i16* [[T1]], i16** [[REF]], align 8 38 array_t &ref = *(array_t*) array; local 40 // CHECK-NEXT: [[T0:%.*]] = load i16*, i16** [[REF]] 45 ref[1][2] = 3; 47 // CHECK-NEXT: [[T0:%.*]] = load i16*, i16** [[REF]] 53 short s = ref[4][5];
|
/hardware/interfaces/tests/pointer/1.0/ |
IPointer.hal | 24 struct Ada { ref<Sam> s_ptr; }; 25 struct Bob { ref<Ada> a_ptr; ref<Sam> s_ptr; }; 26 struct Cin { Ada a; ref<Bob> b_ptr; }; 29 typedef ref<int32_t> Int32Ptr; 30 typedef ref<Sam> SamPtr; 33 ref<Ada>[5] ptr_array; 34 ref<Ada[5]> array_ptr; 36 ref<int32_t[5]> int_array_ptr; 37 ref<int32_t>[5] int_ptr_array [all...] |
IGraph.hal | 25 ref<Node> left; 26 ref<Node> right; 37 ref<Theta> s_ptr; 40 ref<Theta> s_ptr; 43 ref<Alpha> a_ptr; 44 ref<Beta> b_ptr; 49 passTwoGraphs(ref<Graph> g1, ref<Graph> g2); 52 passASimpleRef(ref<Alpha> a); 53 passASimpleRefS(ref<Theta> s) [all...] |
/external/libxml2/ |
triop.h | 20 * The ref pointer is an opaque type and should remain as such. 90 TRIO_CONST char *trio_get_format TRIO_PROTO((trio_pointer_t ref)); 91 trio_pointer_t trio_get_argument TRIO_PROTO((trio_pointer_t ref)); 94 int trio_get_width TRIO_PROTO((trio_pointer_t ref)); 95 void trio_set_width TRIO_PROTO((trio_pointer_t ref, int width)); 96 int trio_get_precision TRIO_PROTO((trio_pointer_t ref)); 97 void trio_set_precision TRIO_PROTO((trio_pointer_t ref, int precision)); 98 int trio_get_base TRIO_PROTO((trio_pointer_t ref)); 99 void trio_set_base TRIO_PROTO((trio_pointer_t ref, int base)); 100 int trio_get_padding TRIO_PROTO((trio_pointer_t ref)); [all...] |
/external/llvm/include/llvm/Support/ |
CBindingWrapping.h | 20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 21 inline ty *unwrap(ref P) { \ 25 inline ref wrap(const ty *P) { \ 26 return reinterpret_cast<ref>(const_cast<ty*>(P)); \ 29 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \ 30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 33 inline T *unwrap(ref P) { \ 37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \ 38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 41 inline T *unwrap(ref P) { [all...] |
/external/google-breakpad/src/client/mac/Framework/ |
Breakpad.h | 231 // Uninstall and release the data associated with |ref|. 232 void BreakpadRelease(BreakpadRef ref); 239 void BreakpadSetFilterCallback(BreakpadRef ref, 262 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value); 263 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key); 264 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key); 270 void BreakpadAddUploadParameter(BreakpadRef ref, NSString *key, 275 void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key); 278 void BreakpadAddLogFile(BreakpadRef ref, NSString *logPathname); 281 void BreakpadGenerateAndSendReport(BreakpadRef ref); [all...] |
/external/google-breakpad/src/client/ios/ |
Breakpad.h | 160 // Uninstall and release the data associated with |ref|. 161 void BreakpadRelease(BreakpadRef ref); 182 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value); 183 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key); 184 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key); 190 void BreakpadAddUploadParameter(BreakpadRef ref, NSString *key, 195 void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key); 200 int BreakpadGetCrashReportCount(BreakpadRef ref); 203 NSDictionary *BreakpadGetNextReportConfiguration(BreakpadRef ref); 206 void BreakpadUploadNextReport(BreakpadRef ref); [all...] |
/art/runtime/ |
read_barrier-inl.h | 48 // the is_gray load to the ref field (ptr) load to avoid needing a load-load barrier between 57 MirrorType* ref = ref_addr->AsMirrorPtr(); local 58 MirrorType* old_ref = ref; 61 ref = reinterpret_cast<MirrorType*>(Mark(ref)); 64 if (kAlwaysUpdateField && ref != old_ref) { 66 offset, old_ref, ref); 69 AssertToSpaceInvariant(obj, offset, ref); 70 return ref; 75 MirrorType* ref = ref_addr->AsMirrorPtr() local 102 MirrorType* ref = *root; local 150 MirrorType* ref = root->AsMirrorPtr(); local [all...] |
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastSearchIndexableProvider.java | 60 Object[] ref = new Object[7]; local 61 ref[COLUMN_INDEX_XML_RES_RANK] = INDEXABLE_RES[n].rank; 62 ref[COLUMN_INDEX_XML_RES_RESID] = INDEXABLE_RES[n].xmlResId; 63 ref[COLUMN_INDEX_XML_RES_CLASS_NAME] = null; 64 ref[COLUMN_INDEX_XML_RES_ICON_RESID] = INDEXABLE_RES[n].iconResId; 65 ref[COLUMN_INDEX_XML_RES_INTENT_ACTION] = "android.intent.action.MAIN"; 66 ref[COLUMN_INDEX_XML_RES_INTENT_TARGET_PACKAGE] = "com.android.cellbroadcastreceiver"; 67 ref[COLUMN_INDEX_XML_RES_INTENT_TARGET_CLASS] = INDEXABLE_RES[n].className; 68 cursor.addRow(ref); 90 Object[] ref; local [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
avg_pred_sse2.c | 18 int height, const uint8_t *ref, int ref_stride) { 27 const __m128i r = _mm_loadu_si128((const __m128i *)(ref + x)); 33 ref += ref_stride; 39 // divisible by 16 so just ref needs to be massaged when loading. 45 r = _mm_loadu_si128((const __m128i *)ref); 46 ref += 16; 48 r = _mm_set_epi32(*(const uint32_t *)(ref + 3 * ref_stride), 49 *(const uint32_t *)(ref + 2 * ref_stride), 50 *(const uint32_t *)(ref + ref_stride), 51 *(const uint32_t *)(ref)); [all...] |
/frameworks/base/libs/hwui/ |
ResourceCache.cpp | 34 ResourceReference* ref = mCache->valueAt(i); local 35 ALOGD(" ResourceCache: mCache(%zu): resource, ref = 0x%p, 0x%p", 38 i, ref->refCount, ref->destroyed, ref->resourceType); 71 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : nullptr; local 72 if (ref == nullptr || mCache->size() == 0) { 73 ref = new ResourceReference(resourceType); 74 mCache->add(resource, ref); 76 ref->refCount++ 90 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : nullptr; local 112 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : nullptr; local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/ |
ReferenceTest.java | 17 package org.apache.harmony.tests.java.lang.ref; 19 import java.lang.ref.PhantomReference; 20 import java.lang.ref.Reference; 21 import java.lang.ref.ReferenceQueue; 22 import java.lang.ref.SoftReference; 23 import java.lang.ref.WeakReference; 25 import libcore.java.lang.ref.FinalizationTester; 63 * java.lang.ref.Reference#clear() 86 * java.lang.ref.Reference#enqueue() 91 Reference ref = new SoftReference(obj, rq) local 128 Reference ref = queue.remove(); local 186 Reference ref; local 215 WeakReference ref = newWeakReference(null); local 233 WeakReference<Object> ref = new WeakReference<Object>(o, queue); local 244 Reference ref = new SoftReference(obj, rq); local [all...] |
/art/compiler/dex/ |
quick_compiler_callbacks.cc | 28 void QuickCompilerCallbacks::ClassRejected(ClassReference ref) { 29 verification_results_->AddRejectedClass(ref);
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
RefQueueHandler.java | 33 import java.lang.ref.Reference; 49 * @param ref the reference to handle 51 public void handleReference(Reference<?> ref)
|
/external/compiler-rt/test/profile/Inputs/ |
instrprof-icall-promo_2.cc | 2 extern int ref(A *); 9 return ref(ap);
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_fence.h | 24 int ref; member in struct:nouveau_fence 41 nouveau_fence_ref(struct nouveau_fence *fence, struct nouveau_fence **ref) 44 ++fence->ref; 46 if (*ref) { 47 if (--(*ref)->ref == 0) 48 nouveau_fence_del(*ref); 51 *ref = fence;
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ |
ref_2.pass.cpp | 14 // template <ObjectType T> reference_wrapper<T> ref(reference_wrapper<T>t); 22 std::reference_wrapper<int> r1 = std::ref(i); 23 std::reference_wrapper<int> r2 = std::ref(r1);
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
ATokPtrImpl.h | 45 void ANTLRTokenPtr::ref() const
function in class:ANTLRTokenPtr 48 ptr_->ref();
76 lhs.ref(); // protect against "xp = xp"; ie same underlying object
84 addr->ref();
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
ATokPtr.cpp | 39 void ANTLRTokenPtr::ref() const
function in class:ANTLRTokenPtr 42 ptr_->ref();
70 lhs.ref(); // protect against "xp = xp"; ie same underlying object
78 addr->ref();
|