/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
h264bsd_interpolate_hor_half.s | 33 ref RN 0 label 125 ADD ref,sp,#0x28 ;// ref = p1 134 ADD ref, ref, tmp2 ;// ref += y0*width+x0 135 ADD ref, ref, #8 ;// ref = ref+ [all...] |
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...] |
/external/emma/core/java12/com/vladium/util/ |
SoftValueMap.java | 11 import java.lang.ref.Reference; 12 import java.lang.ref.ReferenceQueue; 13 import java.lang.ref.SoftReference; 179 final Reference ref = entry.m_softValue; local 180 result = ref.get (); // may return null to the caller 185 ref.enqueue (); 195 final Reference ref = entry.m_softValue; local 196 result = ref.get (); // may return null to the caller 201 ref.enqueue (); 266 final IndexedSoftReference ref = currentKeyEntry.m_softValue local 322 final IndexedSoftReference ref = entry.m_softValue; local 490 IndexedSoftReference ref = entry.m_softValue; \/\/ get the soft value reference local [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/ |
ftmac.c | 226 FSRef ref; local 233 err = FT_GetFileRef_From_Mac_ATS_Name( fontName, &ref, face_index ); 237 if ( noErr != FSRefMakePath( &ref, path, maxPathSize ) ) 258 FSRef ref; 265 err = FT_GetFileRef_From_Mac_ATS_Name( fontName, &ref, face_index ); 269 if ( noErr != FSGetCatalogInfo( &ref, kFSCatInfoNone, NULL, NULL, 283 FSRef ref; local 286 if ( noErr != FSPathMakeRef( pathname, &ref, FALSE ) ) 290 err = FSOpenResourceFile( &ref, 0, NULL, fsRdPerm, res ); 295 *res = FSOpenResFile( &ref, fsRdPerm ) 306 FSRef ref; local 507 FSRef ref, par_ref; local 886 FSRef ref; local [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftmac.c | 226 FSRef ref; local 233 err = FT_GetFileRef_From_Mac_ATS_Name( fontName, &ref, face_index ); 237 if ( noErr != FSRefMakePath( &ref, path, maxPathSize ) ) 258 FSRef ref; 265 err = FT_GetFileRef_From_Mac_ATS_Name( fontName, &ref, face_index ); 269 if ( noErr != FSGetCatalogInfo( &ref, kFSCatInfoNone, NULL, NULL, 283 FSRef ref; local 286 if ( noErr != FSPathMakeRef( pathname, &ref, FALSE ) ) 290 err = FSOpenResourceFile( &ref, 0, NULL, fsRdPerm, res ); 295 *res = FSOpenResFile( &ref, fsRdPerm ) 306 FSRef ref; local 507 FSRef ref, par_ref; local 886 FSRef ref; local [all...] |
/external/elfutils/libelf/ |
elf_begin.c | 956 dup_elf (int fildes, Elf_Cmd cmd, Elf *ref) 962 fildes = ref->fildes; 965 else if (unlikely (ref->fildes != -1 && fildes != ref->fildes)) 974 if (unlikely (ref->cmd != ELF_C_READ && ref->cmd != ELF_C_READ_MMAP 975 && ref->cmd != ELF_C_WRITE && ref->cmd != ELF_C_WRITE_MMAP 976 && ref->cmd != ELF_C_RDWR && ref->cmd != ELF_C_RDWR_MMA [all...] |
/art/runtime/gc/space/ |
region_space.h | 173 bool IsInFromSpace(mirror::Object* ref) { 174 if (HasAddress(ref)) { 175 Region* r = RefToRegionUnlocked(ref); 181 bool IsInUnevacFromSpace(mirror::Object* ref) { 182 if (HasAddress(ref)) { 183 Region* r = RefToRegionUnlocked(ref); 189 bool IsInToSpace(mirror::Object* ref) { 190 if (HasAddress(ref)) { 191 Region* r = RefToRegionUnlocked(ref); 197 RegionType GetRegionType(mirror::Object* ref) { [all...] |
/art/runtime/entrypoints/quick/ |
quick_alloc_entrypoints.cc | 194 extern "C" void* art_quick_alloc_array##suffix(uint32_t, int32_t, ArtMethod* ref); \ 195 extern "C" void* art_quick_alloc_array_resolved##suffix(mirror::Class* klass, int32_t, ArtMethod* ref); \ 196 extern "C" void* art_quick_alloc_array_with_access_check##suffix(uint32_t, int32_t, ArtMethod* ref); \ 197 extern "C" void* art_quick_alloc_object##suffix(uint32_t type_idx, ArtMethod* ref); \ 198 extern "C" void* art_quick_alloc_object_resolved##suffix(mirror::Class* klass, ArtMethod* ref); \ 199 extern "C" void* art_quick_alloc_object_initialized##suffix(mirror::Class* klass, ArtMethod* ref); \ 200 extern "C" void* art_quick_alloc_object_with_access_check##suffix(uint32_t type_idx, ArtMethod* ref); \ 201 extern "C" void* art_quick_check_and_alloc_array##suffix(uint32_t, int32_t, ArtMethod* ref); \ 202 extern "C" void* art_quick_check_and_alloc_array_with_access_check##suffix(uint32_t, int32_t, ArtMethod* ref); \ 206 extern "C" void* art_quick_alloc_array##suffix##_instrumented(uint32_t, int32_t, ArtMethod* ref); \ [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Output.java | 105 ClassRef ref = classes[i]; local 107 out.println(descriptorToDot(ref.getName())); 120 FieldRef ref = fields[j]; local 122 out.println(descriptorToDot(ref.getDeclClassName()) + 123 "." + ref.getName() + " : " + ref.getTypeName()); 137 MethodRef ref = methods[j]; local 139 out.println(descriptorToDot(ref.getDeclClassName()) + 140 "." + ref.getName() + " : " + ref.getDescriptor()) [all...] |
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
remove_if.pass.cpp | 38 c1.remove_if(std::ref(cp)); 50 c1.remove_if(std::ref(cp)); 63 c1.remove_if(std::ref(cp)); 74 c1.remove_if(std::ref(cp)); 87 c1.remove_if(std::ref(cp)); 101 c1.remove_if(std::ref(cp)); 113 c1.remove_if(std::ref(cp)); 126 c1.remove_if(std::ref(cp)); 137 c1.remove_if(std::ref(cp)); 150 c1.remove_if(std::ref(cp)) [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
sad4d_avx2.c | 16 const uint8_t *const ref[4], 25 ref0 = ref[0]; 26 ref1 = ref[1]; 27 ref2 = ref[2]; 28 ref3 = ref[3]; 40 // sum of the absolute differences between every ref-i to src 45 // sum every ref-i 86 const uint8_t *const ref[4], 97 ref0 = ref[0]; 98 ref1 = ref[1] [all...] |
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
texture.hpp | 63 static TexRef ref; member in struct:__anon22359::CvCudevTextureRef 70 ref.normalized = normalizedCoords; 71 ref.filterMode = filterMode; 72 ref.addressMode[0] = addressMode; 73 ref.addressMode[1] = addressMode; 74 ref.addressMode[2] = addressMode; 78 CV_CUDEV_SAFE_CALL( cudaBindTexture2D(0, &ref, mat.data, &desc, mat.cols, mat.rows, mat.step) ); 83 cudaUnbindTexture(ref); 88 typename CvCudevTextureRef<T>::TexRef CvCudevTextureRef<T>::ref; member in class:__anon22359::CvCudevTextureRef 111 return tex2D(CvCudevTextureRef<T>::ref, x, y) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
vp9_sad4d_intrin_avx2.c | 15 uint8_t *ref[4], 24 ref0 = ref[0]; 25 ref1 = ref[1]; 26 ref2 = ref[2]; 27 ref3 = ref[3]; 39 // sum of the absolute differences between every ref-i to src 44 // sum every ref-i 85 uint8_t *ref[4], 96 ref0 = ref[0]; 97 ref1 = ref[1] [all...] |
vp9_variance_impl_intrin_avx2.c | 19 __m256i src, src_expand_low, src_expand_high, ref, ref_expand_low; local 36 ref =_mm256_castsi128_si256( 38 ref = _mm256_inserti128_si256(ref, 45 ref_expand_low = _mm256_unpacklo_epi8(ref, zero_reg); 46 ref_expand_high = _mm256_unpackhi_epi8(ref, zero_reg); 48 // src-ref 52 // madd low (src - ref) 58 // madd high (src - ref) 130 __m256i src, src_expand_low, src_expand_high, ref, ref_expand_low local [all...] |
/external/avahi/avahi-common/ |
dbus-watch-glue.c | 65 int ref; member in struct:__anon7079 70 assert(d->ref >= 1); 72 d->ref++; 78 assert(d->ref >= 1); 80 if (--d->ref <= 0) { 200 int ref; member in struct:TimeoutData 205 assert(t->ref >= 1); 207 t->ref++; 213 assert(t->ref >= 1); 215 if (--t->ref <= 0) [all...] |
/external/skia/src/animator/ |
SkScriptRuntime.cpp | 65 size_t ref; local 91 memcpy(&ref, opCode, sizeof(ref)); 92 opCode += sizeof(ref); 94 if (callBackFunction->invoke(ref, operand[0].fArray, /* params */ 101 memcpy(&ref, opCode, sizeof(ref)); 102 opCode += sizeof(ref); 104 if (callBackMember->invoke(ref, operand[0].fObject, &operand[0]) == false) { 110 memcpy(&ref, opCode, sizeof(ref)) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_reconinter.c | 71 int w, int h, int ref, 74 sf->predict[subpel_x != 0][subpel_y != 0][ref]( 83 int w, int h, int ref, 97 sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4); 150 int ref; local 152 for (ref = 0; ref < 1 + is_compound; ++ref) { 153 const struct scale_factors *const sf = &xd->block_refs[ref]->sf; 154 struct buf_2d *const pre_buf = &pd->pre[ref]; 254 int ref; local [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
find_anomalies_test.py | 105 'ref': {}, 108 ref = utils.TestKey( 109 'ChromiumGPU/linux-release/scrolling_benchmark/ref').get() 112 test_container_key = utils.GetTestContainerKey(ref.key) 127 test_path = 'ChromiumGPU/linux-release/scrolling_benchmark/ref' 137 ModelMatcher('ref'), 140 ModelMatcher('ref'), 143 ModelMatcher('ref'), 197 'ChromiumGPU/linux-release/scrolling_benchmark/ref').get() 210 ref = utils.TestKey [all...] |
/art/test/036-finalizer/src/ |
Main.java | 17 import java.lang.ref.WeakReference; 38 WeakReference<FinalizerTest> ref = new WeakReference<FinalizerTest>(ft); local 40 return ref; 53 FinalizerTest ref = wimp.get(); 54 if (ref != null) { 55 s[0] = ref.toString();
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
AbstractConnPool.java | 34 import java.lang.ref.Reference; 35 import java.lang.ref.ReferenceQueue; 200 public void handleReference(Reference ref) { 205 if (ref instanceof BasicPoolEntryRef) { 209 final boolean lost = issuedConnections.remove(ref); 212 ((BasicPoolEntryRef)ref).getRoute();
|
/external/deqp/modules/egl/ |
teglAndroidUtil.cpp | 139 MovePtr<ClientBuffer> AndroidNativeImageSource::createBuffer (const glw::Functions&, Texture2D* ref) const 143 if (ref != DE_NULL) 148 *ref = Texture2D(texFormat, 64, 64); 149 ref->allocLevel(0); 150 tcu::fillWithComponentGradients(ref->getLevel(0), 156 tcu::copy(nativeBuffer, ref->getLevel(0));
|
/external/lzma/CPP/7zip/Common/ |
StreamObjects.h | 29 void Init(const Byte *data, size_t size, IUnknown *ref = 0)
34 _ref = ref;
36 void Init(CReferenceBuf *ref) { Init(ref->Buf, ref->Buf.Size(), ref); }
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_wm_debug.c | 62 struct brw_wm_ref *ref ) 64 struct brw_reg hw_reg = ref->hw_reg; 66 if (ref->unspill_reg) 67 printf("UNSPILL(%x)/", ref->value->spill_slot); 70 brw_print_reg(ref->hw_reg); 74 brw_wm_print_value(c, ref->value);
|
/external/mesa3d/src/mesa/main/ |
stencil.c | 126 * \param ref front and back reference value. 136 _mesa_StencilFuncSeparateATI( GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask ) 156 ref = CLAMP( ref, 0, stencilMax ); 163 ctx->Stencil.Ref[0] == ref && 164 ctx->Stencil.Ref[1] == ref) 169 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[1] = ref [all...] |
/external/skia/src/gpu/gl/debug/ |
GrDebugGL.cpp | 50 fTextureUnits[i]->ref(); 107 fArrayBuffer->ref(); 135 fElementArrayBuffer->ref(); 159 fFrameBuffer->ref(); 179 fRenderBuffer->ref(); 199 fProgram->ref();
|