HomeSort by relevance Sort by last modified time
    Searched full:islower (Results 1 - 25 of 720) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/musl-locale/
islower_l.c 5 return islower(c);
  /external/libcxx/test/std/localization/locales/locale.convenience/classification/
islower.pass.cpp 12 // template <class charT> bool islower (charT c, const locale& loc);
20 assert(!std::islower(' ', l));
21 assert(!std::islower('<', l));
22 assert(!std::islower('\x8', l));
23 assert(!std::islower('A', l));
24 assert( std::islower('a', l));
25 assert( std::islower('z', l));
26 assert(!std::islower('3', l));
27 assert(!std::islower('.', l));
28 assert( std::islower('f', l))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/
islower.pass.cpp 12 // template <class charT> bool islower (charT c, const locale& loc);
20 assert(!std::islower(' ', l));
21 assert(!std::islower('<', l));
22 assert(!std::islower('\x8', l));
23 assert(!std::islower('A', l));
24 assert( std::islower('a', l));
25 assert( std::islower('z', l));
26 assert(!std::islower('3', l));
27 assert(!std::islower('.', l));
28 assert( std::islower('f', l))
    [all...]
  /external/eigen/blas/
PackedTriangularSolverVector.h 23 IsLower = (Mode&Lower)==Lower
31 lhs += IsLower ? 0 : (size*(size+1)>>1)-1;
34 Index i = IsLower ? pi : size-pi-1;
35 Index s = IsLower ? 0 : 1;
38 .cwiseProduct(Map<const Matrix<RhsScalar,Dynamic,1> >(rhs+(IsLower ? 0 : i+1),pi))).sum();
40 rhs[i] /= cj(lhs[IsLower ? i : 0]);
41 IsLower ? lhs += pi+1 : lhs -= pi+2;
51 IsLower = (Mode&Lower)==Lower
59 lhs += IsLower ? 0 : size*(size-1)>>1;
62 Index i = IsLower ? pi : size-pi-1
    [all...]
