Searched refs:low (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp77 int low, high; local
79 low = lo;
82 if ( low < (high-2) ) {
84 minx = sp[low];
87 spsorty( sp, low, high);
91 split = low - 1 + (int)
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows)));
93 build( low, split, &ldo, &ldi, lowrows );
105 else if (low >= (high - 1)) { // two or one points
106 a = makeEdge(sp[low], s
354 spsortx(SitePointer *sp_in, int low, int high) argument
360 spsorty(SitePointer *sp_in, int low, int high ) argument
[all...]
/packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
H A DDelaunay.cpp77 int low, high; local
79 low = lo;
82 if ( low < (high-2) ) {
84 minx = sp[low];
87 spsorty( sp, low, high);
91 split = low - 1 + (int)
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows)));
93 build( low, split, &ldo, &ldi, lowrows );
105 else if (low >= (high - 1)) { // two or one points
106 a = makeEdge(sp[low], s
354 spsortx(SitePointer *sp_in, int low, int high) argument
360 spsorty(SitePointer *sp_in, int low, int high ) argument
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp77 int low, high; local
79 low = lo;
82 if ( low < (high-2) ) {
84 minx = sp[low];
87 spsorty( sp, low, high);
91 split = low - 1 + (int)
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows)));
93 build( low, split, &ldo, &ldi, lowrows );
105 else if (low >= (high - 1)) { // two or one points
106 a = makeEdge(sp[low], s
354 spsortx(SitePointer *sp_in, int low, int high) argument
360 spsorty(SitePointer *sp_in, int low, int high ) argument
[all...]
/packages/apps/Email/src/org/apache/commons/io/
H A DEndianUtils.java29 * the low-order byte is stored in memory at the lowest address, and
185 long low = ( ( ( data[ offset + 0 ] & 0xff ) << 0 ) +
191 return (high << 24) + (0xffffffffL & low);
220 long low =
230 return (high << 32) + (0xffffffffL & low);
374 long low = ( ( ( value1 & 0xff ) << 0 ) +
380 return (high << 24) + (0xffffffffL & low);
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java496 // to the low priority bucket.
827 // Both events in the past: the later one should be chosen (in the low priority bucket).
888 // Both events in the past: the later one should be chosen (in the low priority bucket).
911 ArrayList<NotificationInfo> low = new ArrayList<NotificationInfo>();
912 AlertService.redistributeBuckets(high, medium, low, maxNotifications);
915 assertEquals(0, low.size());
920 low = new ArrayList<NotificationInfo>();
921 AlertService.redistributeBuckets(high, medium, low, maxNotifications);
924 assertEquals(0, low.size());
930 low
[all...]
/packages/apps/Email/src/org/apache/james/mime4j/decoder/
H A DQuotedPrintableInputStream.java183 byte low = asciiCharToNumericValue(b);
185 byteq.enqueue((byte)((msd << 4) | low));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DGeometryMath.java25 public static float clamp(float i, float low, float high) { argument
26 return Math.max(Math.min(i, high), low);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropView.java251 int low = (mout << times) & mask;
253 ret |= low;
/packages/apps/Camera/src/com/android/camera/
H A DCameraSettings.java538 CamcorderProfile low = CamcorderProfile.get(
541 low.videoFrameHeight * low.videoFrameWidth) {
/packages/apps/Gallery2/src/com/android/camera/
H A DCameraSettings.java544 CamcorderProfile low = CamcorderProfile.get(
547 low.videoFrameHeight * low.videoFrameWidth) {
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DPinyinIME.java709 char low = (char) (unicode & 0x0000ffff);
711 commitResultText(String.valueOf(low));
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DMediaItemView.java534 * Clamps the input value v to the range [low, high].
536 private static int clamp(int v, int low, int high) { argument
537 return Math.min(Math.max(v, low), high);

Completed in 581 milliseconds