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

1 2

  /external/llvm/unittests/Support/
BlockFrequencyTest.cpp 65 const uint64_t Big = 387246523487234346LL;
67 BlockFrequency Freq(Big);
70 EXPECT_EQ(Freq.getFrequency(), Big);
72 Freq = BlockFrequency(Big);
74 EXPECT_EQ(Freq.getFrequency(), Big);
  /external/swiftshader/third_party/LLVM/unittests/Support/
BlockFrequencyTest.cpp 41 const uint64_t Big = 387246523487234346LL;
43 BlockFrequency Freq(Big);
46 EXPECT_EQ(Freq.getFrequency(), Big);
  /prebuilts/go/darwin-x86/src/math/
floor_amd64.s 7 #define Big 0x4330000000000000 // 2**52
15 MOVQ $(Big - 1), CX // if |x| >= 2**52-1 or IsNaN(x) or |x| == 0, return x
37 MOVQ $Big, CX // if |x| >= 2**52 or IsNaN(x), return x
63 MOVQ $Big, CX // if |x| >= 2**52 or IsNaN(x), return x
  /prebuilts/go/linux-x86/src/math/
floor_amd64.s 7 #define Big 0x4330000000000000 // 2**52
15 MOVQ $(Big - 1), CX // if |x| >= 2**52-1 or IsNaN(x) or |x| == 0, return x
37 MOVQ $Big, CX // if |x| >= 2**52 or IsNaN(x), return x
63 MOVQ $Big, CX // if |x| >= 2**52 or IsNaN(x), return x
  /external/clang/test/CodeGen/
