HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 776 - 800 of 3742) sorted by null

<<31323334353637383940>>

  /external/webp/src/dsp/
enc.c 59 static void CollectHistogram(const uint8_t* ref, const uint8_t* pred,
68 VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out);
104 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
110 static WEBP_INLINE void ITransformOne(const uint8_t* ref, const int16_t* in,
143 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
145 ITransformOne(ref, in, dst);
147 ITransformOne(ref + 4, in + 16, dst + 4);
151 static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) {
154 for (i = 0; i < 4; ++i, src += BPS, ref += BPS) {
155 const int d0 = src[0] - ref[0]; // 9bit dynamic range ([-255,255]
    [all...]
yuv.c 254 static uint64_t SharpYUVUpdateY_C(const uint16_t* ref, const uint16_t* src,
259 const int diff_y = ref[i] - src[i];
267 static void SharpYUVUpdateRGB_C(const int16_t* ref, const int16_t* src,
271 const int diff_uv = ref[i] - src[i];
300 uint64_t (*WebPSharpYUVUpdateY)(const uint16_t* ref, const uint16_t* src,
302 void (*WebPSharpYUVUpdateRGB)(const int16_t* ref, const int16_t* src,
  /external/deqp/framework/common/
tcuTexture.cpp 1664 const float ref = (clampValues) ? (de::clamp(ref_, 0.0f, 1.0f)) : (ref_); local
    [all...]
  /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...]
  /frameworks/native/libs/vr/libpdx_uds/
ipc_helper.cpp 229 const int ref = file_handles_.size(); local
231 return ref;
240 const int ref = file_handles_.size(); local
242 return ref;
343 bool ReceivePayload::GetFileHandle(FileReference ref, LocalHandle* handle) {
344 if (ref < 0) {
345 *handle = LocalHandle{ref};
348 if (static_cast<size_t>(ref) > file_handles_.size())
350 *handle = std::move(file_handles_[ref]);
354 bool ReceivePayload::GetChannelHandle(ChannelReference /*ref*/,
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectStreamClass.java 28 import java.lang.ref.Reference;
29 import java.lang.ref.ReferenceQueue;
30 import java.lang.ref.SoftReference;
31 import java.lang.ref.WeakReference;
312 Reference<?> ref = Caches.localDescs.get(key); local
314 if (ref != null) {
315 entry = ref.get();
322 if (ref != null) {
323 Caches.localDescs.remove(key, ref);
325 ref = Caches.localDescs.putIfAbsent(key, newRef)
2119 Reference<?> ref = Caches.reflectors.get(key); local
2317 Reference<? extends Class<?>> ref; local
    [all...]
  /external/tremolo/Tremolo/
framing.c 180 length, a zero length ref is returned. */
357 b->ref=b->baseref;
359 b->end=b->pos+b->ref->length;
360 b->ptr=b->ref->buffer->data+b->ref->begin;
368 b->pos+=b->ref->length;
369 b->ref=b->ref->next;
370 b->end=b->ref->length+b->pos;
371 b->ptr=b->ref->buffer->data+b->ref->begin
    [all...]
  /frameworks/base/libs/hwui/
RecordingCanvas.cpp 383 mDisplayList->ref(left);
384 mDisplayList->ref(top);
385 mDisplayList->ref(right);
386 mDisplayList->ref(bottom);
387 mDisplayList->ref(rx);
388 mDisplayList->ref(ry);
389 mDisplayList->ref(paint);
409 mDisplayList->ref(x);
410 mDisplayList->ref(y);
411 mDisplayList->ref(radius)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_sad_sse2.asm 18 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, n_rows
20 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, \
25 cglobal highbd_sad%1x%2_avg, 5, 1 + %3, 7, src, src_stride, ref, ref_stride, \
29 ref, ref_stride, \
45 ; convert src, ref & second_pred to short ptrs (from byte ptrs)
54 ; uint8_t *ref, int ref_stride);
161 ; uint8_t *ref, int ref_stride);
229 ; uint8_t *ref, int ref_stride);
298 ; uint8_t *ref, int ref_stride);
  /external/boringssl/src/crypto/x509v3/
v3_cpols.c 459 NOTICEREF *ref;
460 ref = notice->noticeref;
462 ref->organization->data);
464 sk_ASN1_INTEGER_num(ref->noticenos) > 1 ? "s" : "");
465 for (i = 0; i < sk_ASN1_INTEGER_num(ref->noticenos); i++) {
468 num = sk_ASN1_INTEGER_value(ref->noticenos, i);
  /external/clang/test/OpenMP/
simd_linear_messages.cpp 114 #pragma omp simd linear (ref() // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
138 #pragma omp simd linear(ref(e, g)) // expected-error 2 {{variable of non-reference type 'int' can be used only with 'val' modifier, but used with 'ref'}}
151 #pragma omp simd linear(ref(j))
179 #pragma omp simd linear(ref(f))
181 #pragma omp simd linear(foo(f)) // expected-error {{expected one of 'ref', val' or 'uval' modifiers}}
207 #pragma omp simd linear (ref()) // expected-error {{expected expression}}
241 #pragma omp simd linear(ref(j))
taskloop_simd_linear_messages.cpp 114 #pragma omp taskloop simd linear (ref() // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
138 #pragma omp taskloop simd linear(ref(e, g)) // expected-error 2 {{variable of non-reference type 'int' can be used only with 'val' modifier, but used with 'ref'}}
151 #pragma omp taskloop simd linear(ref(j))
179 #pragma omp taskloop simd linear(ref(f))
181 #pragma omp taskloop simd linear(foo(f)) // expected-error {{expected one of 'ref', val' or 'uval' modifiers}}
207 #pragma omp taskloop simd linear (ref()) // expected-error {{expected expression}}
241 #pragma omp taskloop simd linear(ref(j))
  /external/jdiff/src/jdiff/
Comments.java 238 String ref = ""; local
241 ref = pkg.name_ + "." + cls.name_ + ".";
243 ref = pkg.name_ + ".";
245 ref = ref.replace('.', '/');
338 result.append(ref);
  /external/llvm/lib/Target/Hexagon/
BitTracker.h 102 // possible bit values. One extension here is the "Ref" type, which
110 Ref // Bit value same as the one described in RefI.
112 // bottom will be expressed as a "ref to itself", which, in the context
117 // Self <= x, where "Self" is "ref to itself".
120 // for one register will be a simple "ref" for another register.
128 // Such cases are identical to the usual Ref type, but the register
131 // What is worthy of notice is that in value V (that is a "ref"), as long
134 // tion of V, then V is assumed to be "bottom" (as a "ref to itself"),
138 // not possible. Any value V that is a "ref", and whose RefI.Reg is 0
146 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {
220 BitTracker::BitValue::ref(const BitValue &V) { function in class:llvm::BitTracker::BitValue
    [all...]
  /libcore/ojluni/src/main/java/java/net/
URLStreamHandler.java 133 String ref = u.getRef(); local
351 setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
537 * @param ref the reference.
545 String query, String ref) {
551 u.set(u.getProtocol(), host, port, authority, userInfo, path, query, ref); local
564 * @param ref the reference.
572 String file, String ref) {
601 setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
RemoteAdtTestRunner.java 231 ITestReference ref = c.getDeviceSuite(); local
232 ref.sendTree(this);
402 public synchronized void testEnded(TestCaseReference ref) {
403 mListener.notifyTestEnded(ref);
406 public synchronized void testFailed(TestReferenceFailure ref) {
407 mListener.notifyTestFailed(ref);
  /external/dtc/
livetree.c 219 void add_orphan_node(struct node *dt, struct node *new_node, char *ref)
227 d = data_add_marker(d, REF_PHANDLE, ref);
460 if (streq(m->ref, label))
553 struct node *get_node_by_ref(struct node *tree, const char *ref)
555 if (streq(ref, "/"))
557 else if (ref[0] == '/')
558 return get_node_by_path(tree, ref);
560 return get_node_by_label(tree, ref);
843 if (!get_node_by_ref(dti->dt, m->ref))
862 /* m->ref can only be a REF_PHANDLE, but check anyway *
    [all...]
  /libcore/ojluni/src/main/java/java/util/logging/
Logger.java 31 import java.lang.ref.WeakReference;
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
avg_msa.c 393 void vpx_int_pro_row_msa(int16_t hbuf[16], const uint8_t *ref,
404 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
405 ref += 8 * ref_stride;
428 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
429 ref += 8 * ref_stride;
446 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
447 ref += 8 * ref_stride;
470 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
471 ref += 8 * ref_stride;
488 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fBasicComputeShaderTests.cpp 218 const deUint32 ref = ~inputValues[ndx]; local
220 if (res != ref)
339 const deUint32 ref = ~inputValues[ndx]; local
341 if (res != ref)
440 const deUint32 ref = ~inputValues[ndx]; local
442 if (res != ref)
554 const deUint32 ref = ndx; local
556 if (res != ref)
557 throw tcu::TestError(string("Comparison failed for Out0.values[") + de::toString(ndx) + "] res=" + de::toString(res) + " ref=" + de::toString(ref));
567 const deUint32 ref = m_numValues - ndx; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 351 CstFieldRef ref = local
353 int basicType = ref.getBasicType();
364 CstFieldRef ref = local
366 int basicType = ref.getBasicType();
377 CstFieldRef ref = local
379 int basicType = ref.getBasicType();
390 CstFieldRef ref = local
392 int basicType = ref.getBasicType();
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 525 CstFieldRef ref = local
527 int basicType = ref.getBasicType();
538 CstFieldRef ref = local
540 int basicType = ref.getBasicType();
551 CstFieldRef ref = local
553 int basicType = ref.getBasicType();
564 CstFieldRef ref = local
566 int basicType = ref.getBasicType();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pdeps.py 157 for ref in list:
158 print ref,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AToken_traditional.h 79 virtual void ref() {;} function in class:ANTLRAbstractToken
140 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
  /external/ImageMagick/PerlMagick/
Magick.pm 79 my $class = ref($this) || $this || "Image::Magick";
89 my $class = ref($this) || $this || "Image::Magick";

Completed in 2150 milliseconds

<<31323334353637383940>>