HomeSort by relevance Sort by last modified time
    Searched full:minsize (Results 26 - 50 of 374) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/CodeGen/ARM/
thumb-litpool.ll 8 define void @foo() minsize {
fast-isel-shift-materialize.ll 16 ; Function Attrs: minsize
25 attributes #0 = { minsize }
ifcvt-dead-def.ll 21 ; Function Attrs: minsize nounwind optsize ssp
50 ; Function Attrs: minsize optsize
53 attributes #0 = { minsize nounwind optsize }
54 attributes #1 = { minsize optsize }
55 attributes #2 = { minsize nounwind optsize }
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 {
space-directive.ll 3 define i32 @test_space() minsize {
fast-isel-remat-same-constant.ll 21 ; Function Attrs: minsize
29 attributes #1 = { 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;
  /external/llvm/test/CodeGen/X86/
fixup-lea.ll 3 define void @foo(i32 inreg %dns) minsize {
20 define void @bar(i32 inreg %dns) minsize {
materialize.ll 33 define i32 @one32_minsize() minsize {
53 define i64 @one64_minsize() minsize {
80 define i32 @minus_one32_minsize() minsize {
111 define i32 @minus_five32() minsize {
121 define i64 @minus_five64() minsize {
  /external/opencv3/modules/objdetect/perf/opencl/
perf_cascades.cpp 30 Size minSize(min_size, min_size);
53 cc.detectMultiScale(uimg, faces, 1.1, 3, 0, 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/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/pdfium/xfa/src/fxbarcode/datamatrix/
BC_EncoderContext.h 20 void setSizeConstraints(CBC_Dimension* minSize, CBC_Dimension* maxSize);
  /system/update_engine/
fake_p2p_manager_configuration.h 67 base::ReplaceSubstringsAfterOffset(&arg, 0, "{minsize}",
86 // --minimum-size={minsize}" when attempting to look up a file using
89 // The passed |command_format| argument can have "{file_id}" and "{minsize}"
109 "p2p-client", "--get-url={file_id}", "--minimum-size={minsize}"};
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 71 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize)
87 if (*p == opt && opt_len >= minsize)
96 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize)
101 if ((ret = option_find1(&mess->options[0], ((unsigned char *)mess) + size, opt_type, minsize)))
110 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize)))
115 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize)))
  /external/skia/src/core/
SkChunkAlloc.cpp 58 SkChunkAlloc::SkChunkAlloc(size_t minSize) {
59 if (minSize < MIN_CHUNKALLOC_BLOCK_SIZE) {
60 minSize = MIN_CHUNKALLOC_BLOCK_SIZE;
64 fMinSize = minSize;
79 fChunkSize = fMinSize; // reset to our initial minSize
112 fChunkSize = fMinSize; // reset to our initial minSize
  /external/opencv3/modules/features2d/src/
keypoint.cpp 121 SizePredicate( float _minSize, float _maxSize ) : minSize(_minSize), maxSize(_maxSize)
127 return (size < minSize) || (size > maxSize);
130 float minSize, maxSize;
133 void KeyPointsFilter::runByKeypointSize( std::vector<KeyPoint>& keypoints, float minSize, float maxSize )
135 CV_Assert( minSize >= 0 );
137 CV_Assert( minSize <= maxSize );
139 keypoints.erase( std::remove_if(keypoints.begin(), keypoints.end(), SizePredicate(minSize, maxSize)),
  /libcore/ojluni/src/main/java/sun/security/util/
DisabledAlgorithmConstraints.java 401 private int minSize; // the minimal available key size
408 this.minSize = 0;
413 this.minSize = length;
417 this.minSize = length;
421 this.minSize = length + 1;
425 this.minSize = 0;
429 this.minSize = 0;
434 this.minSize = Integer.MAX_VALUE;
446 return ((size < minSize) || (size > maxSize) ||
  /ndk/sources/host-tools/make-3.81/
strcache.c 186 int totsize = 0, avgsize, maxsize = 0, minsize = bufsize; local
200 minsize = (sz < minsize ? sz : minsize);
213 prefix, totsize, maxsize, minsize, avgsize);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 64 void *SocketStream::allocBuffer(size_t minSize)
66 size_t allocSize = (m_bufsize < minSize ? minSize : m_bufsize);

Completed in 922 milliseconds

12 3 4 5 6 7 8 91011>>