Home
last modified time | relevance | path

Searched refs:_p (Results 1 – 25 of 55) sorted by relevance

123

/external/lzma/CPP/Common/
DMyCom.h15 T* _p; variable
18 CMyComPtr() { _p = NULL;} in CMyComPtr()
19 CMyComPtr(T* p) {if ((_p = p) != NULL) p->AddRef(); } in CMyComPtr()
22 if ((_p = lp._p) != NULL) in CMyComPtr()
23 _p->AddRef(); in CMyComPtr()
25 ~CMyComPtr() { if (_p) _p->Release(); } in ~CMyComPtr()
26 void Release() { if (_p) { _p->Release(); _p = NULL; } } in Release()
27 operator T*() const { return (T*)_p; }
29 T** operator&() { return &_p; }
30 T* operator->() const { return _p; }
[all …]
DAutoPtr.h8 T *_p; variable
10 CMyAutoPtr(T *p = 0) : _p(p) {} in _p() function
11 CMyAutoPtr(CMyAutoPtr<T>& p): _p(p.release()) {} in CMyAutoPtr()
17 ~CMyAutoPtr() { delete _p; } in ~CMyAutoPtr() local
18 T& operator*() const { return *_p; }
20 T* get() const { return _p; } in get()
23 T *tmp = _p; in release()
24 _p = 0; in release()
29 if (p != _p)
30 delete _p; variable
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBufferedTokenStream.cs74 protected int _p = -1; field in Antlr.Runtime.BufferedTokenStream
90 _p = -1;
96 return _p;
146 if (_p == -1) in Mark()
165 _p = 0; in Reset()
170 _p = index; in Seek()
181 if (_p == -1) in Consume()
183 _p++; in Consume()
184 Sync(_p); in Consume()
225 if (_p == -1) in Get()
[all …]
DCommonTokenStream.cs84 if (_p == -1) in Consume()
86 _p++; in Consume()
87 Sync(_p); in Consume()
88 while (_tokens[_p].Channel != _channel) { in Consume()
89 _p++; in Consume()
90 Sync(_p); in Consume()
95 if (k == 0 || (_p - k) < 0) in LB()
98 int i = _p; in LB()
112 if (_p == -1) in LT()
118 int i = _p; in LT()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBufferedTokenStream.cs76 protected int _p = -1; field in Antlr.Runtime.BufferedTokenStream
97 _p = -1;
105 return _p;
168 if (_p == -1) in Mark()
191 _p = 0; in Reset()
197 _p = index; in Seek()
209 if (_p == -1) in Consume()
211 _p++; in Consume()
212 Sync(_p); in Consume()
258 if (_p == -1) in Get()
[all …]
DCommonTokenStream.cs95 if (_p == -1) in Consume()
97 _p++; in Consume()
98 _p = SkipOffTokenChannels(_p); in Consume()
103 if (k == 0 || (_p - k) < 0) in LB()
106 int i = _p; in LB()
122 if (_p == -1) in LT()
128 int i = _p; in LT()
171 _p = 0; in Setup()
172 _p = SkipOffTokenChannels(_p); in Setup()
/external/e2fsprogs/lib/
DMakefile.profile1 all:: $(LIBRARY)_p.a
9 $(RM) -f $(LIBRARY)_p.a ../$(LIBRARY)_p.a
11 $(LIBRARY)_p.a: $(OBJS)
20 install:: $(LIBRARY)_p.a installdirs
22 $(Q) $(INSTALL_DATA) $(LIBRARY)_p.a $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
23 -$(Q) $(RANLIB) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
24 $(Q) $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
27 $(RM) -f $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
/external/toybox/tests/
Dlsattr.test132 _p=$PWD
137 testing "lsattr file_path" "lsattr $_p/file" "$_A $_p/file\n" "" ""
139 testing "lsattr -R file_path" "lsattr -R $_p/file" "$_A $_p/file\n" "" ""
141 testing "lsattr -a file_path" "lsattr -a $_p/file" "$_A $_p/file\n" "" ""
143 testing "lsattr -d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
145 testing "lsattr -d file_path" "lsattr -d $_p/file" "$_A $_p/file\n" "" ""
151 testing "lsattr -v file_path" "chattr -v $_v * && lsattr -v $_p/file" \
152 "$_v $_A $_p/file\n" "" ""
/external/mesa3d/src/glsl/builtins/ir/
Dnoise4.ir11 (declare () vec4 _p)
12 …(assign (xyzw) (var_ref _p) (expression vec4 + (var_ref p) (constant vec4 (1559.0 113.0 1861.0 797…
16 (assign (x) (var_ref _z) (expression float noise(var_ref _p)))
17 …(assign (x) (var_ref _w) (expression float noise(expression vec4 + (var_ref _p) (constant vec4 (60…
35 (declare () vec3 _p)
36 … (assign (xyz) (var_ref _p) (expression vec3 + (var_ref p) (constant vec3 (1559.0 113.0 1861.0))) )
40 (assign (x) (var_ref _z) (expression float noise(var_ref _p)))
41 …(assign (x) (var_ref _w) (expression float noise(expression vec3 + (var_ref _p) (constant vec3 (60…
59 (declare () vec2 _p)
60 (assign (xy) (var_ref _p) (expression vec2 + (var_ref p) (constant vec2 (1559.0 113.0))) )
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
DLookaheadStream.cs76 _p = 0; in Clear()
92 _p++; in Dequeue()
94 if (_p == _data.Count && _markDepth == 0) { in Dequeue()
115 int n = (_p + need - 1) - _data.Count + 1; // how many more elements we need? in SyncAhead()
147 if ((_p + k - 1) > _data.Count) in LT()
161 _lastMarker = _p; // track where we are in buffer, not absolute token index in Mark()
187 _p = index; in Seek()
DFastQueue.cs52 internal int _p = 0; field in Antlr.Runtime.Misc.FastQueue
56 return _data.Count - _p;
76 int absIndex = _p + i;
95 _p++; in Dequeue()
97 if (_p == _data.Count) { in Dequeue()
113 _p = 0; in Clear()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
DLookaheadStream.cs91 _p = 0; in Clear()
108 _p++; in Dequeue()
110 if ( _p == _data.Count && _markDepth == 0 ) in Dequeue()
134 int n = ( _p + need - 1 ) - _data.Count + 1; // how many more elements we need? in SyncAhead()
173 if ((_p + k - 1) > _data.Count) in LT()
190 _lastMarker = _p; // track where we are in buffer, not absolute token index in Mark()
223 _p = index; in Seek()
DFastQueue.cs54 internal int _p = 0; field in Antlr.Runtime.Misc.FastQueue
60 return _data.Count - _p;
83 int absIndex = _p + i;
103 _p++; in Dequeue()
105 if ( _p == _data.Count ) in Dequeue()
125 _p = 0; in Clear()
/external/libopus/tests/
Dtest_opus_common.h28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y) in deb2_impl() argument
32 if(_y<3)for(i=0;i<_y;i++)*(--*_p)=_t[i+1]; in deb2_impl()
35 deb2_impl(_t,_p,_k,_x+1,_y); in deb2_impl()
38 deb2_impl(_t,_p,_k,_x+1,_x); in deb2_impl()
/external/iputils/ninfod/
Dninfod.h110 void *_p = (p); \
112 DEBUG(LOG_DEBUG, "%s(): free(%p)\n", __func__, _p); \
113 free(_p); \
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_tile_soa.h75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)]) argument
/external/bison/lib/
Dstdio-impl.h52 # define _p pub._p macro
/external/clang/test/Sema/
Dinline-asm-validate.c6 …__asm__ __volatile__( "stxr %w[_t], %[_r], [%[_p]]" : [_t] "=&r" (t) : [_p] "p" (p), [_r] "r" (r… in foo()
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-for-simple-stream.h9 unsigned char *_p; member
/external/opencv/cv/src/
Dcvswitcher.cpp46 { (void**)&func_name##_p, (void*)(size_t)-1, names, modules, 0 },
/external/clang/test/CodeGen/
Darm-asm-variable.c18 : [_p] "p" (p) : "memory"); in foo()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTreeNodeStream.cs203 _calls.Push( _p ); // save current index in Push()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonTreeNodeStream.cs175 _calls.Push(_p); // save current index in Push()
/external/toybox/kconfig/
Dlkc.h31 #define P(name,type,arg) extern type (*name ## _p) arg
/external/bison/m4/
Dfpending.m444 'fp->_p - fp->_bf._base' \

123