HomeSort by relevance Sort by last modified time
    Searched refs:Near (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
ControlFlow.cpp 18 #define TestJ(C, Near, Src0, Value0, Src1, Value1, Dest) \
20 const bool NearJmp = AssemblerX8632::k##Near##Jump; \
32 EXPECT_EQ(Value0, test.Src0()) << "Br_" #C ", " #Near; \
33 EXPECT_EQ(Value1, test.Src1()) << "Br_" #C ", " #Near; \
34 EXPECT_EQ(0xBEEFul, test.Dest()) << "Br_" #C ", " #Near; \
38 TestJ(o, Near, eax, 0x80000000ul, ebx, 0x1ul, ecx);
40 TestJ(no, Near, ecx, 0x1ul, edx, 0x1ul, edi);
42 TestJ(b, Near, edi, 0x1ul, esi, 0x80000000ul, eax);
44 TestJ(ae, Near, eax, 0x80000000ul, ebx, 0x1ul, ecx);
46 TestJ(e, Near, ecx, 0x80000000ul, edx, 0x80000000ul, edi)
    [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
ControlFlow.cpp 17 #define TestJ(C, Near, Dest, Src0, Value0, Src1, Value1) \
20 "(" #C ", " #Near ", " #Dest ", " #Src0 ", " #Value0 ", " #Src1 \
22 const bool NearJmp = AssemblerX8664::k##Near##Jump; \
41 TestJ(o, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
43 TestJ(no, Near, Dst, Src0, 0x1ul, Src1, 0x1ul); \
45 TestJ(b, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
47 TestJ(ae, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
49 TestJ(e, Near, Dst, Src0, 0x80000000ul, Src1, 0x80000000ul); \
51 TestJ(ne, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
53 TestJ(be, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
literal_test_util_test.cc 61 CHECK(LiteralTestUtil::Near(*two, *four, error)) << "two is not near four";
73 ASSERT_DEATH(dummy_lambda(), "two is not near four");
105 EXPECT_TRUE(LiteralTestUtil::Near(*a, *b, ErrorSpec{0.0001}));
113 EXPECT_TRUE(LiteralTestUtil::Near(*a, *b, ErrorSpec{0.0001}));
120 EXPECT_FALSE(LiteralTestUtil::Near(*a, *b, ErrorSpec{0.0001}));
121 EXPECT_FALSE(LiteralTestUtil::Near(*b, *a, ErrorSpec{0.0001}));
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 107 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ExecutionEngine/
SectionMemoryManager.h 110 sys::MemoryBlock Near;
  /external/llvm/unittests/Support/
MemoryTest.cpp 266 MemoryBlock Near((void*)(3*PageSize), 16);
267 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC);
269 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC);
271 MemoryBlock M3 = Memory::allocateMappedMemory(32, &Near, Flags, EC);
288 MemoryBlock Near(nullptr, 0);
289 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC);
291 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC);
293 MemoryBlock M3 = Memory::allocateMappedMemory(32, &Near, Flags, EC);
314 MemoryBlock Near((void*)(4*PageSize), 0);
315 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC)
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor_testutil.h 194 static void Near(const T& a, const T& b, const double abs_err, int index) {
201 static void Near(const Tensor& x, const Tensor& y, const double abs_err) {
208 Near(a[i], b[i], abs_err, i);
224 internal::Expector<T>::Near(x, y, abs_err);
  /external/mesa3d/src/mesa/main/
viewport.c 83 GLdouble Near, Far; /**< Depth buffer range */
239 if (ctx->ViewportArray[idx].Near == nearval &&
243 ctx->ViewportArray[idx].Near = CLAMP(nearval, 0.0, 1.0);
262 * the near clip plane
308 * GLclampd near and far clip-plane values
329 set_depth_range_no_notify(ctx, i + first, p[i].Near, p[i].Far);
363 * the near clip plane
412 ctx->ViewportArray[i].Near = 0.0;
483 double n = ctx->ViewportArray[i].Near;
  /external/llvm/lib/ExecutionEngine/
SectionMemoryManager.cpp 84 // FIXME: Initialize the Near member for each memory group to avoid
88 &MemGroup.Near,
98 MemGroup.Near = MB;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h 157 a[MAT_SZ] = fb->_DepthMaxF * (vp->Far - vp->Near) / 2;
174 a[2] = fb->_DepthMaxF * (vp->Far + vp->Near) / 2;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 58 ccv[i].min_depth = MIN2(ctx->ViewportArray[i].Near,
60 ccv[i].max_depth = MAX2(ctx->ViewportArray[i].Near,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 163 NearC = 0x00, // near right to left push, caller pops stack
165 NearPascal = 0x02, // near left to right push, callee pops stack
167 NearFast = 0x04, // near left to right push with regs, callee pops stack
169 NearStdCall = 0x07, // near standard call
171 NearSysCall = 0x09, // near sys call
187 NearVector = 0x18 // near left to right push with regs, callee pops stack
280 Near = 0x0,
371 Near = 0x05,

Completed in 384 milliseconds

1 2 3