HomeSort by relevance Sort by last modified time
    Searched refs:Ref (Results 51 - 75 of 157) sorted by null

1 23 4 5 6 7

  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 64 errs() << " " << MRSum << " Total Mod/Ref Queries Performed\n";
66 printLine("no mod/ref", NoMR, MRSum);
67 printLine("ref", JustRef, MRSum);
69 printLine("mod/ref", MR, MRSum);
70 errs() << " Mod/Ref Analysis Counter Summary: " <<NoMR*100/MRSum
158 case Ref: JustRef++; MRString = "JustRef"; break;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 180 ctx->Stencil.Ref[0] << 8 |
nv10_state_raster.c 148 PUSH_DATA (push, ctx->Stencil.Ref[0]);
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 407 * for REF type parameters.
423 * and also REF types. UDTs can be {@code STRUCT}, {@code DISTINCT}, {@code
427 * SQL type name when supplying a {@code NULL} UDT or REF. For a UDT, the
428 * type name is the type name of the parameter itself, but for a REF
438 * the fully qualified name of a UDT or REF type - ignored if the
457 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
480 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
505 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
529 * REF(<structured-type>)} value. This is stored as an SQL {@code REF}
    [all...]
CallableStatement.java 520 * Gets the value of a specified SQL {@code REF(<structured type>)}
521 * parameter as a {@code java.sql.Ref}.
526 * @return a {@code java.sql.Ref} with the parameter value. {@code null}
531 public Ref getRef(int parameterIndex) throws SQLException;
534 * Gets the value of a specified SQL {@code REF(<structured type>)}
535 * parameter as a {@code java.sql.Ref}.
540 * java.sql.Ref}. A {@code null} reference is returned if the
544 * @see Ref
546 public Ref getRef(String parameterName) throws SQLException;
790 * of this method for User Defined Types or a {@code REF} type
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 137 mem_->Ref();
420 mem->Ref();
510 base->Ref();
1045 mem_->Ref();
1048 imm_->Ref();
1053 versions_->current()->Ref();
    [all...]
