/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
min_element.pass.cpp | 15 // min_element(Iter first, Iter last); 24 test(Iter first, Iter last) 26 Iter i = std::min_element(first, last); 27 if (first != last) 29 for (Iter j = first; j != last; ++j) 33 assert(i == last);
|
max_element_comp.pass.cpp | 15 // max_element(Iter first, Iter last, Compare comp); 25 test(Iter first, Iter last) 27 Iter i = std::max_element(first, last, std::greater<int>()); 28 if (first != last) 30 for (Iter j = first; j != last; ++j) 34 assert(i == last); 62 void test_eq0(Iter first, Iter last, Pred p) 64 assert(first == std::max_element(first, last, p));
|
min_element_comp.pass.cpp | 15 // min_element(Iter first, Iter last, Compare comp); 25 test(Iter first, Iter last) 27 Iter i = std::min_element(first, last, std::greater<int>()); 28 if (first != last) 30 for (Iter j = first; j != last; ++j) 34 assert(i == last); 62 void test_eq0(Iter first, Iter last, Pred p) 64 assert(first == std::min_element(first, last, p));
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
GLFace.java | 51 int last = mVertexList.size() - 1; local 52 if (last < 2) { 55 GLVertex vertex = mVertexList.get(last); 61 mVertexList.remove(last + 1); 62 vertex = mVertexList.get(last); 77 int last = mVertexList.size() - 1; local 80 GLVertex vn = mVertexList.get(last); 83 for (int i = 1; i < last; i++) {
|
/external/chromium_org/cc/base/ |
scoped_ptr_algorithm.h | 16 ForwardIterator last, 19 for (; first != last; ++first) {
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_type_unittest.cc | 37 // Last value, to check any offset errors. 38 AutofillType last(NAME_BILLING_SUFFIX); 39 EXPECT_EQ(NAME_SUFFIX, last.GetStorableType()); 40 EXPECT_EQ(NAME_BILLING, last.group()); 74 // Last value, to check any offset errors. 75 AutofillType last(HTML_TYPE_CREDIT_CARD_EXP_4_DIGIT_YEAR, HTML_MODE_NONE); 76 EXPECT_EQ(CREDIT_CARD_EXP_4_DIGIT_YEAR, last.GetStorableType()); 77 EXPECT_EQ(CREDIT_CARD, last.group());
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/ |
sunspider-string-fasta.html | 10 var last = 42, A = 3877, C = 29573, M = 139968; 13 last = (last * A + C) % M; 14 return max * last / M; 41 var last = null; 43 if (last) table[c] += table[last]; 44 last = c;
|
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/ |
breakdata.h | 13 "Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement." 15 "Midnight, Central Time, of the last day of the stated month. A"
|
/external/icu/icu4c/source/test/perf/DateFmtPerf/ |
breakdata.h | 13 "Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement." 15 "Midnight, Central Time, of the last day of the stated month. A"
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
sembuf.h | 15 __kernel_time_t sem_otime; /* last semop time */ 17 __kernel_time_t sem_ctime; /* last change time */
|
/external/oprofile/daemon/ |
opd_mangling.c | 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) 109 if (last->kernel) { 110 values.cg_image_name = last->kernel->name; 111 } else if (last->anon) { 113 values.cg_image_name = mangle_anon(last->anon); 114 values.anon_name = last->anon->name; 116 values.cg_image_name = find_cookie(last->cookie); 141 int opd_open_sample_file(odb_t *file, struct sfile *last, 150 mangled = mangle_filename(last, sf, counter, cg); 161 if (sf != last) [all...] |
/external/oprofile/events/i386/arch_perfmon/ |
events.h | 9 "Last level cache demand requests from this core that missed the LLC"}, 11 "Last level cache demand requests from this core"},
|
/external/strace/m4/ |
includedir.m4 | 12 /^End of search list/ { print last; exit } 13 { last = [$]1 }
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
vlc_encode.h | 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
binary_search.hpp | 37 ForwardIter lower_bound(ForwardIter first, ForwardIter last, 42 typename traits::difference_type len = boost::detail::distance(first, last); 62 ForwardIter lower_bound(ForwardIter first, ForwardIter last, 67 typename traits::difference_type len = boost::detail::distance(first, last); 87 ForwardIter upper_bound(ForwardIter first, ForwardIter last, 92 typename traits::difference_type len = boost::detail::distance(first, last); 112 ForwardIter upper_bound(ForwardIter first, ForwardIter last, 117 typename traits::difference_type len = boost::detail::distance(first, last); 138 equal_range(ForwardIter first, ForwardIter last, const Tp& val) 142 typename traits::difference_type len = boost::detail::distance(first, last); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/ |
sembuf.h | 15 __kernel_time_t sem_otime; /* last semop time */ 17 __kernel_time_t sem_ctime; /* last change time */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
sembuf.h | 15 __kernel_time_t sem_otime; /* last semop time */ 17 __kernel_time_t sem_ctime; /* last change time */
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_utilities_indexing.cpp | 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal) 45 s_top=source+last; 47 d_top=dest+last; 62 long last=nr_elements-1; local 76 for(;last-first>2;) 78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]); 79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal); 81 if(first_equal>pos) last=first_equal-1; 95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]) [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_indexing.cpp | 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal) 45 s_top=source+last; 47 d_top=dest+last; 62 long last=nr_elements-1; local 76 for(;last-first>2;) 78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]); 79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal); 81 if(first_equal>pos) last=first_equal-1; 95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]) [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_utilities_indexing.cpp | 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal) 45 s_top=source+last; 47 d_top=dest+last; 62 long last=nr_elements-1; local 76 for(;last-first>2;) 78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]); 79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal); 81 if(first_equal>pos) last=first_equal-1; 95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]) [all...] |
/bionic/libc/upstream-freebsd/lib/libc/string/ |
wcsrchr.c | 35 const wchar_t *last; local 37 last = NULL; 40 last = s; 46 return ((wchar_t *)last);
|
/external/chromium_org/content/test/data/session_history/ |
fragment.html | 10 <a name="c">Last one, I promise.</a>
|
/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/ |
CHROMIUM_depth_texture.txt | 15 Last Modifed Date: June 4, 2012
|
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
string_util.h | 23 size_t last = 0; local 27 std::string tmp(str, last, i - last); 32 last = i + 1;
|
/external/chromium_org/net/websockets/ |
websocket_net_log_params.cc | 18 size_t last = 0; local 25 std::string entry = headers->substr(last, pos - last); 27 last = pos;
|