/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | Delaunay.cpp | 77 int low, high; in build() local 79 low = lo; in build() 82 if ( low < (high-2) ) { in build() 84 minx = sp[low]; in build() 87 spsorty( sp, low, high); in build() 91 split = low - 1 + (int) in build() 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); in build() 93 build( low, split, &ldo, &ldi, lowrows ); in build() 105 else if (low >= (high - 1)) { // two or one points in build() 106 a = makeEdge(sp[low], sp[high]); in build() [all …]
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
D | Delaunay.cpp | 77 int low, high; in build() local 79 low = lo; in build() 82 if ( low < (high-2) ) { in build() 84 minx = sp[low]; in build() 87 spsorty( sp, low, high); in build() 91 split = low - 1 + (int) in build() 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); in build() 93 build( low, split, &ldo, &ldi, lowrows ); in build() 105 else if (low >= (high - 1)) { // two or one points in build() 106 a = makeEdge(sp[low], sp[high]); in build() [all …]
|
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/ |
D | AlertServiceTest.java | 936 ArrayList<NotificationInfo> low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits() local 937 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits() 940 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits() 945 low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits() 946 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits() 949 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits() 955 low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits() 956 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits() 959 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits() 966 ArrayList<NotificationInfo> low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_tooManyHighPriority() local [all …]
|
/packages/apps/Email/src/org/apache/commons/io/ |
D | EndianUtils.java | 185 long low = ( ( ( data[ offset + 0 ] & 0xff ) << 0 ) + in readSwappedUnsignedInteger() local 191 return (high << 24) + (0xffffffffL & low); in readSwappedUnsignedInteger() 220 long low = in readSwappedLong() local 230 return (high << 32) + (0xffffffffL & low); in readSwappedLong() 374 long low = ( ( ( value1 & 0xff ) << 0 ) + in readSwappedUnsignedInteger() local 380 return (high << 24) + (0xffffffffL & low); in readSwappedUnsignedInteger()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | LongSparseArray.java | 338 int high = start + len, low = start - 1, guess; in binarySearch() local 340 while (high - low > 1) { in binarySearch() 341 guess = (high + low) / 2; in binarySearch() 344 low = guess; in binarySearch()
|
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
D | QuotedPrintableInputStream.java | 183 byte low = asciiCharToNumericValue(b); in fillBuffer() 185 byteq.enqueue((byte)((msd << 4) | low)); in fillBuffer()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMath.java | 25 public static float clamp(float i, float low, float high) { in clamp() argument 26 return Math.max(Math.min(i, high), low); in clamp()
|
D | ImageCrop.java | 715 int low = (mout << times) & mask; in bitCycleLeft() local 717 ret |= low; in bitCycleLeft()
|
/packages/experimental/RpcPerformance/ |
D | README | 3 A small test utility to run certain low-level microbenchmarks
|
/packages/inputmethods/OpenWnn/ |
D | README.txt | 36 Index 2: English dictionary for normal prediction (low priority) 42 Index 1: Japanese dictionary for normal prediction (low priority)
|
/packages/apps/Camera/src/com/android/camera/ |
D | CameraSettings.java | 533 CamcorderProfile low = CamcorderProfile.get( in getSupportedVideoQuality() local 536 low.videoFrameHeight * low.videoFrameWidth) { in getSupportedVideoQuality()
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
D | MediaItemView.java | 536 private static int clamp(int v, int low, int high) { in clamp() argument 537 return Math.min(Math.max(v, low), high); in clamp()
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
D | PinyinIME.java | 709 char low = (char) (unicode & 0x0000ffff); in tryInputRawUnicode() local 711 commitResultText(String.valueOf(low)); in tryInputRawUnicode()
|