version_set.h 89 void Ref();
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTest.cpp 59 using ::testing::Ref;
559 usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _))
606 usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _))
659 usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _))
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 83 static value alloc_generic_value(LLVMGenericValueRef Ref) {
85 Genericvalue_val(Val) = Ref;
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 29 import java.sql.Ref;
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 29 import java.sql.Ref;
209 public void setRef(int parameterIndex, Ref theRef) throws SQLException {
457 public Ref getRef(int columnIndex) throws SQLException {
461 public Ref getRef(String colName) throws SQLException {
727 public void updateRef(int columnIndex, Ref x) throws SQLException {
730 public void updateRef(String columnName, Ref x) throws SQLException {
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 330 DataRefImpl Ref = Sec->getRawDataRefImpl();
332 MachO->getSectionName(Ref, SectionName);
333 StringRef SegmentName = MachO->getSectionFinalSegmentName(Ref);
623 DataRefImpl Ref = Sec->getRawDataRefImpl();
625 Obj.getSectionName(Ref, SectionName);
626 StringRef SegmentName = Obj.getSectionFinalSegmentName(Ref);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 303 ctx->Stencil.Ref[0],
307 ctx->Stencil.Ref[1],
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 518 template <typename T> T resolve(DIRef<T> Ref) const {
519 return DD->resolve(Ref);
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 334 const MCExpr *Ref =
337 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 303 ctx->Stencil.Ref[0],
307 ctx->Stencil.Ref[1],
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketTest.cpp 28 using testing::Ref;
660 EXPECT_CALL(channel(), send(Ref(*view->buffer()), 0, 8)).WillOnce(Return(WebSocketChannel::SendSuccess));
679 EXPECT_CALL(channel(), send(Ref(*view->buffer()), 0, 8)).WillOnce(Return(WebSocketChannel::SendFail));
698 EXPECT_CALL(channel(), send(Ref(*view->buffer()), 0, 8)).WillOnce(Return(WebSocketChannel::InvalidMessage));
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
variance_test.cc 38 static unsigned int variance_ref(const uint8_t *ref, const uint8_t *src,
45 int diff = ref[w * y + x] - src[w * y + x];
54 static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
63 const int a1 = ref[(w + 1) * (y + 0) + x + 0];
64 const int a2 = ref[(w + 1) * (y + 0) + x + 1];
65 const int b1 = ref[(w + 1) * (y + 1) + x + 0];
66 const int b2 = ref[(w + 1) * (y + 1) + x + 1];
128 EXPECT_EQ(0u, var) << "src values: " << i << "ref values: " << j;
165 unsigned int subpel_avg_variance_ref(const uint8_t *ref,
177 const int a1 = ref[(w + 1) * (y + 0) + x + 0]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_state.c 66 front_ref = ctx->Stencil.Ref[0];
73 back_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
81 front_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
88 back_ref = ctx->Stencil.Ref[0];
161 i915StencilFuncSeparate(struct gl_context * ctx, GLenum face, GLenum func, GLint ref,
178 i915AlphaFunc(struct gl_context * ctx, GLenum func, GLfloat ref)
185 UNCLAMPED_FLOAT_TO_UBYTE(refByte, ref);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_raster.c 148 PUSH_DATA (push, ctx->Stencil.Ref[0]);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FormDictionary_autogen.cpp 119 SkPdfDictionary* SkPdfType1FormDictionary::Ref(SkPdfNativeDoc* doc) {
120 SkPdfNativeObject* ret = get("Ref", "");
128 return get("Ref", "") != NULL;
  /external/libvpx/libvpx/test/
variance_test.cc 38 static unsigned int variance_ref(const uint8_t *ref, const uint8_t *src,
45 int diff = ref[w * y + x] - src[w * y + x];
54 static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
63 const int a1 = ref[(w + 1) * (y + 0) + x + 0];
64 const int a2 = ref[(w + 1) * (y + 0) + x + 1];
65 const int b1 = ref[(w + 1) * (y + 1) + x + 0];
66 const int b2 = ref[(w + 1) * (y + 1) + x + 1];
128 EXPECT_EQ(0u, var) << "src values: " << i << "ref values: " << j;
165 unsigned int subpel_avg_variance_ref(const uint8_t *ref,
177 const int a1 = ref[(w + 1) * (y + 0) + x + 0]
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 66 front_ref = ctx->Stencil.Ref[0];
73 back_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
81 front_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
88 back_ref = ctx->Stencil.Ref[0];
161 i915StencilFuncSeparate(struct gl_context * ctx, GLenum face, GLenum func, GLint ref,
178 i915AlphaFunc(struct gl_context * ctx, GLenum func, GLfloat ref)
185 UNCLAMPED_FLOAT_TO_UBYTE(refByte, ref);
    [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FormDictionary_autogen.cpp 119 SkPdfDictionary* SkPdfType1FormDictionary::Ref(SkPdfNativeDoc* doc) {
120 SkPdfNativeObject* ret = get("Ref", "");
128 return get("Ref", "") != NULL;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
variance_test.cc 38 static unsigned int variance_ref(const uint8_t *ref, const uint8_t *src,
45 int diff = ref[w * y + x] - src[w * y + x];
54 static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
63 const int a1 = ref[(w + 1) * (y + 0) + x + 0];
64 const int a2 = ref[(w + 1) * (y + 0) + x + 1];
65 const int b1 = ref[(w + 1) * (y + 1) + x + 0];
66 const int b2 = ref[(w + 1) * (y + 1) + x + 1];
128 EXPECT_EQ(0u, var) << "src values: " << i << "ref values: " << j;
165 unsigned int subpel_avg_variance_ref(const uint8_t *ref,
177 const int a1 = ref[(w + 1) * (y + 0) + x + 0]
    [all...]

Completed in 3872 milliseconds

1 23 4 5 6 7