x86_32-fpcc-struct-return.c 11 typedef struct { int a,b,c,d; } Big;
18 Big returnBig(Big x) { return x; }
mcu-struct-return.c 4 struct Big {
14 struct Big b;
  /external/clang/test/CodeGenCXX/
microsoft-abi-vmemptr-conflicts.cpp 53 struct Big { int big[32]; }; member in struct:sret::Big
55 struct B { virtual Big b(); };
58 virtual Big b();
62 Big b((c->*(&C::b))());
68 // CHECK: call x86_thiscallcc void bitcast (void (%"struct.sret::C"*, ...)* @"\01??_9C@sret@@$BA@AE" to void (%"struct.sret::C"*, %"struct.sret::Big"*)*)(%"struct.sret::C"* %{{.*}}, %"struct.sret::Big"* sret %{{.*}})
77 struct Big {
78 Big();
79 ~Big();
80 int big[32]; member in struct:cdecl_inalloca::Big
    [all...]
microsoft-abi-sret-and-byval.cpp 56 struct Big {
107 Big big_return() { return Big(); }
108 // LINUX-LABEL: define void @_Z10big_returnv(%struct.Big* noalias sret %agg.result)
109 // WIN32: define void @"\01?big_return@@YA?AUBig@@XZ"(%struct.Big* noalias sret %agg.result)
110 // WIN64: define void @"\01?big_return@@YA?AUBig@@XZ"(%struct.Big* noalias sret %agg.result)
215 void big_arg(Big s) {}
216 // LINUX-LABEL: define void @_Z7big_arg3Big(%struct.Big* byval align 4 %s)
217 // WIN32: define void @"\01?big_arg@@YAXUBig@@@Z"(%struct.Big* byval align 4 %s)
218 // WIN64: define void @"\01?big_arg@@YAXUBig@@@Z"(%struct.Big* %s
    [all...]
  /prebuilts/go/darwin-x86/test/interface/
bigdata.go 7 // Test big vs. small, pointer vs. value interface methods.
45 type Big struct { a, b, c, d int64 }
46 func (z Big) M() int64 { return z.a+z.b+z.c+z.d }
55 var big Big = Big{ 10000, 2000, 300, 45 }
59 test("big", big)
60 test("&big", &big)
    [all...]
  /prebuilts/go/linux-x86/test/interface/
bigdata.go 7 // Test big vs. small, pointer vs. value interface methods.
45 type Big struct { a, b, c, d int64 }
46 func (z Big) M() int64 { return z.a+z.b+z.c+z.d }
55 var big Big = Big{ 10000, 2000, 300, 45 }
59 test("big", big)
60 test("&big", &big)
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_bitfields.py 279 class Big(BigEndianStructure):
284 x = Big.from_buffer(b)
  /external/python/cpython3/Lib/ctypes/test/
test_bitfields.py 278 class Big(BigEndianStructure):
283 x = Big.from_buffer(b)
  /external/skia/tests/
ArenaAllocTest.cpp 30 struct Big {
31 Big() {}
  /external/skqp/tests/
ArenaAllocTest.cpp 25 struct Big {
26 Big() {}
  /frameworks/compile/mclinker/include/mcld/
TargetOptions.h 24 enum Endian { Little, Big, Unknown };
52 bool isBigEndian() const { return (Big == m_Endian); }
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
map_test.go 164 type Big struct {
169 k := &Big{}
170 m := make(map[Big]bool)
181 k := &Big{}
182 m := make(map[Big]bool)
192 k := &Big{}
193 m := make(map[Big]bool)
204 k := &Big{}
205 m := make(map[Big]bool)
216 v := &Big{}
    [all...]
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
map_test.go 164 type Big struct {
169 k := &Big{}
170 m := make(map[Big]bool)
181 k := &Big{}
182 m := make(map[Big]bool)
192 k := &Big{}
193 m := make(map[Big]bool)
204 k := &Big{}
205 m := make(map[Big]bool)
216 v := &Big{}
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
EnumMapTest.java 34 Small, Middle, Big {};
90 new EnumMap(Size.Big.getClass());
119 Size.Big, 2));
121 enumSizeMap.get(Size.Big));
216 hashColorMap.put(Size.Big, 3);
268 enumSizeMap.put(Size.Big, null);
270 .containsKey(Size.Big));
326 enumSizeMap.put(Size.Big, null);
339 enumSizeMap.put(Size.Big, null);
365 mockEntry = new MockEntry(Size.Big, null)
    [all...]
  /prebuilts/go/darwin-x86/test/
const1.go 26 Big float64 = 1e300
66 c1 float64 = Big
67 c2 float64 = Big * Big // ERROR "overflow"
68 c3 float64 = float64(Big) * Big // ERROR "overflow"
69 c4 = Big * Big // ERROR "overflow"
70 c5 = Big / 0 // ERROR "division by zero"
85 f(Big) // ERROR "convert|wrong type|cannot
    [all...]
  /prebuilts/go/linux-x86/test/
const1.go 26 Big float64 = 1e300
66 c1 float64 = Big
67 c2 float64 = Big * Big // ERROR "overflow"
68 c3 float64 = float64(Big) * Big // ERROR "overflow"
69 c4 = Big * Big // ERROR "overflow"
70 c5 = Big / 0 // ERROR "division by zero"
85 f(Big) // ERROR "convert|wrong type|cannot
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-printers_test.cc 1039 // Unprintable types are that too big to be printed completely.
1041 struct Big {
1042 Big() { memset(array, 0, sizeof(array)); }
1054 Print(Big()));
    [all...]
  /external/googletest/googletest/test/
gtest-printers_test.cc     [all...]
  /external/llvm/unittests/IR/
ConstantsTest.cpp 217 Constant *Big = ConstantInt::get(Context, APInt{256, uint64_t(-1), true});
292 EXPECT_EQ(Undef16, ConstantExpr::getExtractElement(P6, Big));
298 EXPECT_EQ(UndefV16, ConstantExpr::getInsertElement(P6, Elt, Big));
  /external/v8/testing/gtest/test/
gtest-printers_test.cc     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-printers_test.cc 1058 // Unprintable types are that too big to be printed completely.
1060 struct Big {
1061 Big() { memset(array, 0, sizeof(array)); }
    [all...]

Completed in 2146 milliseconds

1 2