/development/tutorials/MoarRam/jni/ |
baz.c | 38 char **gPtr; 42 gPtr = &gPtr17; 45 gPtr = &gPtr71; 48 *ptr = *gPtr; 49 *gPtr = (char *) ptr; 63 char **gPtr; 66 gPtr = &gPtr17; 69 gPtr = &gPtr71; 71 if (*gPtr == NULL) { 75 ptr = (char **) *gPtr; [all...] |
foo.c | 26 char *gPtr; 35 *ptr = gPtr; 36 gPtr = (char *) ptr; 39 num32ByteBlocks, gPtr); 47 if (gPtr == NULL) { 52 char **ptr = (char **) gPtr; 53 gPtr = *ptr;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/ |
underflow.pass.cpp | 30 char_type* gptr() const {return base::gptr();} function in struct:test_buf 44 assert(f.gptr() == 0); 48 assert(f.eback() == f.gptr()); 49 assert(*f.gptr() == '1'); 58 assert(f.gptr() == 0); 62 assert(f.eback() == f.gptr()); 63 assert(*f.gptr() == '1'); 71 assert(f.gptr() - f.eback() == 4); 72 assert(*f.gptr() == '9') [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/ |
underflow.pass.cpp | 34 char_type* gptr() const {return base::gptr();} function in struct:test_buf 47 assert(f.gptr() == 0); 51 assert(f.eback() == f.gptr()); 52 assert(*f.gptr() == L'1'); 59 assert(f.gptr() == 0); 63 assert(f.eback() == f.gptr()); 64 assert(*f.gptr() == L'1'); 72 assert(f.gptr() - f.eback() == 8); 73 assert(*f.gptr() == L'9') [all...] |
/frameworks/base/libs/hwui/utils/ |
Blur.cpp | 75 const float* gPtr = weights; 81 blurredPixel += currentPixel * gPtr[0]; 82 gPtr++; 97 blurredPixel += currentPixel * gPtr[0]; 98 gPtr++; 117 const float* gPtr = weights; 124 blurredPixel += currentPixel * gPtr[0]; 125 gPtr++; 141 blurredPixel += currentPixel * gPtr[0]; 142 gPtr++ [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlur.cpp | 116 const uchar *ptrIn, int iStride, const float* gPtr, int iradius) { 126 blurredPixel += pf * gPtr[0]; 127 gPtr++; 134 const uchar *ptrIn, int iStride, const float* gPtr, int iradius) { 143 blurredPixel += pf * gPtr[0]; 144 gPtr++; 150 extern "C" void rsdIntrinsicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int ct); 151 extern "C" void rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 152 extern "C" void rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 155 const uchar *ptrIn, int iStride, const float* gPtr, int ct [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/ |
ctor.pass.cpp | 42 CharT* gptr() const {return base::gptr();} function in struct:testbuf 79 assert(sb.gptr() == sb.eback()); 89 assert(sb.gptr() == sb.eback()); 98 assert(sb.gptr() == sb.eback() + 3); 107 assert(sb.gptr() == sb.eback() + 3); 117 assert(sb.gptr() == sb.eback() + 6); 126 assert(sb.gptr() == sb.eback());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
strstream.cpp | 171 ptrdiff_t ninp = gptr() - eback(); 195 if (eback() == gptr()) 204 if (gptr()[-1] == static_cast<char>(__c)) 212 *gptr() = static_cast<char>(__c); 219 if (gptr() == egptr()) 223 setg(eback(), gptr(), pptr()); 225 return int_type((unsigned char)*gptr()); 247 if (pos_in && gptr() == nullptr) 261 newoff = (pos_in ? gptr() : pptr()) - eback(); 294 if (!((pos_in && gptr() == nullptr) || (pos_out && pptr() == nullptr)) [all...] |
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
ittnotify_config.h | 358 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \ 369 (gptr)->thread_list = h; \ 375 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \ 386 (gptr)->thread_list = h; \ 392 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \ 402 (gptr)->domain_list = h; \ 408 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \ 418 (gptr)->domain_list = h; \ 424 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \ 433 (gptr)->string_list = h; [all...] |
/external/stlport/src/ |
strstream.cpp | 132 if (gptr() != 0) { 134 old_get_offset = gptr() - eback(); 157 if (gptr() != eback()) { 162 else if (c == gptr()[-1]) { 168 *gptr() = traits_type::to_char_type(c); 177 if (gptr() == egptr() && pptr() && pptr() > egptr()) 178 setg(eback(), gptr(), pptr()); 180 if (gptr() != egptr()) 181 return (unsigned char) *gptr(); 206 // !gptr() is here because, according to D.7.1 paragraph 4, the seekabl [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
strstream.cpp | 132 if (gptr() != 0) { 134 old_get_offset = gptr() - eback(); 157 if (gptr() != eback()) { 162 else if (c == gptr()[-1]) { 168 *gptr() = traits_type::to_char_type(c); 177 if (gptr() == egptr() && pptr() && pptr() > egptr()) 178 setg(eback(), gptr(), pptr()); 180 if (gptr() != egptr()) 181 return (unsigned char) *gptr(); 206 // !gptr() is here because, according to D.7.1 paragraph 4, the seekabl [all...] |
/external/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
swap.pass.cpp | 35 assert(this->gptr() == old_that.gptr()); 43 assert(t.gptr() == old_this.gptr());
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_sstream.c | 93 // Precondition: gptr() >= egptr(). Returns a character, if one is available. 97 return this->gptr() != this->egptr() 98 ? _Traits::to_int_type(*this->gptr()) 102 // Precondition: gptr() >= egptr(). 106 if (this->gptr() != this->egptr()) { 107 int_type __c = _Traits::to_int_type(*this->gptr()); 118 if (this->gptr() != this->eback()) { 120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { 126 *this->gptr() = _Traits::to_char_type(__c); 150 ptrdiff_t __offset = this->gptr() - this->eback() [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
sstream.tcc | 49 if (this->eback() < this->gptr()) 58 this->gptr()[-1]); 64 *this->gptr() = traits_type::to_char_type(__c); 120 this->gptr() - this->eback(), this->pptr() - this->pbase()); 140 if (this->gptr() < this->egptr()) 141 __ret = traits_type::to_int_type(*this->gptr()); 169 __newoffi += this->gptr() - __beg; 179 this->gbump((__beg + __newoffi) - this->gptr()); 213 this->gbump((__beg + __pos) - this->gptr());
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
sstream.tcc | 49 if (this->eback() < this->gptr()) 58 this->gptr()[-1]); 64 *this->gptr() = traits_type::to_char_type(__c); 120 this->gptr() - this->eback(), this->pptr() - this->pbase()); 140 if (this->gptr() < this->egptr()) 141 __ret = traits_type::to_int_type(*this->gptr()); 169 __newoffi += this->gptr() - __beg; 179 this->gbump((__beg + __newoffi) - this->gptr()); 213 this->gbump((__beg + __pos) - this->gptr());
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
sstream.tcc | 49 if (this->eback() < this->gptr()) 58 this->gptr()[-1]); 64 *this->gptr() = traits_type::to_char_type(__c); 120 this->gptr() - this->eback(), this->pptr() - this->pbase()); 140 if (this->gptr() < this->egptr()) 141 __ret = traits_type::to_int_type(*this->gptr()); 169 __newoffi += this->gptr() - __beg; 179 this->gbump((__beg + __newoffi) - this->gptr()); 213 this->gbump((__beg + __pos) - this->gptr());
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
sstream.tcc | 49 if (this->eback() < this->gptr()) 58 this->gptr()[-1]); 64 *this->gptr() = traits_type::to_char_type(__c); 120 this->gptr() - this->eback(), this->pptr() - this->pbase()); 140 if (this->gptr() < this->egptr()) 141 __ret = traits_type::to_int_type(*this->gptr()); 169 __newoffi += this->gptr() - __beg; 179 this->gbump((__beg + __newoffi) - this->gptr()); 213 this->gbump((__beg + __pos) - this->gptr());
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
sstream.tcc | 49 if (this->eback() < this->gptr()) 58 this->gptr()[-1]); 64 *this->gptr() = traits_type::to_char_type(__c); 120 this->gptr() - this->eback(), this->pptr() - this->pbase()); 140 if (this->gptr() < this->egptr()) 141 __ret = traits_type::to_int_type(*this->gptr()); 169 __newoffi += this->gptr() - __beg; 179 this->gbump((__beg + __newoffi) - this->gptr()); 213 this->gbump((__beg + __pos) - this->gptr());
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
fstream.tcc | 188 __ret = this->egptr() - this->gptr(); 224 if (this->gptr() < this->egptr()) 225 return traits_type::to_int_type(*this->gptr()); 337 __ret = traits_type::to_int_type(*this->gptr()); 383 if (this->eback() < this->gptr()) 386 __tmp = traits_type::to_int_type(*this->gptr()); 414 *this->gptr() = traits_type::to_char_type(__i); 557 if (__n > 0 && this->gptr() == this->eback()) 559 *__s++ = *this->gptr(); // emulate non-underflowing sbumpc 584 const streamsize __avail = this->egptr() - this->gptr(); [all...] |