BandTriangularSolver.h 27 enum { IsLower = (Mode&Lower) ? 1 : 0 };
42 int i = IsLower ? ii : size-ii-1;
44 int actual_start = IsLower ? k-actual_k : 1;
48 .cwiseProduct(other.col(col).segment(IsLower ? i-actual_k : i+1,actual_k)).sum();
51 other.coeffRef(i,col) /= cjLhs(i,IsLower ? k : 0);
63 enum { IsLower = (Mode&Lower) ? 1 : 0 };
78 int i = IsLower ? ii : size-ii-1;
80 int actual_start = IsLower ? 1 : k-actual_k;
83 other.coeffRef(i,col) /= cjLhs(IsLower ? 0 : k, i);
86 other.col(col).segment(IsLower ? i+1 : i-actual_k, actual_k
    [all...]
PackedTriangularMatrixVector.h 23 IsLower = (Mode & Lower) ==Lower,
36 Index s = IsLower&&(HasUnitDiag||HasZeroDiag) ? 1 : 0;
37 Index r = IsLower ? size-i: i+1;
39 ResMap(res+(IsLower ? s+i : 0),r) += alpha * cj(rhs[i]) * ConjLhsType(LhsMap(lhs+s,r));
42 lhs += IsLower ? size-i: i+1;
52 IsLower = (Mode & Lower) ==Lower,
66 Index s = !IsLower&&(HasUnitDiag||HasZeroDiag) ? 1 : 0;
67 Index r = IsLower ? i+1 : size-i;
69 res[i] += alpha * (ConjLhsType(LhsMap(lhs+s,r)).cwiseProduct(ConjRhsType(RhsMap(rhs+(IsLower ? 0 : s+i),r)))).sum();
72 lhs += IsLower ? i+1 : size-i
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 34 IsLower = ((Mode&Lower)==Lower)
46 for(Index pi=IsLower ? 0 : size;
47 IsLower ? pi<size : pi>0;
48 IsLower ? pi+=PanelWidth : pi-=PanelWidth)
50 Index actualPanelWidth = (std::min)(IsLower ? size - pi : pi, PanelWidth);
52 Index r = IsLower ? pi : size - pi; // remaining size
58 Index startRow = IsLower ? pi : pi-actualPanelWidth;
59 Index startCol = IsLower ? 0 : pi;
71 Index i = IsLower ? pi+k : pi-k-1;
72 Index s = IsLower ? pi : i+1
    [all...]
TriangularMatrixMatrix.h 90 IsLower = (Mode&Lower) == Lower,
116 Index rows = IsLower ? _rows : diagSize;
117 Index depth = IsLower ? diagSize : _depth;
145 for(Index k2=IsLower ? depth : 0;
146 IsLower ? k2>0 : k2<depth;
147 IsLower ? k2-=kc : k2+=kc)
149 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc);
150 Index actual_k2 = IsLower ? k2-actual_kc : k2;
153 if((!IsLower)&&(k2<rows)&&(k2+actual_kc>rows))
167 if(IsLower || actual_k2<rows
    [all...]
TriangularSolverMatrix.h 61 IsLower = (Mode&Lower) == Lower
87 for(Index k2=IsLower ? 0 : size;
88 IsLower ? k2<size : k2>0;
89 IsLower ? k2+=kc : k2-=kc)
91 const Index actual_kc = (std::min)(IsLower ? size-k2 : k2, kc);
117 Index i = IsLower ? k2+k1+k : k2-k1-k-1;
118 Index s = IsLower ? k2+k1 : i+1;
136 Index s = IsLower ? i+1 : i-rs;
147 Index startBlock = IsLower ? k2+k1 : k2-k1-actualPanelWidth;
148 Index blockBOffset = IsLower ? k1 : lengthTarget
    [all...]
TriangularMatrixVector_MKL.h 78 IsLower = (Mode&Lower) == Lower, \
82 LowUp = IsLower ? Lower : Upper \
93 Index rows = IsLower ? _rows : size; \
94 Index cols = IsLower ? size : _cols; \
122 uplo = IsLower ? 'L' : 'U'; \
163 IsLower = (Mode&Lower) == Lower, \
167 LowUp = IsLower ? Lower : Upper \
178 Index rows = IsLower ? _rows : size; \
179 Index cols = IsLower ? size : _cols; \
207 uplo = IsLower ? 'U' : 'L';
    [all...]
TriangularMatrixVector.h 25 IsLower = ((Mode&Lower)==Lower),
40 Index rows = IsLower ? _rows : (std::min)(_rows,_cols);
41 Index cols = IsLower ? (std::min)(_rows,_cols) : _cols;
60 Index s = IsLower ? ((HasUnitDiag||HasZeroDiag) ? i+1 : i ) : pi;
61 Index r = IsLower ? actualPanelWidth-k : k+1;
67 Index r = IsLower ? rows - pi - actualPanelWidth : pi;
70 Index s = IsLower ? pi+actualPanelWidth : 0;
78 if((!IsLower) && cols>size)
93 IsLower = ((Mode&Lower)==Lower),
108 Index rows = IsLower ? _rows : diagSize
    [all...]
GeneralMatrixMatrixTriangular_MKL.h 78 IsLower = (UpLo&Lower) == Lower, \
79 LowUp = IsLower ? Lower : Upper, \
88 char uplo=(IsLower) ? 'L' : 'U', trans=(AStorageOrder==RowMajor) ? 'T':'N'; \
103 IsLower = (UpLo&Lower) == Lower, \
104 LowUp = IsLower ? Lower : Upper, \
113 char uplo=(IsLower) ? 'L' : 'U', trans=(AStorageOrder==RowMajor) ? 'C':'N'; \
  /bionic/tests/
ctype_test.cpp 67 TEST(ctype, islower) {
68 EXPECT_TRUE(islower('a'));
69 EXPECT_FALSE(islower('A'));
70 EXPECT_FALSE(islower('!'));
136 // _toupper may mangle characters for which islower is false.
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 20 { "lower", islower },
  /external/libcxx/include/
cctype 26 int islower(int c);
99 #ifdef islower
100 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_islower(int __c) {return islower(__c);}
101 #undef islower
102 inline _LIBCPP_INLINE_VISIBILITY int islower(int __c) {return __libcpp_islower(__c);}
103 #else // islower
104 using ::islower;
105 #endif // islower
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 26 int islower(int c);
98 #ifdef islower
99 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_islower(int __c) {return islower(__c);}
100 #undef islower
101 inline _LIBCPP_INLINE_VISIBILITY int islower(int __c) {return __libcpp_islower(__c);}
102 #else // islower
103 using ::islower;
104 #endif // islower
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 26 int islower(int c);
98 #ifdef islower
99 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_islower(int __c) {return islower(__c);}
100 #undef islower
101 inline _LIBCPP_INLINE_VISIBILITY int islower(int __c) {return __libcpp_islower(__c);}
102 #else // islower
103 using ::islower;
104 #endif // islower
  /prebuilts/gdb/darwin-x86/include/python2.7/
bytes_methods.h 39 #define ISLOWER(c) Py_ISLOWER(c)
47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
  /prebuilts/gdb/linux-x86/include/python2.7/
bytes_methods.h 39 #define ISLOWER(c) Py_ISLOWER(c)
47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytes_methods.h 39 #define ISLOWER(c) Py_ISLOWER(c)
47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytes_methods.h 39 #define ISLOWER(c) Py_ISLOWER(c)
47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 40 #ifdef islower
41 #error islower defined
80 static_assert((std::is_same<decltype(islower(0)), int>::value), "");
95 assert(islower('a'));
  /external/libcxx/test/std/strings/c.strings/
cctype.pass.cpp 40 #ifdef islower
41 #error islower defined
80 static_assert((std::is_same<decltype(std::islower(0)), int>::value), "");
95 assert(islower('a'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 40 #ifdef islower
41 #error islower defined
80 static_assert((std::is_same<decltype(islower(0)), int>::value), "");
95 assert(islower('a'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp 40 #ifdef islower
41 #error islower defined
80 static_assert((std::is_same<decltype(std::islower(0)), int>::value), "");
95 assert(islower('a'));

Completed in 315 milliseconds

1 2 3 4 5 6 7 8 91011>>