HomeSort by relevance Sort by last modified time
    Searched defs:One (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/swiftshader/third_party/LLVM/unittests/ADT/
APIntTest.cpp 21 APInt One = APInt::getNullValue(65) + 1;
22 APInt Shl = One.shl(0);
96 APInt one(128, 1, true);
97 EXPECT_EQ(127u, one.countLeadingZeros());
98 EXPECT_EQ(0u, one.countLeadingOnes());
99 EXPECT_EQ(1u, one.getActiveBits());
100 EXPECT_EQ(0u, one.countTrailingZeros());
101 EXPECT_EQ(1u, one.countTrailingOnes());
102 EXPECT_EQ(1u, one.countPopulation());
103 EXPECT_EQ(1, one.getSExtValue())
    [all...]
  /external/clang/test/Parser/
cxx-concept-declaration.cpp 19 constexpr int One = 1;
22 static concept decltype(!0) C5 { bool(One) };
  /frameworks/base/tests/FeatureSplit/feature1/src/com/android/test/split/feature/one/
One.java 16 package com.android.test.split.feature.one;
22 public class One extends Activity {
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_cxx03.pass.cpp 35 struct One
39 explicit One(int v) : value(v) {++count;}
40 One(One const & o) : value(o.value) {++count;}
41 ~One() {--count;}
44 int One::count = 0;
80 std::shared_ptr<One> p = std::allocate_shared<One>(Alloc(), i);
81 assert(One::count == 1);
84 assert(One::count == 0)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_cxx03.pass.cpp 35 struct One
39 explicit One(int v) : value(v) {++count;}
40 One(One const & o) : value(o.value) {++count;}
41 ~One() {--count;}
44 int One::count = 0;
80 std::shared_ptr<One> p = std::allocate_shared<One>(Alloc(), i);
81 assert(One::count == 1);
84 assert(One::count == 0)
    [all...]
  /external/clang/test/Index/
comment-c-decls.c 84 One,
format-comment-cdecls.c 79 One,
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 87 Value *One = builder.getInt32(1);
95 Value *Add = builder.CreateAdd(One, ArgX);
  /external/llvm/unittests/IR/
PatternMatch.cpp 51 // One = (1 + 2) + 42
52 // Two = One + 42
54 Value *One = IRB.CreateAdd(IRB.CreateAdd(IRB.getInt32(1), IRB.getInt32(2)),
56 Value *Two = IRB.CreateAdd(One, IRB.getInt32(42));
61 EXPECT_TRUE(m_OneUse(m_Value(V)).match(One));
62 EXPECT_EQ(One, V);
ConstantRangeTest.cpp 23 static ConstantRange One;
30 ConstantRange ConstantRangeTest::One(APInt(16, 0xa));
55 EXPECT_FALSE(One.isFullSet());
56 EXPECT_FALSE(One.isEmptySet());
57 EXPECT_FALSE(One.isWrappedSet());
58 EXPECT_FALSE(One.contains(APInt(16, 0x0)));
59 EXPECT_FALSE(One.contains(APInt(16, 0x9)));
60 EXPECT_TRUE(One.contains(APInt(16, 0xa)));
61 EXPECT_FALSE(One.contains(APInt(16, 0xaa9)));
62 EXPECT_FALSE(One.contains(APInt(16, 0xaaa)))
    [all...]
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
HowToUseJIT.cpp 78 Value *One = builder.getInt32(1);
86 Value *Add = builder.CreateAdd(One, ArgX);
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
ConstantsTest.cpp 20 Constant* One = ConstantInt::get(Int1, 1, true);
28 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
52 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
    [all...]
InstructionsTest.cpp 30 Constant* One = ConstantInt::get(Int1, 1, true);
31 const ReturnInst* r1 = ReturnInst::Create(C, One);
35 EXPECT_EQ(One, *b);
36 EXPECT_EQ(One, r1->getOperand(0));
68 Constant* One = ConstantInt::get(Int1, 1, true);
71 BranchInst* b1 = BranchInst::Create(bb0, bb1, One);
84 EXPECT_EQ(One, *b);
85 EXPECT_EQ(One, b1->getOperand(0));
86 EXPECT_EQ(One, b1->getCondition());
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 14 // consisting of one function as follow:
64 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
81 ReturnInst::Create(Context, One, RetBB);
84 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
  /external/spirv-llvm/lib/SPIRV/
SPIRVLowerBool.cpp 90 auto One = getScalarOrVectorConstantInt(Ty, 1, false);
91 auto Sel = SelectInst::Create(Op, One, Zero, "", &I);
100 auto One = getScalarOrVectorConstantInt(Ty, ~0, false);
101 auto Sel = SelectInst::Create(Op, One, Zero, "", &I);
  /external/swiftshader/third_party/LLVM/examples/Fibonacci/
fibonacci.cpp 14 // consisting of one function as follow:
51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
68 ReturnInst::Create(Context, One, RetBB);
71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
  /external/clang/test/Sema/
missing-field-initializers.c 25 struct One { int a; int b; };
30 struct One one; member in union:Three::__anon15509
36 { .one = { 1, 2 } }
43 { { .one = { 1, 2 } } },
44 { { .one = { 1 } } }, // expected-warning {{missing field 'b' initializer}}
warn-outof-range-assign-enum.c 6 One,
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
assign_value.pass.cpp 242 enum MyEnum { Zero, One, Two, Three, FortyTwo = 42 };
  /external/swiftshader/third_party/LLVM/unittests/Support/
ConstantRangeTest.cpp 23 static ConstantRange One;
30 ConstantRange ConstantRangeTest::One(APInt(16, 0xa));
55 EXPECT_FALSE(One.isFullSet());
56 EXPECT_FALSE(One.isEmptySet());
57 EXPECT_FALSE(One.isWrappedSet());
58 EXPECT_FALSE(One.contains(APInt(16, 0x0)));
59 EXPECT_FALSE(One.contains(APInt(16, 0x9)));
60 EXPECT_TRUE(One.contains(APInt(16, 0xa)));
61 EXPECT_FALSE(One.contains(APInt(16, 0xaa9)));
62 EXPECT_FALSE(One.contains(APInt(16, 0xaaa)))
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
runtime_test.go 106 // We might get unlucky and the OS might have mapped one of these
109 // addresses. Even so, we might have to remove one or two on different
292 var One = []int64{1}
305 x = append(x, One...)
  /prebuilts/go/linux-x86/src/runtime/
runtime_test.go 106 // We might get unlucky and the OS might have mapped one of these
109 // addresses. Even so, we might have to remove one or two on different
292 var One = []int64{1}
305 x = append(x, One...)
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
StripSymbols.cpp 339 char One = '\1';
340 if (LinkageName.startswith(StringRef(&One, 1)))
  /external/boringssl/mac-x86_64/crypto/ec/
p256-x86_64-asm.S 10 L$One:
519 movdqa L$One(%rip),%xmm0
579 movdqa L$One(%rip),%xmm8
  /external/clang/include/clang/AST/
CharUnits.h 30 /// char' occupies exactly one byte, so 'character unit' and 'byte' refer to
57 /// One - Construct a CharUnits quantity of one.
58 static CharUnits One() {
118 /// isOne - Test whether the quantity equals one.

Completed in 1880 milliseconds

1 2 3 4 5