HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 401 - 425 of 3030) sorted by null

<<11121314151617181920>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
weakref.py 9 # they are called this instead of "ref" to avoid name collisions with
10 # the module-global ref() function imported from _weakref.
17 ref,
30 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
48 def remove(wr, selfref=ref(self)):
211 class KeyedRef(ref):
224 self = ref.__new__(type, ob, callback)
245 def remove(k, selfref=ref(self)):
253 del self.data[ref(key)]
256 return self.data[ref(key)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
weakref.py 9 # they are called this instead of "ref" to avoid name collisions with
10 # the module-global ref() function imported from _weakref.
17 ref,
30 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
48 def remove(wr, selfref=ref(self)):
211 class KeyedRef(ref):
224 self = ref.__new__(type, ob, callback)
245 def remove(k, selfref=ref(self)):
253 del self.data[ref(key)]
256 return self.data[ref(key)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
weakref.py 9 # they are called this instead of "ref" to avoid name collisions with
10 # the module-global ref() function imported from _weakref.
17 ref,
30 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
48 def remove(wr, selfref=ref(self)):
211 class KeyedRef(ref):
224 self = ref.__new__(type, ob, callback)
245 def remove(k, selfref=ref(self)):
253 del self.data[ref(key)]
256 return self.data[ref(key)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
weakref.py 9 # they are called this instead of "ref" to avoid name collisions with
10 # the module-global ref() function imported from _weakref.
17 ref,
30 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
48 def remove(wr, selfref=ref(self)):
211 class KeyedRef(ref):
224 self = ref.__new__(type, ob, callback)
245 def remove(k, selfref=ref(self)):
253 del self.data[ref(key)]
256 return self.data[ref(key)
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 120 mirror::Object* ref = obj_ptr->AsMirrorPtr(); local
121 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
123 mirror::Object* new_object = visitor_->MarkObject(ref);
124 if (ref != new_object) {
193 mirror::Object* ref = ref_ptr->AsMirrorPtr(); local
195 if (ref != nullptr && mod_union_table_->ShouldAddReference(ref)) {
267 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset) local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyTable.java 59 * Hold a cache of key() function result for each ref.
60 * Key is XMLString, the ref value
61 * Value is XNodeSet, the key() function result for the given ref value.
112 * @param ref The value that must match the value found by the 'match' attribute on xsl:key.
113 * @return a set of nodes referenced by the key named <CODE>name</CODE> and the reference <CODE>ref</CODE>. If no node is referenced by this key, an empty node set is returned.
115 public XNodeSet getNodeSetDTMByKey(QName name, XMLString ref)
118 XNodeSet refNodes = (XNodeSet) getRefsTable().get(ref);
233 * Add an association between a ref and a node in the m_refsTable.
236 * @param ref the value of the use clause of the current key for the given node
239 private void addValueInRefsTable(XPathContext xctxt, XMLString ref, int node)
    [all...]
  /external/libchrome/base/strings/
stringprintf_unittest.cc 117 char* ref = new char[kRefSize]; local
119 sprintf_s(ref, kRefSize, fmt, src, src, src, src, src, src, src);
121 snprintf(ref, kRefSize, fmt, src, src, src, src, src, src, src);
124 EXPECT_STREQ(ref, out.c_str());
125 delete[] ref;
  /external/libweave/third_party/chromium/base/strings/
stringprintf_unittest.cc 117 char* ref = new char[kRefSize]; local
119 sprintf_s(ref, kRefSize, fmt, src, src, src, src, src, src, src);
121 snprintf(ref, kRefSize, fmt, src, src, src, src, src, src, src);
124 EXPECT_STREQ(ref, out.c_str());
125 delete[] ref;
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_winsys.h 29 struct nouveau_bufref *ref = local
31 ref->priv = res;
32 ref->priv_data = flags;
44 struct nouveau_pushbuf_refn ref = { bo, flags }; local
45 nouveau_pushbuf_refn(push, &ref, 1);
  /external/opencv3/3rdparty/libwebp/dsp/
dsp.h 56 // will be done for (ref, in, dst) and (ref + 4, in + 16, dst + 4).
57 typedef void (*VP8Idct)(const uint8_t* ref, const int16_t* in, uint8_t* dst,
59 typedef void (*VP8Fdct)(const uint8_t* src, const uint8_t* ref, int16_t* out);
74 typedef int (*VP8Metric)(const uint8_t* pix, const uint8_t* ref);
76 typedef int (*VP8WMetric)(const uint8_t* pix, const uint8_t* ref,
90 typedef void (*VP8CHisto)(const uint8_t* ref, const uint8_t* pred,
  /external/opencv3/modules/videoio/src/cap_winrt/
CaptureFrameGrabber.cpp 39 auto reader = ref new Media::CaptureFrameGrabber(capture, props, streamType);
41 auto profile = ref new MediaEncodingProfile();
66 auto videoSampleHandler = ref new MediaSampleHandler(this, &Media::CaptureFrameGrabber::ProcessSample);
111 throw ref new COMException(E_UNEXPECTED, L"State");
146 throw ref new COMException(E_UNEXPECTED, L"State");
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DInterop.cpp 48 m_timer(ref new BasicTimer())
62 ref new TypedEventHandler<DrawingSurfaceManipulationHost^, PointerEventArgs^>(this, &Direct3DInterop::OnPointerPressed);
65 ref new TypedEventHandler<DrawingSurfaceManipulationHost^, PointerEventArgs^>(this, &Direct3DInterop::OnPointerMoved);
68 ref new TypedEventHandler<DrawingSurfaceManipulationHost^, PointerEventArgs^>(this, &Direct3DInterop::OnPointerReleased);
106 m_renderer = ref new CubeRenderer();
  /external/pcre/dist/
132html 48 $ref = 1;
149 $ref, $ref);
151 $ref);
152 $ref++;
  /external/webrtc/webrtc/modules/audio_processing/test/
test_utils.h 107 float ComputeSNR(const T* ref, const T* test, size_t length, float* variance) {
112 T error = ref[i] - test[i];
114 *variance += ref[i] * ref[i];
115 mean += ref[i];
  /system/core/libmemunreachable/
LeakFolding.cpp 49 for (auto& ref: leak.node.references_out) {
50 if (leak.scc != ref->ptr->scc) {
51 leak.scc->node.Edge(&ref->ptr->scc->node);
64 scc->node.Foreach([&](SCCInfo* ref) {
65 walk(ref);
  /external/libmpeg2/common/x86/
impeg2_inter_pred_sse42_intr.c 445 /* Inputs : ref - Reference frame from which the block will be */
455 /* the ref frame.Interpolate these four values to get the */
467 UWORD8 *ref,
483 ref_p0 = ref;
484 ref_p1 = ref + 1;
485 ref_p2 = ref + ref_wid;
486 ref_p3 = ref + ref_wid + 1;
657 /* Inputs : ref - Reference frame from which the block will be */
666 /* Processing : Point to the (0,0) and (1,0) position in the ref frame */
679 UWORD8 *ref,
    [all...]
  /frameworks/base/tools/aapt2/process/
SymbolTable.cpp 84 const SymbolTable::Symbol* SymbolTable::findByReference(const Reference& ref) {
93 if (ref.id) {
94 symbol = findById(ref.id.value());
97 if (ref.name && !symbol) {
98 symbol = findByName(ref.name.value());
300 const Reference& ref) {
302 if (ref.id) {
303 return findById(ref.id.value());
304 } else if (ref.name) {
305 return findByName(ref.name.value())
    [all...]
  /external/v8/test/mjsunit/
debug-handle.js 123 obj.properties[i].ref = handle_o;
127 obj.properties[i].ref = handle_p;
152 var ref = obj.properties[i].ref;
153 var arguments = '{"handles":[' + ref + ']}';
158 assertEquals('string', response_name.body[ref].type);
159 assertEquals("f", response_name.body[ref].value);
165 assertEquals('number', response_length.body[ref].type);
166 assertEquals(1, response_length.body[ref].value);
170 assertEquals(handle_g, obj.properties[i].ref);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
surface.c 109 if (surface->ref[i]) {
110 XvMCSurfacePrivate *ref = surface->ref[i]->privData; local
112 if (ref)
113 desc->ref[num_refs++] = ref->video_buffer;
129 if (surface->ref[i]) {
130 XvMCSurface *ref = surface->ref[i]; local
132 assert(ref);
    [all...]
  /external/e2fsprogs/tests/progs/
test_rel.c 106 struct ext2_inode_reference ref; local
122 retval = ext2fs_irel_next_ref(irel, &ref);
127 if (ref.block == 0)
134 printf("%u:%u", ref.block, ref.offset);
540 struct ext2_inode_reference ref; local
560 ref.block = block;
561 ref.offset = offset;
563 retval = ext2fs_irel_add_ref(irel, ino, &ref);
597 struct ext2_inode_reference ref; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNameTest.java 146 int[] ref = (int[]) positives[i][1]; local
147 assertEquals("Length differs for " + positives[i][0], ref.length, res.length);
149 assertEquals("Element differs for " + positives[i][0], (byte) ref[j], res[j]);
181 int[] ref = (int[]) positives[i][1]; local
182 assertEquals("Length differs for " + positives[i][0], ref.length,
185 if (res[j] != ref[j]) {
187 (byte) ref[j], res[j]);
  /external/libedit/src/
hist.c 58 el->el_history.ref = NULL;
87 el->el_history.ref = ptr;
118 if (el->el_history.ref == NULL)
163 if (el->el_history.ref == NULL)
181 return FUNW(history)(el->el_history.ref, &ev, H_SETSIZE, num);
184 return FUNW(history)(el->el_history.ref, &ev, H_SETUNIQUE, num);
218 if ((*(el)->el_history.fun)((el)->el_history.ref, &ev, fn, arg) == -1)
  /external/libvpx/libvpx/vp9/encoder/
vp9_avg.c 132 void vp9_int_pro_row_c(int16_t hbuf[16], uint8_t const *ref,
141 hbuf[idx] += ref[i * ref_stride];
144 ++ref;
149 int16_t vp9_int_pro_col_c(uint8_t const *ref, const int width) {
154 sum += ref[idx];
158 // ref: [0 - 510]
161 int vp9_vector_var_c(int16_t const *ref, int16_t const *src,
168 int diff = ref[i] - src[i]; // diff: dynamic range [-510, 510], 10 bits.
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 77 (*ref)(float a); member in struct:unary_test_t
329 float ref = test->ref(in[i]); local
333 error = fabs(out[i] - ref);
334 precision = error ? -log2(error/fabs(ref)) : FLT_MANT_DIG;
338 if (isnan(ref)) {
343 printf("%s(%.9g): ref = %.9g, out = %.9g, precision = %f bits, %s\n",
344 test->name, in[i], ref, out[i], precision,

Completed in 1149 milliseconds

<<11121314151617181920>>