Searched refs:il (Results 1 - 25 of 94) sorted by path

1234

/external/ImageMagick/www/api/
H A Dmorphology.php222 <dd> WARNING: The above was layed out as per http://www.math.tau.ac.il/~turkel/notes/edge_detectors.pdf But rotated 90 degrees so direction is from left rather than the top. I have yet to find any secondary confirmation of the above. The only other source found was actual source code at http://ltswww.epfl.ch/~courstiv/exos_labos/sol3.pdf Neigher paper defineds the kernels in a way that looks locical or correct when taken as a whole. </dd>
/external/blktrace/btt/doc/
H A Dbtt.tex481 xmgrace\footnote{\texttt{http://plasma-gate.weizmann.ac.il/Grace/}
/external/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c51 int bitmapImageRepFromIFF(IB st, const unsigned char *ib, int il) { argument
55 st.end = il;
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist.cpp220 std::initializer_list<int> il; member in struct:haslist1
230 : il{i, 2, 3}
236 std::initializer_list<destroyme1> il; member in struct:haslist2
242 : il{destroyme1(), destroyme1()}
366 std::initializer_list<std::initializer_list<int>> &&il = { { 1, 2, 3 }, { 4, k }, { 5, 6, 7, 8 } }; member in namespace:partly_constant
396 // 'il' reference.
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp60 Foo(std::initializer_list<int> il);
/external/clang/test/PCH/
H A Dimplicitly-deleted.cpp5 move_only il; member in struct:sb
/external/clang/test/SemaCXX/
H A DPR20334-std_initializer_list_diagnosis_assertion.cpp10 template<class E> int f(std::initializer_list<E> il);
H A Dcomplex-overload.cpp51 int *cp3 = promote_or_convert3(1il);
H A Dcxx0x-initializer-stdinitializerlist.cpp58 std::initializer_list<int> il = { 1, 2, 3 }; local
135 std::initializer_list<int> il = {1, 2, 3}; // expected-warning{{at the end of the constructor}} member in struct:haslist1
141 : il{1, 2, 3} // expected-warning{{at the end of the constructor}}
152 std::initializer_list<int> il = {1, 2}; local
153 g({il, {2, 3}});
167 std::initializer_list<const char *> *il = &x; local
H A Dcxx1y-user-defined-literals.cpp26 complex<long double> operator""il(long double);
27 complex<long double> operator""il(unsigned long long);
42 complex<long double> cld1 = 1il, cld2 = 2.il, cld3 = 0047il;
H A Dscope-check.cpp344 std::initializer_list<A> il = { a }; // expected-note {{jump exits scope of lifetime-extended temporary with non-trivial destructor}} local
359 std::initializer_list<B> il = { local
369 std::initializer_list<B> il = { local
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h394 // Rows 0,...,il-1 are decoupled from the rest because m_matT(il,il-1) is zero.
395 // Rows il,...,iu is the part we are working on (the active submatrix).
398 Index il; local
420 // find il, the top row of the active submatrix
421 il = iu-1;
422 while(il > 0 && !subdiagonalEntryIsNeglegible(il-1))
424 --il;
[all...]
H A DRealSchur.h242 void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector);
243 void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace);
297 // Rows 0,...,il-1 are decoupled from the rest because m_matT(il,il-1) is zero.
298 // Rows il,...,iu is the part we are working on (the active window).
310 Index il = findSmallSubdiagEntry(iu); local
313 if (il == iu) // One root found
321 else if (il == iu-1) // Two roots found
336 initFrancisQRStep(il, i
460 initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector) argument
485 performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace) argument
[all...]
/external/eigen/Eigen/src/misc/
H A Dlapacke.h1600 float vu, lapack_int il, lapack_int iu, float abstol,
1607 double vu, lapack_int il, lapack_int iu,
1651 float vu, lapack_int il, lapack_int iu, float abstol,
1659 double vu, lapack_int il, lapack_int iu,
1701 lapack_int lda, float vl, float vu, lapack_int il,
1707 lapack_int lda, double vl, double vu, lapack_int il,
1714 lapack_int lda, float vl, float vu, lapack_int il,
1720 lapack_int lda, double vl, double vu, lapack_int il,
1756 float vu, lapack_int il, lapack_int iu, float abstol,
1763 double vu, lapack_int il, lapack_in
[all...]
/external/eigen/unsupported/test/
H A Dcxx11_meta.cpp162 typedef numeric_list<int, 0, 1, 2, 3, 4, 5> il; typedef
172 VERIFY((is_same<typename take<0, il>::type, numeric_list<int>>::value));
173 VERIFY((is_same<typename take<1, il>::type, numeric_list<int, 0>>::value));
174 VERIFY((is_same<typename take<2, il>::type, numeric_list<int, 0, 1>>::value));
175 VERIFY((is_same<typename take<3, il>::type, numeric_list<int, 0, 1, 2>>::value));
176 VERIFY((is_same<typename take<4, il>::type, numeric_list<int, 0, 1, 2, 3>>::value));
177 VERIFY((is_same<typename take<5, il>::type, numeric_list<int, 0, 1, 2, 3, 4>>::value));
178 VERIFY((is_same<typename take<6, il>::type, numeric_list<int, 0, 1, 2, 3, 4, 5>>::value));
188 VERIFY((is_same<typename skip<0, il>::type, numeric_list<int, 0, 1, 2, 3, 4, 5>>::value));
189 VERIFY((is_same<typename skip<1, il>
205 typedef numeric_list<int, 4, 8, 15, 16, 23, 42> il; typedef
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemAttribute.java109 final IItem il = (IItem) l;
112 return il.getName ().compareTo (ig.getName ());
177 final IItem il = (IItem) l;
180 final double nil = il.getAggregate (m_numeratorAggregateID);
181 final double dil = il.getAggregate (m_denominatorAggregateID);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/fio/
H A Doptions.c1326 static int str_buffer_compress_cb(void *data, unsigned long long *il) argument
1331 td->o.compress_percentage = *il;
1335 static int str_dedupe_cb(void *data, unsigned long long *il) argument
1340 td->o.dedupe_percentage = *il;
1368 static int str_gtod_reduce_cb(void *data, int *il) argument
1371 int val = *il;
H A Dparse.c475 int il=0, *ilp; local
808 ret = check_int(ptr, &il);
812 il = 1;
814 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il);
819 if (o->maxval && il > (int) o->maxval) {
821 il, o->maxval);
824 if (o->minval && il < o->minval) {
826 il, o->minval);
831 il = !il;
[all...]
/external/google-benchmark/test/
H A Doutput_test.h53 int AddCases(TestCaseID ID, std::initializer_list<TestCase> il);
58 std::initializer_list<std::pair<std::string, std::string>> il);
H A Doutput_test_helper.cc343 int AddCases(TestCaseID ID, std::initializer_list<TestCase> il) { argument
345 L.insert(L.end(), il);
350 std::initializer_list<std::pair<std::string, std::string>> il) {
352 for (auto KV : il) {
349 SetSubstitutions( std::initializer_list<std::pair<std::string, std::string>> il) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDateFormatTest.java4177 public ChineseCalTestDate(int e, int y, int m, int il, int d) {
4181 isLeapMonth = il;
/external/icu/icu4c/source/test/cintltst/
H A Dutf8tst.c1051 int32_t i, j, k, iu, is, il, length; local
1066 il=j;
1082 if(is!=iu || il!=iu) {
1103 il=j;
1119 if(is!=iu || il !=iu) {
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
H A DULocaleTest.java358 String il = ULocale.GERMANY.getISO3Language();
360 assertEquals(il, jl);
367 String il = ULocale.getISO3Language(ULocale.GERMANY.getName());
369 assertEquals(il, jl);

Completed in 712 milliseconds

1234