/external/mesa3d/src/mesa/math/ |
m_debug_clip.c | 232 GLvector4f source[1], dest[1], ref[1]; local 269 ref->data = (GLfloat(*)[4])r; 270 ref->start = (GLfloat *)r; 271 ref->count = TEST_COUNT; 272 ref->stride = sizeof(float[4]); 273 ref->size = 0; 274 ref->flags = 0; 279 ref_cliptest[psize]( source, ref, rm, &rco, &rca, viewport_z_clip ); 311 printf( "mask[%d] = 0x%02x ref mask[%d] = 0x%02x\n", i, dm[i], i,rm[i] );
|
/external/mesa3d/src/mesa/swrast/ |
s_stencil.c | 131 const GLubyte ref = ctx->Stencil.Ref[face]; local 145 /* replace stencil buf values with ref value */ 146 STENCIL_OP(ref); 218 const GLubyte ref = (GLubyte) (ctx->Stencil.Ref[face] & valueMask); local 236 STENCIL_TEST(ref < s); 239 STENCIL_TEST(ref <= s); 242 STENCIL_TEST(ref > s); 245 STENCIL_TEST(ref >= s) [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftrfork.c | 176 FT_RFork_Ref *ref = NULL; local 212 if ( FT_NEW_ARRAY( ref, *count ) ) 217 if ( FT_READ_USHORT( ref[j].res_id ) ) 226 ref[j].offset = temp & 0xFFFFFFL; 229 j, ref[j].res_id, ref[j].offset )); 234 ft_qsort( ref, (size_t)*count, sizeof ( FT_RFork_Ref ), 242 j, ref[j].res_id, ref[j].offset )); 254 offsets_internal[j] = rdata_pos + ref[j].offset [all...] |
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
AccountManagerTest.java | 102 AccountManager ref = AccountManager.get(activity); local 104 assertTrue(ref == accountManager); 105 assertThat(ref, equalTo(accountManager));
|
/external/skia/include/gpu/ |
GrGpuResource.h | 22 * class to isolate the ref-cnting behavior and provide friendship without exposing all of 26 * 1) Normal ref (+ by ref(), - by unref()): These are used by code that is issuing draw calls 34 * The latter two ref types are private and intended only for Gr core code. 36 * When all the ref/io counts reach zero DERIVED::notifyAllCntsAreZero() will be called (static poly 37 * morphism using CRTP). Similarly when the ref (but not necessarily pending read/write) count 39 * the ref cnt to reach zero and the other counts are zero, notifyRefCountIsZero() will be called 53 void ref() const { function in class:GrIORef 132 friend class GrResourceCache; // to check IO ref counts. 221 * Takes a ref on data. Previously attached data, if any, is unrefed [all...] |
/external/skia/src/core/ |
SkRWBuffer.cpp | 77 void ref() const { function in struct:SkBufferHead 84 // A release here acts in place of all releases we "should" have been doing in ref(). 119 fHead->ref();
|
/external/v8/src/compiler/ |
raw-machine-assembler.cc | 163 Node* ref = AddNode( local 167 return AddNode(common()->Call(descriptor), centry, arg1, ref, arity, context); 178 Node* ref = AddNode( local 182 return AddNode(common()->Call(descriptor), centry, arg1, arg2, ref, arity, 195 Node* ref = AddNode( local 200 ref, arity, context); 232 Node* ref = AddNode( local 236 Node* nodes[] = {centry, arg1, ref, arity, context}; 256 Node* ref = AddNode( local 260 Node* nodes[] = {centry, arg1, arg2, ref, arity, context} [all...] |
/external/valgrind/VEX/priv/ |
guest_ppc_helpers.c | 130 UChar ref[32] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, local 144 pU128_src = (U128*)&ref[sh]; 159 UChar ref[32]; local 162 /* ref[] used to be a static const array, but this doesn't work on 169 for (i = 0; i < 32; i++) ref[i] = i; 181 pU128_src = (U128*)&ref[sh];
|
/external/webrtc/webrtc/base/ |
macsocketserver.cc | 87 CFRunLoopSourceRef ref = local 90 if (!ref) { 95 CFRunLoopAddSource(CFRunLoopGetCurrent(), ref, kCFRunLoopCommonModes); local 97 CFRelease(ref);
|
/external/webrtc/webrtc/system_wrappers/source/ |
clock.cc | 158 ReferencePoint ref = {}; local 172 ref.counter_ms.QuadPart = timeGetTime(); 176 ref.file_time = ft1; 178 return ref;
|
/external/wpa_supplicant_8/src/utils/ |
trace.c | 347 void wpa_trace_add_ref_func(struct wpa_trace_ref *ref, const void *addr) 351 ref->addr = addr; 352 wpa_trace_record(ref); 353 dl_list_add(&active_references, &ref->list); 359 struct wpa_trace_ref *ref; local 360 dl_list_for_each(ref, &active_references, struct wpa_trace_ref, list) { 361 if (addr != ref->addr) 364 wpa_trace_dump("Reference registration", ref);
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
findhalfpel.cpp | 136 uint8 *ref; local 146 ref = ncand - 3 - lx - (lx << 1); /* move back (-3,-3) */ 155 tmp32 = *ref++; 156 tmp8 = *ref++; 158 tmp8 = *ref++; 160 tmp8 = *ref++; 165 ref += (lx - 24); 169 ref = subpel_pred + 2; 176 a = ref[-2]; 177 b = ref[-1] [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
sad_inline.h | 82 __inline int32 simd_sad_mb(UChar *ref, UChar *blk, Int dmin, Int lx) 88 x8 = (uintptr_t)ref & 0x3; 101 ref -= lx; 108 x10 = *((uint32*)(ref += lx)); 109 x11 = *((uint32*)(ref + 4)); 127 x10 = *((uint32*)(ref + 8)); 128 x11 = *((uint32*)(ref + 12)); 163 return sad_mb_offset3(ref, blk, lx, dmin); 167 return sad_mb_offset2(ref, blk, lx, dmin); 171 return sad_mb_offset1(ref, blk, lx, dmin) 266 MOVS x8, ref, lsl #31 ; local [all...] |
/frameworks/base/libs/hwui/ |
DisplayList.h | 169 void ref(VirtualLightRefBase* prop) { function in class:android::uirenderer::DisplayList
|
/frameworks/base/tools/aapt2/ |
ResourceUtils.cpp | 209 ResourceNameRef ref; local 210 ref.type = ResourceType::kStyle; 213 extractResourceName(name, &ref.package, &typeStr, &ref.entry); 225 if (!hasLeadingIdentifiers && ref.package.empty() && !typeStr.empty()) { 232 Reference result(ref); 238 ResourceNameRef ref; local 240 if (tryParseReference(str, &ref, outCreate, &privateRef)) { 241 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref); 246 if (tryParseAttributeReference(str, &ref)) { [all...] |
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pDnsSdServiceResponse.java | 237 String ref = vmpack.get(dis.readUnsignedByte()); local 238 if (ref == null) { 242 sb.append(ref);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
loopfilter.c | 118 ref, /* index in ref_lf_deltas */ local 160 ref = INTRA_FRAME; 163 lvl_ref = lvl_seg + mbd->ref_lf_deltas[ref]; 172 lfi->lvl[seg][ref][mode] = lvl_mode; 177 lfi->lvl[seg][ref][mode] = lvl_mode; 180 for(ref = 1; ref < MAX_REF_FRAMES; ref++) 183 lvl_ref = lvl_seg + mbd->ref_lf_deltas[ref]; 192 lfi->lvl[seg][ref][mode] = lvl_mode [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_detokenize.c | 89 const int ref = is_inter_block(&xd->mi[0]->mbmi); local 92 fc->coef_probs[tx_size][type][ref]; 95 counts->coef[tx_size][type][ref]; 97 counts->eob_branch[tx_size][type][ref];
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_encodemv.c | 203 const MV* mv, const MV* ref, 205 const MV diff = {mv->row - ref->row, 206 mv->col - ref->col}; 208 usehp = usehp && vp9_use_mv_hp(ref); 237 const MV *ref = &mbmi->ref_mvs[mbmi->ref_frame[i]][0].as_mv; local 238 const MV diff = {mvs[i].as_mv.row - ref->row, 239 mvs[i].as_mv.col - ref->col};
|
vp9_pickmode.c | 39 int ref = mbmi->ref_frame[0]; local 40 const MV ref_mv = mbmi->ref_mvs[ref][0].as_mv; 49 ref); 68 if ((x->pred_mv_sad[ref] >> 3) > x->pred_mv_sad[i]) { 79 assert(x->mv_best_ref_index[ref] <= 2); 80 if (x->mv_best_ref_index[ref] < 2) 81 mvp_full = mbmi->ref_mvs[ref][x->mv_best_ref_index[ref]].as_mv; 83 mvp_full = x->pred_mv[ref].as_mv; 140 int ref = mbmi->ref_frame[0] local [all...] |
/libcore/ojluni/src/main/java/java/net/ |
URLStreamHandler.java | 134 String ref = u.getRef(); local 346 setURL(u, protocol, host, port, authority, userInfo, path, query, ref); 531 * @param ref the reference. 539 String query, String ref) { 545 u.set(u.getProtocol(), host, port, authority, userInfo, path, query, ref); local 558 * @param ref the reference. 566 String file, String ref) { 595 setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
|
/ndk/tests/device/test-gnustl-full/unit/ |
vector_test.cpp | 346 vector<int> ref; local 348 ref.push_back(i); 351 vector<vector<int> > v_v_int(1, ref); 353 v_v_int.push_back(ref); 356 v_v_int.push_back(ref); 360 CPPUNIT_ASSERT( *vvit == ref ); 368 CPPUNIT_ASSERT( *vvit == ref );
|
/ndk/tests/device/test-stlport/unit/ |
vector_test.cpp | 346 vector<int> ref; local 348 ref.push_back(i); 351 vector<vector<int> > v_v_int(1, ref); 353 v_v_int.push_back(ref); 356 v_v_int.push_back(ref); 360 CPPUNIT_ASSERT( *vvit == ref ); 368 CPPUNIT_ASSERT( *vvit == ref );
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
BitmapCache.java | 25 import java.lang.ref.WeakReference; 165 WeakReference<Bitmap> ref = list.get(i); local 166 if (ref.get() == bitmap) { 177 WeakReference<Bitmap> ref = null; local 180 ref = list.remove(0); 186 if (ref != null) { 187 bitmap = ref.get();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
_weakrefset.py | 5 from _weakref import ref namespace 18 self.weakcontainer = ref(weakcontainer) 38 def _remove(item, selfref=ref(self)): 70 wr = ref(item) 84 self.data.add(ref(item, self._remove)) 109 self.data.remove(ref(item)) 114 self.data.discard(ref(item)) 140 self.data.difference_update(ref(item) for item in other) 152 self.data.intersection_update(ref(item) for item in other) 156 return self.data.issubset(ref(item) for item in other [all...] |