HomeSort by relevance Sort by last modified time
    Searched defs:_p (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetBufferPointerv.cpp 6 GLvoid* _p; local
8 glGetBufferPointerv((GLenum)target, (GLenum)pname, &_p);
9 return _env->NewDirectByteBuffer(_p, _mapLength);
glMapBufferRange.cpp 5 GLvoid* _p = glMapBufferRange((GLenum)target, local
8 if (_p) {
9 _buf = _env->NewDirectByteBuffer(_p, length);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 9 unsigned char *_p; member in struct:__sFILE
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 52 internal int _p = 0; field in class:Antlr.Runtime.Misc.FastQueue
56 return _data.Count - _p;
76 int absIndex = _p + i;
95 _p++;
97 if (_p == _data.Count) {
113 _p = 0;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FastQueue.cs 54 internal int _p = 0; field in class:Antlr.Runtime.Misc.FastQueue
60 return _data.Count - _p;
83 int absIndex = _p + i;
103 _p++;
105 if ( _p == _data.Count )
125 _p = 0;
  /external/lzma/CPP/Common/
AutoPtr.h 8 T *_p; member in class:CMyAutoPtr
10 CMyAutoPtr(T *p = 0) : _p(p) {}
11 CMyAutoPtr(CMyAutoPtr<T>& p): _p(p.release()) {}
17 ~CMyAutoPtr() { delete _p; }
18 T& operator*() const { return *_p; }
20 T* get() const { return _p; }
23 T *tmp = _p;
24 _p = 0;
29 if (p != _p)
30 delete _p;
    [all...]
MyCom.h 16 T* _p; member in class:CMyComPtr
18 CMyComPtr(): _p(NULL) {}
19 CMyComPtr(T* p) throw() { if ((_p = p) != NULL) p->AddRef(); }
20 CMyComPtr(const CMyComPtr<T>& lp) throw() { if ((_p = lp._p) != NULL) _p->AddRef(); }
21 ~CMyComPtr() { if (_p) _p->Release(); }
22 void Release() { if (_p) { _p->Release(); _p = NULL; } }
    [all...]
  /external/bison/lib/
stdio-impl.h 52 # define _p pub._p macro
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 74 protected int _p = -1; field in class:Antlr.Runtime.BufferedTokenStream
90 _p = -1;
96 return _p;
146 if (_p == -1)
165 _p = 0;
170 _p = index;
181 if (_p == -1)
183 _p++;
184 Sync(_p);
225 if (_p == -1
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 76 protected int _p = -1; field in class:Antlr.Runtime.BufferedTokenStream
97 _p = -1;
105 return _p;
168 if (_p == -1)
191 _p = 0;
197 _p = index;
209 if (_p == -1)
211 _p++;
212 Sync(_p);
258 if (_p == -1
    [all...]
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
diagnose.py 82 def _p(self, s): member in class:AnnouncingParser
86 self._p("%s START" % name)
89 self._p("%s END" % name)
92 self._p("%s DATA" % data)
95 self._p("%s CHARREF" % name)
98 self._p("%s ENTITYREF" % name)
101 self._p("%s COMMENT" % data)
104 self._p("%s DECL" % data)
107 self._p("%s UNKNOWN-DECL" % data)
110 self._p("%s PI" % data
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
ProgressDialog.h 164 CProgressDialog *_p; member in class:CProgressCloser
166 CProgressCloser(CProgressDialog &p) : _p(&p) {}
167 ~CProgressCloser() { _p->ProcessWasFinished(); }
  /external/opencv3/modules/highgui/src/
agile_wrl.h 74 __abi_IUnknown* _p; member in class:Details::AgileHelper
77 AgileHelper(__abi_IUnknown* p, bool release = true) : _p(p), _release(release)
80 AgileHelper(AgileHelper&& other) : _p(other._p), _release(other._release)
82 _other._p = nullptr;
87 _p = other._p;
89 _other._p = nullptr;
96 if (_release && _p)
98 _p->__abi_Release()
    [all...]
  /external/opencv3/modules/videoio/src/
agile_wrl.hpp 74 __abi_IUnknown* _p; member in class:Details::AgileHelper
77 AgileHelper(__abi_IUnknown* p, bool release = true) : _p(p), _release(release)
80 AgileHelper(AgileHelper&& other) : _p(other._p), _release(other._release)
82 _other._p = nullptr;
87 _p = other._p;
89 _other._p = nullptr;
96 if (_release && _p)
98 _p->__abi_Release()
    [all...]
  /bionic/libc/stdio/
local.h 60 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
86 unsigned char *_up; /* saved _p when _p is doing ungetc data */
142 #define __SMOD 0x2000 // true => fgetln modified _p text.
255 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
256 static __inline int __sputc(int _c, FILE* _p) {
257 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) {
258 return (*_p->_p++ = _c)
    [all...]
  /development/ndk/platforms/android-21/include/
stdio.h 103 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
109 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
132 unsigned char *_up; /* saved _p when _p is doing ungetc data */
165 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /development/ndk/platforms/android-3/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /development/ndk/platforms/android-8/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/
stdio.h 101 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
107 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
125 unsigned char *_up; /* saved _p when _p is doing ungetc data */
158 #define __SMOD 0x2000 /* true => fgetln modified _p text */

Completed in 535 milliseconds

1 2 3 4 5 6