/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/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
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));
|
/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...] |
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
TestResultLogger.java | 42 Result last = mResults.get(mResults.size()-1); local 45 return (int) ((1000*(last.receivedBytes + first.receivedBytes))/ 46 (last.timeStamp - first.timeStamp+1)); 50 * Optimized to perform best when period is closest to the last 63 Result last = mResults.get(i--); local 64 long firstTimeStamp = last.timeStamp - period; 76 long timeError = period - (last.timeStamp-first.timeStamp); 84 return (int) ((1000*(errorBytes+last.receivedBytes-first.receivedBytes))/period);
|
/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 */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
stat.h | 73 struct timespec st_atim; /* Time of last access. */ 74 struct timespec st_mtim; /* Time of last modification. */ 75 struct timespec st_ctim; /* Time of last status change. */ 80 __time_t st_atime; /* Time of last access. */ 81 unsigned long int st_atimensec; /* Nscecs of last access. */ 82 __time_t st_mtime; /* Time of last modification. */ 83 unsigned long int st_mtimensec; /* Nsecs of last modification. */ 84 __time_t st_ctime; /* Time of last status change. */ 85 unsigned long int st_ctimensec; /* Nsecs of last status change. */ 119 struct timespec st_atim; /* Time of last access. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/ |
sembuf.h | 15 __kernel_time_t sem_otime; /* last semop time */ 17 __kernel_time_t sem_ctime; /* last change time */
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
globsymw1.s | 13 ;# This must be the last line; the point is that the warning symbol 14 ;# construct is last, but is missing the actual symbol warned about.
|
/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/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...] |
/prebuilts/go/darwin-x86/src/strings/ |
search.go | 16 // badCharSkip[b] contains the distance between the last byte of pattern 53 // last is the index of the last character in the pattern. 54 last := len(pattern) - 1 61 // The loop condition is < instead of <= so that the last byte does not 63 // that it is not in the last position. 64 for i := 0; i < last; i++ { 65 f.badCharSkip[pattern[i]] = last - i 71 lastPrefix := last 72 for i := last; i >= 0; i-- [all...] |
/prebuilts/go/linux-x86/src/strings/ |
search.go | 16 // badCharSkip[b] contains the distance between the last byte of pattern 53 // last is the index of the last character in the pattern. 54 last := len(pattern) - 1 61 // The loop condition is < instead of <= so that the last byte does not 63 // that it is not in the last position. 64 for i := 0; i < last; i++ { 65 f.badCharSkip[pattern[i]] = last - i 71 lastPrefix := last 72 for i := last; i >= 0; i-- [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-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/main/ |
atgroup_03.css | 7 @page :last {
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/main/out/ |
atgroup_03.out | 1 @media all and (min-width:500px){@document url(http://www.w3.org/),url-prefix(http://www.w3.org/Style/),domain(mozilla.org),regexp("https:.*"){@page :last{margin:3in}}
|
atgroup_03.out.b | 1 @media all and (min-width:500px){@document url(http://www.w3.org/),url-prefix(http://www.w3.org/Style/),domain(mozilla.org),regexp("https:.*"){@page :last{margin:3in}}
|
/external/clang/test/CodeGen/ |
2005-01-02-VAArgError-ICE.c | 7 __builtin_va_start(args,a); // not the last named arg
|
/external/clang/test/Lexer/ |
eof-file.c | 4 // This file intentionally ends without a \n on the last line. Make sure your
|
eof-include.c | 4 // This file intentionally ends without a \n on the last line. Make sure your
|
/external/clang/test/Modules/Inputs/ |
macros_top.h | 12 // The last definition will be exported from the sub-module.
|
/external/deqp/framework/delibs/decpp/ |
deRandom.hpp | 58 void choose (InputIter first, InputIter last, OutputIter result, int numItems); 61 T choose (InputIter first, InputIter last); 65 T chooseWeighted (InputIter first, InputIter last, WeightIter weight); 68 void shuffle (Iterator first, Iterator last); 103 void Random::choose (InputIter first, InputIter last, OutputIter result, int numItems) 110 for (ndx = 0; first != last; ++first, ++ndx) 126 T Random::choose (InputIter first, InputIter last) 129 DE_ASSERT(first != last); 130 choose(first, last, &val, 1); 135 T Random::chooseWeighted (InputIter first, InputIter last, WeightIter weight [all...] |
/external/e2fsprogs/tests/f_uninit_last_uninit/ |
expect.1 | 0 Last group block bitmap uninitialized. Fix? yes
|
/external/jsoncpp/test/data/ |
test_real_08.expected | 2 // same as UINT_MAX in base 10 and digit less than UINT_MAX's last digit in
|