Home
last modified time | relevance | path

Searched refs:__low (Results 1 – 25 of 87) sorted by relevance

1234

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/vxworks/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
55 while (__low < __high) in _GLIBCXX_VISIBILITY()
56 *__vec++ = __ctype[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
62 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
64 while (__low < __high in _GLIBCXX_VISIBILITY()
65 && !(__ctype[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
66 ++__low; in _GLIBCXX_VISIBILITY()
67 return __low; in _GLIBCXX_VISIBILITY()
72 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
74 while (__low < __high in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
62 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY()
68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY()
69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY()
70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY()
71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
62 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY()
68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY()
69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY()
70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY()
71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
62 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY()
68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY()
69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY()
70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY()
71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
62 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY()
68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY()
69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY()
70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY()
71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
61 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
70 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
73 while (__low < __high in _GLIBCXX_VISIBILITY()
74 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
75 ++__low; in _GLIBCXX_VISIBILITY()
77 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
H A Dctype_inline.h118 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
121 while (__low < __high) in _GLIBCXX_VISIBILITY()
122 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
127 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
135 if (this->is(__bit, *__low)) in _GLIBCXX_VISIBILITY()
146 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
149 while (__low < __high in _GLIBCXX_VISIBILITY()
150 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
151 ++__low; in _GLIBCXX_VISIBILITY()
153 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/generic/
H A Dctype_inline.h118 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
121 while (__low < __high) in _GLIBCXX_VISIBILITY()
122 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
127 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
135 if (this->is(__bit, *__low)) in _GLIBCXX_VISIBILITY()
146 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
149 while (__low < __high in _GLIBCXX_VISIBILITY()
150 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
151 ++__low; in _GLIBCXX_VISIBILITY()
153 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 for (;__low < __high; ++__vec, ++__low) in _GLIBCXX_VISIBILITY()
61 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit in _GLIBCXX_VISIBILITY()
70 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
73 while (__low < __high in _GLIBCXX_VISIBILITY()
74 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
75 ++__low; in _GLIBCXX_VISIBILITY()
77 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/aix/
H A Dctype_inline.h57 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
60 while (__low < __high) in _GLIBCXX_VISIBILITY()
61 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
63 while (__low < __high) in _GLIBCXX_VISIBILITY()
65 *__vec++ = __OBJ_DATA((*__lc_ctype_ptr))->mask[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
67 *__vec++ = __OBJ_DATA(__lc_ctype)->mask[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
74 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
76 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
77 ++__low; in _GLIBCXX_VISIBILITY()
78 return __low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/aix/
H A Dctype_inline.h53 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
56 while (__low < __high) in _GLIBCXX_VISIBILITY()
57 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 while (__low < __high) in _GLIBCXX_VISIBILITY()
60 *__vec++ = __OBJ_DATA(__lc_ctype)->mask[*__low++]; in _GLIBCXX_VISIBILITY()
66 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
70 return __low; in _GLIBCXX_VISIBILITY()
75 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/qnx/qnx6.1/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[*__low++]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[(unsigned char)*__low++]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/netbsd/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[(unsigned char)*__low++]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/qnx/qnx6.1/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[*__low++]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/openbsd/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bionic/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/solaris/solaris2.10/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high in _GLIBCXX_VISIBILITY()
60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/openbsd/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
60 ++__low; in _GLIBCXX_VISIBILITY()
61 return __low; in _GLIBCXX_VISIBILITY()
66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
69 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32-w64/
H A Dctype_inline.h49 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
51 while (__low < __high) in _GLIBCXX_VISIBILITY()
52 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
58 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
60 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
70 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/hpux/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high in _GLIBCXX_VISIBILITY()
60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32/
H A Dctype_inline.h49 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
51 while (__low < __high) in _GLIBCXX_VISIBILITY()
52 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
58 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
60 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
70 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32-w64/
H A Dctype_inline.h49 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
51 while (__low < __high) in _GLIBCXX_VISIBILITY()
52 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
58 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
60 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
70 ++__low; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/djgpp/
H A Dctype_inline.h48 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
50 while (__low < __high) in _GLIBCXX_VISIBILITY()
51 *__vec++ = _M_table[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
59 while (__low < __high in _GLIBCXX_VISIBILITY()
60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
61 ++__low; in _GLIBCXX_VISIBILITY()
62 return __low; in _GLIBCXX_VISIBILITY()
67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
69 while (__low < __high in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/vxworks/
H A Dctype_inline.h50 is(const char* __low, const char* __high, mask* __vec) const in _GLIBCXX_VISIBILITY()
52 while (__low < __high) in _GLIBCXX_VISIBILITY()
53 *__vec++ = __ctype[static_cast<unsigned char>(*__low++)]; in _GLIBCXX_VISIBILITY()
59 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
61 while (__low < __high in _GLIBCXX_VISIBILITY()
62 && !(__ctype[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY()
63 ++__low; in _GLIBCXX_VISIBILITY()
64 return __low; in _GLIBCXX_VISIBILITY()
69 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY()
71 while (__low < __high in _GLIBCXX_VISIBILITY()
[all …]

1234