/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/ |
H A D | GraphAlgo.py | 74 1. D.smallest() returns the value x minimizing D[x]. For this to work correctly, 85 until it is found by smallest() or until the heap is rebuilt. 90 def smallest(self): member in class:_priorityDictionary 92 Find smallest item after removing deleted items from front of heap. 95 raise IndexError("smallest of empty priorityDictionary") 117 x = self.smallest()
|
/external/opencv3/3rdparty/openexr/Imath/ |
H A D | ImathHalfLimits.h | 57 static float smallest() {return HALF_MIN;} function in struct:Imath::limits
|
H A D | ImathLimits.h | 74 // smallest() smallest possible positive value of type T 75 // (for float and double: smallest normalized 78 // epsilon() smallest possible e of type T, for which 121 static T smallest(); 137 static char smallest() {return 1;} function in struct:Imath::limits 148 static signed char smallest() {return 1;} function in struct:Imath::limits 159 static unsigned char smallest() {return 1;} function in struct:Imath::limits 170 static short smallest() {return 1;} function in struct:Imath::limits 181 static unsigned short smallest() {retur function in struct:Imath::limits 192 static int smallest() {return 1;} function in struct:Imath::limits 203 static unsigned int smallest() {return 1;} function in struct:Imath::limits 214 static long smallest() {return 1;} function in struct:Imath::limits 225 static unsigned long smallest() {return 1;} function in struct:Imath::limits 236 static float smallest() {return FLT_MIN;} function in struct:Imath::limits 247 static double smallest() {return DBL_MIN;} function in struct:Imath::limits 258 static long double smallest() {return LDBL_MIN;} function in struct:Imath::limits [all...] |
/external/fec/ |
H A D | peakval_av.c | 15 vector signed short smallest,largest; local 17 smallest = (vector signed short)(0); 26 smallest = vec_min(smallest,x); 34 smallest = vec_min(smallest,x); 44 smallest = vec_min(smallest,x); 48 largest = vec_max(largest,vec_abs(smallest));
|
/external/icu/icu4c/source/i18n/ |
H A D | digitinterval.h | 92 * Sets the least significant inclusive value to smallest. If smallest >= 0 95 void setLeastSignificantInclusive(int32_t smallest) { argument 96 fSmallestInclusive = smallest < 0 ? smallest : 0;
|
/external/opencv3/modules/videostab/src/ |
H A D | fast_marching.cpp | 97 int l, r, smallest; local 102 smallest = idx; 104 if (l < size_ && narrowBand_[l] < narrowBand_[smallest]) smallest = l; 105 if (r < size_ && narrowBand_[r] < narrowBand_[smallest]) smallest = r; 107 if (smallest == idx) 111 std::swap(indexOf(narrowBand_[idx]), indexOf(narrowBand_[smallest])); 112 std::swap(narrowBand_[idx], narrowBand_[smallest]); 113 idx = smallest; [all...] |
/external/libpng/contrib/intel/ |
H A D | filter_sse2_intrinsics.c | 213 __m128i smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); local 216 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, 217 if_then_else(_mm_cmpeq_epi16(smallest, pb), b, 269 __m128i smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); local 272 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, 273 if_then_else(_mm_cmpeq_epi16(smallest, pb), b,
|
/external/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_draw_arrays.c | 135 unsigned smallest = 0; local 141 smallest = i; 144 else if (hwtnl->index_cache[prim][i].gen_nr < smallest) 146 smallest = i; 151 assert (smallest != IDX_CACHE_MAX); 153 pipe_resource_reference( &hwtnl->index_cache[prim][smallest].buffer, 157 debug_printf("%s discard smallest %d/%d\n", __FUNCTION__, 158 smallest, smallest_size); 160 i = smallest;
|
/external/speex/libspeex/ |
H A D | stereo.c | 151 spx_word32_t largest, smallest; local 178 smallest = e_right; 182 smallest = e_left; 189 smallest = VSHR32(smallest, shift); 190 balance = DIV32(largest, ADD32(smallest, 1)); 195 balance=(largest+1.)/(smallest+1.); 216 /*fprintf (stderr, "%d %d %d %d\n", largest, smallest, balance_id, e_ratio);*/
|
/external/lz4/examples/ |
H A D | HCStreaming_ringBuffer.c | 149 size_t smallest = r0; local 150 if (r1<r0) smallest = r1; 151 result += smallest;
|
/external/skia/tests/ |
H A D | PathOpsCubicLineIntersectionIdeas.cpp | 193 double smallest = SkTMin(allRoots[0], allRoots[1]); local 195 smallest = SkTMin(smallest, allRoots[2]); 197 SkASSERT_RELEASE(smallest < 0); 198 SkASSERT_RELEASE(smallest >= -1);
|
H A D | PathOpsAngleIdeas.cpp | 53 int smallest = -1; local 65 smallest = idx; 69 REPORTER_ASSERT(reporter, smallest >= 0); 71 return i[1][smallest];
|
H A D | SkpSkGrTest.cpp | 312 int smallest = SK_MaxS32; local 315 if (smallest > data->fError[index]) { 316 smallest = data->fError[index];
|
/external/tpm2/ |
H A D | Session.c | 34 CONTEXT_SLOT smallest = ((CONTEXT_SLOT) ~0); local 48 // value for smallest. 49 if(((CONTEXT_SLOT) (entry - lowBits)) <= smallest) 51 smallest = (entry - lowBits);
|
/external/mesa3d/src/mesa/program/ |
H A D | prog_execute.c | 1372 const float largest = 1.884467e+19, smallest = 5.42101e-20; local 1391 else if (r < smallest) { 1392 r = smallest; 1399 else if (r > -smallest) { 1400 r = -smallest;
|
/external/lz4/lib/ |
H A D | lz4.c | 839 const BYTE* smallest = (const BYTE*) source; local 841 if ((streamPtr->dictSize>0) && (smallest>dictEnd)) smallest = dictEnd; 842 LZ4_renormDictT(streamPtr, smallest); 901 const BYTE* smallest = dictEnd; local 902 if (smallest > (const BYTE*) source) smallest = (const BYTE*) source; 903 LZ4_renormDictT((LZ4_stream_t_internal*)LZ4_dict, smallest);
|
/external/skia/src/core/ |
H A D | SkPath.cpp | 2314 SkScalar smallest = SkTMin(fCurrPt.fX, SkTMin(fCurrPt.fY, SkTMin(fLastPt.fX, fLastPt.fY))); local 2316 largest = SkTMax(largest, -smallest);
|
/external/zopfli/src/zopflipng/lodepng/ |
H A D | lodepng.cpp | 5256 all five filters and select the filter that produces the smallest sum of absolute values per row. 5284 size_t smallest = 0; local 5320 /*check if this is smallest sum (or if type == 0 it's the first case so always store the values)*/ 5321 if(type == 0 || sum[type] < smallest) 5324 smallest = sum[type]; 5342 float smallest = 0; 5367 /*check if this is smallest sum (or if type == 0 it's the first case so always store the values)*/ 5368 if(type == 0 || sum[type] < smallest) 5371 smallest = sum[type]; 5403 size_t smallest [all...] |
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
/external/libgdx/backends/gdx-backends-gwt/libs/ |
H A D | gwt-dev.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ... |