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

1 2 3 4

  /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 15 T* _p; member in class:CMyComPtr
18 CMyComPtr() { _p = NULL;}
19 CMyComPtr(T* p) {if ((_p = p) != NULL) p->AddRef(); }
22 if ((_p = lp._p) != NULL)
23 _p->AddRef();
25 ~CMyComPtr() { if (_p) _p->Release(); }
26 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...]
  /bionic/libc/include/
stdio.h 88 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
94 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
112 unsigned char *_up; /* saved _p when _p is doing ungetc data */
145 #define __SMOD 0x2000 /* true => fgetln modified _p text */
373 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
375 static __inline int __sputc(int _c, FILE *_p) {
376 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /development/ndk/platforms/android-3/include/
stdio.h 93 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
99 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
117 unsigned char *_up; /* saved _p when _p is doing ungetc data */
150 #define __SMOD 0x2000 /* true => fgetln modified _p text */
361 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
363 static __inline int __sputc(int _c, FILE *_p) {
364 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /development/ndk/platforms/android-8/include/
stdio.h 93 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
99 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
117 unsigned char *_up; /* saved _p when _p is doing ungetc data */
150 #define __SMOD 0x2000 /* true => fgetln modified _p text */
361 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
363 static __inline int __sputc(int _c, FILE *_p) {
364 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.7/lib/gcc/mipsel-linux-android/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.7/lib/gcc/mipsel-linux-android/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include-fixed/
stdio.h 123 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
129 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
147 unsigned char *_up; /* saved _p when _p is doing ungetc data */
180 #define __SMOD 0x2000 /* true => fgetln modified _p text */
391 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
393 static __inline int __sputc(int _c, FILE *_p) {
394 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include-fixed/
stdio.h 102 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
108 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
159 #define __SMOD 0x2000 /* true => fgetln modified _p text */
370 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
372 static __inline int __sputc(int _c, FILE *_p) {
373 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')
    [all...]

Completed in 1432 milliseconds

1 2 3 4