Home
last modified time | relevance | path

Searched refs:One (Results 1 – 25 of 557) sorted by relevance

12345678910>>...23

/external/llvm/unittests/IR/
DConstantRangeTest.cpp23 static ConstantRange One; member in __anon1f42c6b40111::ConstantRangeTest
30 ConstantRange ConstantRangeTest::One(APInt(16, 0xa)); member in __anon1f42c6b40111::ConstantRangeTest
55 EXPECT_FALSE(One.isFullSet()); in TEST_F()
56 EXPECT_FALSE(One.isEmptySet()); in TEST_F()
57 EXPECT_FALSE(One.isWrappedSet()); in TEST_F()
58 EXPECT_FALSE(One.contains(APInt(16, 0x0))); in TEST_F()
59 EXPECT_FALSE(One.contains(APInt(16, 0x9))); in TEST_F()
60 EXPECT_TRUE(One.contains(APInt(16, 0xa))); in TEST_F()
61 EXPECT_FALSE(One.contains(APInt(16, 0xaa9))); in TEST_F()
62 EXPECT_FALSE(One.contains(APInt(16, 0xaaa))); in TEST_F()
[all …]
DConstantsTest.cpp26 Constant* One = ConstantInt::get(Int1, 1, true); in TEST() local
34 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One)); in TEST()
38 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One)); in TEST()
46 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); in TEST()
50 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); in TEST()
54 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One)); in TEST()
58 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One)); in TEST()
62 EXPECT_EQ(One, ConstantExpr::getShl(One, Zero)); in TEST()
66 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One)); in TEST()
70 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One)); in TEST()
[all …]
/external/llvm/include/llvm/Target/
DTargetCallingConv.h58 static const uint64_t One = 1ULL; ///< 1 of this type, for shifts member
65 void setZExt() { Flags |= One << ZExtOffs; } in setZExt()
68 void setSExt() { Flags |= One << SExtOffs; } in setSExt()
71 void setInReg() { Flags |= One << InRegOffs; } in setInReg()
74 void setSRet() { Flags |= One << SRetOffs; } in setSRet()
77 void setByVal() { Flags |= One << ByValOffs; } in setByVal()
80 void setInAlloca() { Flags |= One << InAllocaOffs; } in setInAlloca()
83 void setNest() { Flags |= One << NestOffs; } in setNest()
86 void setReturned() { Flags |= One << ReturnedOffs; } in setReturned()
89 void setInConsecutiveRegs() { Flags |= One << InConsecutiveRegsOffs; } in setInConsecutiveRegs()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Dallocate_shared_no_variadics.pass.cpp35 struct One struct
39 explicit One(int v) : value(v) {++count;} in One() argument
40 One(One const & o) : value(o.value) {++count;} in One() argument
41 ~One() {--count;} in ~One() argument
44 int One::count = 0;
80 std::shared_ptr<One> p = std::allocate_shared<One>(Alloc(), i); in test()
81 assert(One::count == 1); in test()
84 assert(One::count == 0); in test()
/external/llvm/unittests/CodeGen/
DDIEHashTest.cpp51 DIEInteger One(1); in TEST_F() local
52 Unnamed.addValue(Alloc, dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, One); in TEST_F()
55 Unnamed.addValue(Alloc, dwarf::DW_AT_decl_file, dwarf::DW_FORM_data1, One); in TEST_F()
56 Unnamed.addValue(Alloc, dwarf::DW_AT_decl_line, dwarf::DW_FORM_data1, One); in TEST_F()
66 DIEInteger One(1); in TEST_F() local
69 Foo.addValue(Alloc, dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, One); in TEST_F()
82 DIEInteger One(1); in TEST_F() local
87 One); in TEST_F()
93 Foo->addValue(Alloc, dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, One); in TEST_F()
178 DIEInteger One(1); in TEST_F() local
[all …]
/external/mesa3d/src/gallium/docs/source/cso/
Ddsa.rst26 The depth test function. One of PIPE_FUNC.
36 The stencil test function. One of PIPE_FUNC.
44 The operation to carry out if the stencil test fails. One of
48 fails. One of PIPE_STENCIL_OP.
51 One of PIPE_STENCIL_OP.
59 The alpha test function. One of PIPE_FUNC.
Dblend.rst82 The logicop to use. One of ``PIPE_LOGICOP``.
100 The blend function to use for rgb channels. One of PIPE_BLEND.
102 The blend source factor to use for rgb channels. One of PIPE_BLENDFACTOR.
104 The blend destination factor to use for rgb channels. One of PIPE_BLENDFACTOR.
106 The blend function to use for the alpha channel. One of PIPE_BLEND.
108 The blend source factor to use for the alpha channel. One of PIPE_BLENDFACTOR.
110 The blend destination factor to use for alpha channel. One of PIPE_BLENDFACTOR.
Dsampler.rst16 How to wrap the S coordinate. One of PIPE_TEX_WRAP_*.
18 How to wrap the T coordinate. One of PIPE_TEX_WRAP_*.
20 How to wrap the R coordinate. One of PIPE_TEX_WRAP_*.
48 The image filter to use when minifying texels. One of PIPE_TEX_FILTER_*.
50 The image filter to use when magnifying texels. One of PIPE_TEX_FILTER_*.
54 * ``PIPE_TEX_FILTER_NEAREST``: One texel is fetched from the texture image
61 The filter to use when minifying mipmapped textures. One of
82 The inequality operator used when compare_mode=1. One of PIPE_FUNC_x.
/external/clang/test/SemaObjC/
Dobjc-cstyle-args-in-methods.m16 [foo test:@"One", @"Two"];
17 [foo bad:@"One", @"Two"]; // expected-error {{too few arguments to method call}}
18 [foo bad:@"One", @"Two", 3.14];
19 [foo bad:@"One", @"Two", 3.14, @"Two"]; // expected-error {{too many arguments to method call}}
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
Dmodule.map2 module One { header "A_one.h" }
7 module One { header "B_one.h" }
12 module One {
DC_one.h1 @import A.One;
2 @import B.One;
/external/clang/test/Analysis/
Dinline.cpp33 class One : public A { class
40 One b; in testPathSensitivity()
401 void test(One *object) { in test()
404 clang_analyzer_eval(object->One::getNum() == 1); // expected-warning{{TRUE}} in test()
409 clang_analyzer_eval(object->One::getZero() == 0); // expected-warning{{TRUE}} in test()
/external/clang/test/Modules/
Dwildcard-submodule-exports.cpp5 @import C.One;
21 @import B.One;
/external/markdown/tests/misc/
Dem_strong.txt1 One asterisk: *
3 One underscore: _
Dlists.txt19 * One
27 * One one one one
/external/llvm/examples/ParallelJIT/
DParallelJIT.cpp49 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1); in createAdd1() local
57 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB); in createAdd1()
79 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1); in CreateFibFunction() local
96 ReturnInst::Create(M->getContext(), One, RetBB); in CreateFibFunction()
99 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction()
/external/clang/test/Parser/
Dcxx-concept-declaration.cpp19 constexpr int One = 1; variable
22 static concept decltype(!0) C5 { bool(One) };
/external/clang/test/Sema/
Dmissing-field-initializers.c25 struct One { int a; int b; }; struct
30 struct One one;
/external/llvm/examples/Fibonacci/
Dfibonacci.cpp51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); in CreateFibFunction() local
68 ReturnInst::Create(Context, One, RetBB); in CreateFibFunction()
71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction()
/external/v8/test/webkit/
Dcomparison-operators-expected.txt2621 PASS return (0==One); is false
2622 PASS if ((0==One)) return true; return false; is false
2623 PASS var k = 0; while ((0==One)) if (k++) return true; return false; is false
2624 PASS var k = 0; for (; (0==One); ) if (k++) return true; return false; is false
2625 PASS return (0!=One); is true
2626 PASS if ((0!=One)) return true; return false; is true
2627 PASS var k = 0; while ((0!=One)) if (k++) return true; return false; is true
2628 PASS var k = 0; for (; (0!=One); ) if (k++) return true; return false; is true
2629 PASS return (0===One); is false
2630 PASS if ((0===One)) return true; return false; is false
[all …]
/external/skia/resources/
Dslides_content.lua5 One API -- many backends
15 One Team -- many clients
/external/llvm/lib/Target/Hexagon/
DBitTracker.h109 One, // Bit = 1. enumerator
145 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue()
161 : (T == 1 ? Type == One : false); in is()
207 return Type == Zero || Type == One; in num()
210 assert(Type == Zero || Type == One);
211 return Type == One;
/external/llvm/lib/Target/PowerPC/
DPPCRegisterInfo.td30 // GPR - One of the 32 32-bit general-purpose registers
35 // GP8 - One of the 32 64-bit general-purpose registers
42 // SPR - One of the 32-bit special-purpose registers
47 // FPR - One of the 32 64-bit floating-point registers
52 // QFPR - One of the 32 256-bit floating-point vector registers (used for QPX)
59 // VF - One of the 32 64-bit floating-point subregisters of the vector
66 // VR - One of the 32 128-bit vector registers
74 // VSRL - One of the 32 128-bit VSX registers that overlap with the scalar
82 // VSRH - One of the 32 128-bit VSX registers that overlap with the vector
91 // CR - One of the 8 4-bit condition registers
[all …]
/external/markdown/MarkdownTest/Tests_2004/
DOrdered and unordered lists.text64 1. One
79 1. One
/external/markdown/tests/markdown-test/
Dordered-and-unordered-list.txt64 1. One
79 1. One

12345678910>>...23