/external/llvm/test/Feature/ |
minsize_attr.ll | 3 define void @test1() minsize { 8 ; CHECK: attributes #0 = { minsize }
|
/external/clang/test/CodeGen/ |
attr-optnone.c | 9 // RUN: FileCheck %s --check-prefix=MINSIZE < %t 14 // MINSIZE: @test2{{.*}}[[ATTR2:#[0-9]+]] 30 // Check that no 'optsize' or 'minsize' attributes appear. 32 // ABSENT-NOT: minsize 39 // With -Oz, check that 'minsize' appears only on test2. 40 // MINSIZE-NOT: minsize 41 // MINSIZE: attributes [[ATTR2]] = { {{.*}}minsize{{.*}} } 42 // MINSIZE-NOT: minsiz [all...] |
attr-minsize.cpp | 7 // Check that we set the minsize attribute on each function 10 __attribute__((minsize)) 13 // Oz: @{{.*}}test1{{.*}}[[MINSIZE:#[0-9]+]] 19 // Oz: @{{.*}}test2{{.*}}[[MINSIZE]] 28 // Oz: @{{.*}}test3{{.*}}[[MINSIZE]] 35 // Check that the minsize attribute is well propagated through 39 __attribute__((minsize)) 47 // Oz: [[MINSIZE]] 54 // Oz: [[MINSIZE]] 66 // Oz: [[MINSIZE]] [all...] |
/external/clang/test/CodeGenObjC/ |
attr-minsize.m | 8 - (void)test __attribute__((minsize)) { 10 // CHECK: minsize
|
/external/llvm/test/CodeGen/ARM/Windows/ |
global-minsize.ll | 5 ; Function Attrs: minsize 11 attributes #0 = { minsize }
|
/external/clang/test/SemaCXX/ |
attr-optnone.cpp | 15 int bay() __attribute__((minsize)) __attribute__((optnone)); // expected-warning{{'minsize' attribute ignored}} expected-note{{conflicting}} 16 int quy() __attribute__((optnone)) __attribute__((minsize)); // expected-warning{{'minsize' attribute ignored}} expected-note{{conflicting}} 18 __attribute__((minsize)) int bay1(); // expected-warning{{'minsize' attribute ignored}} 22 __attribute__((minsize)) int quy1() { return 1; } // expected-warning{{'minsize' attribute ignored}} 25 __attribute__((minsize)) // expected-warning{{'minsize' attribute ignored} [all...] |
/external/llvm/test/CodeGen/ARM/ |
call-noret-minsize.ll | 5 define void @t1() noreturn minsize nounwind ssp { 16 define void @t2() noreturn minsize nounwind ssp {
|
minsize-litpools.ll | 4 ; CodeGen should be able to set and reset the MinSize subtarget-feature, and 10 define i32 @small_global() minsize {
|
fastisel-thumb-litpool.ll | 7 define i32 @test_thumb_ldrlit() minsize {
|
thumb-litpool.ll | 8 define void @foo() minsize {
|
minsize-imms.ll | 4 define i32 @test_mov() minsize { 11 define i32 @test_mov_mvn() minsize { 24 define i32 @test_mov_lsl() minsize { 37 define i32 @test_movw() minsize {
|
/external/skia/bench/ |
MemoryBench.cpp | 19 ChunkAllocBench(size_t minSize) { 20 fMinSize = minSize; 21 fName.printf("chunkalloc_" SK_SIZE_T_SPECIFIER, minSize);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_bigmem.py | 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will 37 @bigmemtest(minsize=_2G, memuse=2) 46 @bigmemtest(minsize=_2G + 10, memuse=1) 73 @bigmemtest(minsize=_2G, memuse=2) 84 @bigmemtest(minsize=_2G + 2, memuse=3) 96 @bigmemtest(minsize=_2G + 2, memuse=3) 136 @bigmemtest(minsize=_2G, memuse=2) 147 @bigmemtest(minsize=_2G + 10, memuse=2) 159 @bigmemtest(minsize=_2G, memuse=2) 175 @bigmemtest(minsize=_2G, memuse=2 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_bigmem.py | 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will 37 @bigmemtest(minsize=_2G, memuse=2) 46 @bigmemtest(minsize=_2G + 10, memuse=1) 73 @bigmemtest(minsize=_2G, memuse=2) 84 @bigmemtest(minsize=_2G + 2, memuse=3) 96 @bigmemtest(minsize=_2G + 2, memuse=3) 136 @bigmemtest(minsize=_2G, memuse=2) 147 @bigmemtest(minsize=_2G + 10, memuse=2) 159 @bigmemtest(minsize=_2G, memuse=2) 175 @bigmemtest(minsize=_2G, memuse=2 [all...] |
/external/llvm/test/CodeGen/X86/ |
shrink-compare.ll | 5 define void @test1(i32* nocapture %X) nounwind minsize { 22 define void @test2(i32 %X) nounwind minsize { 38 define void @test3(i32 %X) nounwind minsize { 73 define void @test5(i32 %X) nounwind minsize { 97 define void @test2_1(i32 %X) nounwind minsize { 113 define void @test_sext_i8_icmp_1(i8 %x) nounwind minsize { 129 define void @test_sext_i8_icmp_47(i8 %x) nounwind minsize { 145 define void @test_sext_i8_icmp_127(i8 %x) nounwind minsize { 161 define void @test_sext_i8_icmp_neg1(i8 %x) nounwind minsize { 177 define void @test_sext_i8_icmp_neg2(i8 %x) nounwind minsize { [all...] |
/cts/tests/tests/dpi/src/android/dpi/cts/ |
ConfigurationTest.java | 44 double minSize = 2.5d; 47 minSize = 1.0d; 49 assertTrue("Screen diagonal must be at least " + minSize + " inches: " + diagonalInches, 50 diagonalInches >= minSize);
|
/external/lzma/C/ |
Lzma86Enc.c | 60 size_t minSize = 0;
94 if (outSizeProcessed <= minSize || mainResult != SZ_OK)
96 minSize = outSizeProcessed;
103 *destLen = LZMA86_HEADER_SIZE + minSize;
|
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 127 int minSize = Math.max(right - left, bottom - top) + mZoomLength; 129 imageWidth = minSize * imageWidth / imageHeight; 130 imageHeight = minSize; 132 imageHeight = minSize * imageHeight / imageWidth; 133 imageWidth = minSize;
|
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 127 int minSize = Math.max(right - left, bottom - top) + mZoomLength; 129 imageWidth = minSize * imageWidth / imageHeight; 130 imageHeight = minSize; 132 imageHeight = minSize * imageHeight / imageWidth; 133 imageWidth = minSize;
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
AnimatedNotificationDisplayActivity.java | 127 int minSize = Math.max(right - left, bottom - top) + mZoomLength; 129 imageWidth = minSize * imageWidth / imageHeight; 130 imageHeight = minSize; 132 imageHeight = minSize * imageHeight / imageWidth; 133 imageWidth = minSize;
|
/developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
SquareFrameLayout.java | 55 final int minSize = Math.min(getMeasuredWidth(), getMeasuredHeight()); 56 setMeasuredDimension(minSize, minSize);
|
/developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
SquareFrameLayout.java | 55 final int minSize = Math.min(getMeasuredWidth(), getMeasuredHeight()); 56 setMeasuredDimension(minSize, minSize);
|
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/ |
SquareFrameLayout.java | 55 final int minSize = Math.min(getMeasuredWidth(), getMeasuredHeight()); 56 setMeasuredDimension(minSize, minSize);
|
/external/elfutils/src/libdw/ |
libdw_alloc.c | 42 __libdw_allocate (Dwarf *dbg, size_t minsize, size_t align) 46 2 * minsize + offsetof (struct libdw_memblock, mem))); 54 newp->remaining = (uintptr_t) newp + size - (result + minsize);
|
/external/jemalloc/src/ |
base.c | 42 base_chunk_alloc(size_t minsize) 48 assert(minsize != 0); 52 csize = CHUNK_CEILING(minsize + nsize);
|