Searched defs:smallest (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_set_test.cc25 void Add(const char* smallest, const char* largest, argument
30 f->smallest = InternalKey(smallest, smallest_seq, kTypeValue);
41 bool Overlaps(const char* smallest, const char* largest) { argument
43 Slice s(smallest != NULL ? smallest : "");
46 (smallest != NULL ? &s : NULL),
H A Dversion_edit.h22 InternalKey smallest; // Smallest internal key served by table member in struct:leveldb::FileMetaData
61 // REQUIRES: "smallest" and "largest" are smallest and largest keys in file
64 const InternalKey& smallest,
69 f.smallest = smallest;
62 AddFile(int level, uint64_t file, uint64_t file_size, const InternalKey& smallest, const InternalKey& largest) argument
H A Ddb_impl.cc64 InternalKey smallest, largest; member in struct:leveldb::DBImpl::CompactionState::Output
487 const Slice min_user_key = meta.smallest.user_key();
493 meta.smallest, meta.largest);
692 f->smallest, f->largest);
767 out.smallest.Clear();
850 out.number, out.file_size, out.smallest, out.largest);
960 compact->current_output()->smallest.DecodeFrom(key);
H A Ddb_test.cc440 void FillLevels(const std::string& smallest, const std::string& largest) { argument
441 MakeTables(config::kNumLevels, smallest, largest);
584 // one has a smaller "smallest" key.
1300 // Note that files are sorted by smallest key.
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dmerger.cc65 // the smallest child and key() == current_->key(). Otherwise,
156 IteratorWrapper* smallest = NULL; local
160 if (smallest == NULL) {
161 smallest = child;
162 } else if (comparator_->Compare(child->key(), smallest->key()) < 0) {
163 smallest = child;
167 current_ = smallest;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c135 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/chromium_org/third_party/speex/libspeex/
H A Dstereo.c151 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/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c135 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 Dstereo.c151 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/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc407 LevelDBIterator* smallest = 0; local
410 smallest = data_iterator_.get();
413 if (!smallest ||
414 comparator_->Compare(db_iterator_->Key(), smallest->Key()) < 0)
415 smallest = db_iterator_.get();
418 current_ = smallest;
/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SK_ALWAYSBREAK(smallest < 0);
198 SK_ALWAYSBREAK(smallest >= -1);
H A DPathOpsAngleIdeas.cpp53 int smallest = -1; local
65 smallest = idx;
69 REPORTER_ASSERT(reporter, smallest >= 0);
71 return i[1][smallest];
H A DSkpSkGrTest.cpp308 int smallest = SK_MaxS32; local
311 if (smallest > data->fError[index]) {
312 smallest = data->fError[index];
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_pixels.c316 unsigned int smallest; local
322 smallest = ~0;
328 if ( distance < smallest ) {
333 smallest = distance;
/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SK_ALWAYSBREAK(smallest < 0);
198 SK_ALWAYSBREAK(smallest >= -1);
H A DPathOpsAngleIdeas.cpp53 int smallest = -1; local
65 smallest = idx;
69 REPORTER_ASSERT(reporter, smallest >= 0);
71 return i[1][smallest];
H A DSkpSkGrTest.cpp310 int smallest = SK_MaxS32; local
313 if (smallest > data->fError[index]) {
314 smallest = data->fError[index];
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/
H A Dgoobsdiff.c238 /* Recompress buf of size buf_len using bzip2 or gzip. The smallest version is
239 * used. The original uncompressed variant may be the smallest. Returns a
242 * smallest, it is freed. The caller must free any buf after this function
254 char smallest; local
256 smallest = 1;
264 smallest = 2;
283 smallest = 3;
311 smallest = 4;
325 if (smallest != 1) {
329 return smallest;
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_execute.c1372 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/mesa3d/src/mesa/program/
H A Dprog_execute.c1372 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/skia/src/core/
H A DSkPath.cpp2306 SkScalar smallest = SkTMin(fCurrPt.fX, SkTMin(fCurrPt.fY, SkTMin(fLastPt.fX, fLastPt.fY))); local
2308 largest = SkTMax(largest, -smallest);
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp2173 SkScalar smallest = SkTMin(curPt.fX, SkTMin(curPt.fY, SkTMin(lastPt.fX, lastPt.fY))); local
2175 largest = SkTMax(largest, -smallest);
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp5256 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...]

Completed in 763 milliseconds