Searched defs:_p (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-for-simple-stream.h9 unsigned char *_p; member in struct:__sFILE
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DFastQueue.cs52 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/
H A DFastQueue.cs54 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/
H A DAutoPtr.h8 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...]
H A DMyCom.h16 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
[all...]
/external/bison/lib/
H A Dstdio-impl.h52 # define _p pub._p macro
/external/libopus/tests/
H A Dtest_opus_common.h28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y) argument
32 if(_y<3)for(i=0;i<_y;i++)*(--*_p)=_t[i+1];
35 deb2_impl(_t,_p,_k,_x+1,_y);
38 deb2_impl(_t,_p,_k,_x+1,_x);
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
H A Ddiagnose.py82 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("
[all...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
H A DConvexH.java131 public HalfEdge(short _ea, short _v, short _p) { argument
132 this(LinearMathJNI.new_ConvexH_HalfEdge__SWIG_1(_ea, _v, _p), true);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs74 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
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs76 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
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog.h164 CProgressDialog *_p; member in class:CProgressCloser
166 CProgressCloser(CProgressDialog &p) : _p(&p) {}
167 ~CProgressCloser() { _p->ProcessWasFinished(); }
H A DProgressDialog2.h269 CProgressDialog *_p; member in class:CProgressCloser
271 CProgressCloser(CProgressDialog &p) : _p(&p) {}
272 ~CProgressCloser() { _p->ProcessWasFinished(); }
/external/opencv3/modules/highgui/src/
H A Dagile_wrl.h74 __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
[all...]
/external/opencv3/modules/videoio/src/
H A Dagile_wrl.hpp74 __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
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtConvexHull.h136 HalfEdge(short _ea,unsigned char _v, unsigned char _p):ea(_ea),v(_v),p(_p){} argument
/external/opencv/cv/src/
H A D_cvkdtree.hpp304 bbf_nn(const __valuetype & _p, accum_type _dist) argument
305 : p(&_p), dist(_dist) {
/external/opencv3/modules/flann/src/
H A Dminiflann.cpp29 T getParam(const IndexParams& _p, const String& key, const T& defaultVal=T()) argument
31 ::cvflann::IndexParams& p = get_params(_p);
39 void setParam(IndexParams& _p, const String& key, const T& value) argument
41 ::cvflann::IndexParams& p = get_params(_p);
/external/opencv3/modules/ml/src/
H A Dknearest.cpp285 findKNearestInvoker(const BruteForceImpl* _p, int _k, const Mat& __samples, argument
288 p = _p;
H A Dsvm.cpp134 double _Con, double _nu, double _p,
144 p = _p;
132 SvmParams( int _svmType, int _kernelType, double _degree, double _gamma, double _coef0, double _Con, double _nu, double _p, const Mat& _classWeights, TermCriteria _termCrit ) argument
/external/opencv/ml/src/
H A Dmlsvm.cpp179 double _Con, double _nu, double _p,
183 C(_Con), nu(_nu), p(_p), class_weights(_class_weights), term_crit(_term_crit)
177 CvSVMParams( int _svm_type, int _kernel_type, double _degree, double _gamma, double _coef0, double _Con, double _nu, double _p, CvMat* _class_weights, CvTermCriteria _term_crit ) argument
/external/opencv3/modules/core/include/opencv2/core/
H A Dmat.inl.hpp1102 MatSize::MatSize(int* _p) argument
1103 : p(_p) {}
/external/opencv3/modules/imgproc/src/
H A Dundistort.cpp457 static Point2f invMapPointSpherical(Point2f _p, float alpha, int projType) argument
462 Vec2d p(_p.x, _p.y), q(_p.x, _p.y), err;
/external/opencv3/modules/objdetect/src/
H A Dhaar.cpp1425 size_t _sumstep, const int** _p, const int** _pq,
1433 p = _p; pq = _pq;
1423 HaarDetectObjects_ScaleCascade_Invoker( const CvHaarClassifierCascade* _cascade, Size _winsize, const Range& _xrange, double _ystep, size_t _sumstep, const int** _p, const int** _pq, std::vector<Rect>& _vec, Mutex* _mtx ) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1230 milliseconds

12