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

1 2 3 4 5 6

  /external/swiftshader/third_party/LLVM/unittests/Support/
ConstantRangeTest.cpp 21 static ConstantRange Full;
28 ConstantRange ConstantRangeTest::Full(16);
35 EXPECT_TRUE(Full.isFullSet());
36 EXPECT_FALSE(Full.isEmptySet());
37 EXPECT_TRUE(Full.inverse().isEmptySet());
38 EXPECT_FALSE(Full.isWrappedSet());
39 EXPECT_TRUE(Full.contains(APInt(16, 0x0)));
40 EXPECT_TRUE(Full.contains(APInt(16, 0x9)));
41 EXPECT_TRUE(Full.contains(APInt(16, 0xa)));
42 EXPECT_TRUE(Full.contains(APInt(16, 0xaa9)))
    [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 21 static ConstantRange Full;
28 ConstantRange ConstantRangeTest::Full(16);
35 EXPECT_TRUE(Full.isFullSet());
36 EXPECT_FALSE(Full.isEmptySet());
37 EXPECT_TRUE(Full.inverse().isEmptySet());
38 EXPECT_FALSE(Full.isWrappedSet());
39 EXPECT_TRUE(Full.contains(APInt(16, 0x0)));
40 EXPECT_TRUE(Full.contains(APInt(16, 0x9)));
41 EXPECT_TRUE(Full.contains(APInt(16, 0xa)));
42 EXPECT_TRUE(Full.contains(APInt(16, 0xaa9)))
    [all...]
  /system/keymaster/
keymaster_configuration_test.cpp 35 TEST(VersionParsingTest, Full) {
58 TEST(PatchLevelParsingTest, Full) {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CallingConvLower.cpp 76 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
94 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this))
108 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) {
126 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
145 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
162 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this)) {
175 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this)) {
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 77 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
95 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this))
109 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) {
127 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
145 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
162 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this)) {
174 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this)) {
208 if (Fn(0, VT, VT, CCValAssign::Full, Flags, *this)) {
  /external/autotest/site_utils/admin/apache/
apache2.conf 207 # Header. The default is 'Full' which sends information about the OS-Type
209 # Set to one of: Full | OS | Minor | Minimal | Major | Prod
210 # where Full conveys the most information, and Prod the least.
212 ServerTokens Full
  /external/llvm/lib/Target/AArch64/
AArch64CallLowering.cpp 73 AssignFn(i, ValVT, ValVT, CCValAssign::Full, ISD::ArgFlagsTy(), CCInfo);
90 case CCValAssign::Full:
  /external/icu/icu4j/perf-tests/
Dataset.pm 27 my $stats = Statistics::Descriptive::Full->new();
  /prebuilts/go/darwin-x86/src/crypto/md5/
gen.go 10 // go run gen.go [-full] -output md5block.go
12 // The -full flag causes the generated code to do a full
59 Full bool
86 flag.BoolVar(&data.Full, "full", false, "complete unrolling")
183 // Generate with: go run gen.go{{if .Full}} -full{{end}} -output md5block.go
192 {{if not .Full}}
248 {{if .Full}}
    [all...]
  /prebuilts/go/linux-x86/src/crypto/md5/
gen.go 10 // go run gen.go [-full] -output md5block.go
12 // The -full flag causes the generated code to do a full
59 Full bool
86 flag.BoolVar(&data.Full, "full", false, "complete unrolling")
183 // Generate with: go run gen.go{{if .Full}} -full{{end}} -output md5block.go
192 {{if not .Full}}
248 {{if .Full}}
    [all...]
  /external/clang/lib/CodeGen/
CGLoopInfo.cpp 75 // Setting unroll.full or unroll.disable
80 else if (Attrs.UnrollEnable == LoopAttributes::Full)
81 Name = "llvm.loop.unroll.full";
150 // 0 - full unroll (no argument).
156 State = LoopHintAttr::Full;
231 case LoopHintAttr::Full:
234 setUnrollState(LoopAttributes::Full);
242 llvm_unreachable("Options cannot be used with 'full' hint.");
CGLoopInfo.h 45 enum LVEnableState { Unspecified, Enable, Disable, Full };
50 /// \brief Value for llvm.loop.unroll.* metadata (enable, disable, or full).
  /frameworks/base/libs/hwui/
Caches.h 83 Full
102 * be called after a flush(FlushMode::Full).
BakedOpState.cpp 92 clipSideFlags = OpClipSideFlags::Full;
100 , clipSideFlags(OpClipSideFlags::Full)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/gdb/linux-x86/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /external/autotest/site_utils/
metadata_reporter.py 46 If the queue is full, an error will be logged for the first time the queue
47 becomes full. The call does not wait or raise Queue.Full exception, so
58 except Queue.Full:
61 logging.error('Metadata queue is full, cannot report data. '
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 30 my $stats = Statistics::Descriptive::Full->new();
  /external/icu/icu4j/perf-tests/perldriver/
Dataset.pm 28 my $stats = Statistics::Descriptive::Full->new();
  /external/llvm/include/llvm/Target/
TargetOptions.h 49 Full // Use one table per unique function type
  /frameworks/base/libs/hwui/utils/
Color.h 88 Full,
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
queues.py 45 from Queue import Empty, Full
102 raise Full
148 def full(self): member in class:Queue
312 raise Full

Completed in 1073 milliseconds

1 2 3 4 5 6