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

1 2 3 4 5 6 7 8 91011

  /external/syslinux/libfat/
ulint.h 32 static inline unsigned char read8(le8_t * _p)
34 return *_p;
37 static inline void write8(le8_t * _p, uint8_t _v)
39 *_p = _v;
46 static inline unsigned short read16(le16_t * _p)
48 return *((const uint16_t *)_p);
51 static inline void write16(le16_t * _p, unsigned short _v)
53 *((uint16_t *) _p) = _v;
56 static inline unsigned int read32(le32_t * _p)
58 return *((const uint32_t *)_p);
72 uint8_t *_p = *_pp; local
82 uint8_t *_p = *_pp; local
90 uint8_t *_p = *_pp; local
102 uint8_t *_p = *_pp; local
    [all...]
  /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/toybox/tests/
lsattr.test 11 _p=$PWD
16 testing "file_path" "lsattr $_p/file" "$_A $_p/file\n" "" ""
18 testing "-R file_path" "lsattr -R $_p/file" "$_A $_p/file\n" "" ""
20 testing "-a file_path" "lsattr -a $_p/file" "$_A $_p/file\n" "" ""
22 testing "-d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
24 testing "-d file_path" "lsattr -d $_p/file" "$_A $_p/file\n" "" "
    [all...]
  /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);
  /device/linaro/bootloader/arm-trusted-firmware/include/common/
param_header.h 22 #define SET_PARAM_HEAD(_p, _type, _ver, _attr) do { \
23 (_p)->h.type = (uint8_t)(_type); \
24 (_p)->h.version = (uint8_t)(_ver); \
25 (_p)->h.size = (uint16_t)sizeof(*_p); \
26 (_p)->h.attr = (uint32_t)(_attr) ; \
30 #define SET_STATIC_PARAM_HEAD(_p, _type, _ver, _p_type, _attr) \
31 ._p.h.type = (uint8_t)(_type), \
32 ._p.h.version = (uint8_t)(_ver), \
33 ._p.h.size = (uint16_t)sizeof(_p_type),
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/psci/
psci_lib.h 50 #define SET_PSCI_LIB_ARGS_V1(_p, _entry) do { \
51 SET_PARAM_HEAD(_p, PARAM_PSCI_LIB_ARGS, VERSION_1, 0); \
52 (_p)->mailbox_ep = (_entry); \
66 #define VERIFY_PSCI_LIB_ARGS_V1(_p) ((_p) \
67 && ((_p)->h.type == PARAM_PSCI_LIB_ARGS) \
68 && ((_p)->h.version == VERSION_1) \
69 && ((_p)->h.size == sizeof(*(_p))) \
70 && ((_p)->h.attr == 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 84 if (_p == -1)
86 _p++;
87 Sync(_p);
88 while (_tokens[_p].Channel != _channel) {
89 _p++;
90 Sync(_p);
95 if (k == 0 || (_p - k) < 0)
98 int i = _p;
112 if (_p == -1)
118 int i = _p;
    [all...]
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/clang/test/Sema/
inline-asm-validate.c 6 __asm__ __volatile__( "stxr %w[_t], %[_r], [%[_p]]" : [_t] "=&r" (t) : [_p] "p" (p), [_r] "r" (r) : "memory"); // expected-warning{{value size does not match register size specified by the constraint and modifier}} expected-note {{use constraint modifier "w"}}
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 95 if (_p == -1)
97 _p++;
98 _p = SkipOffTokenChannels(_p);
103 if (k == 0 || (_p - k) < 0)
106 int i = _p;
122 if (_p == -1)
128 int i = _p;
171 _p = 0;
172 _p = SkipOffTokenChannels(_p)
    [all...]
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/upstream-openbsd/lib/libc/stdio/
fgetln.c 79 if ((p = memchr((void *)fp->_p, '\n', fp->_r)) != NULL) {
86 ret = (char *)fp->_p;
87 *lenp = len = p - fp->_p;
90 fp->_p = p;
115 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
120 if ((p = memchr((void *)fp->_p, '\n', fp->_r)) == NULL)
125 diff = p - fp->_p;
129 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
132 fp->_p = p;
rget.c 48 return (*fp->_p++);
ungetc.c 41 * Expand the ungetc buffer `in place'. That is, adjust fp->_p when
63 fp->_p = p;
72 fp->_p = p + i;
114 *--fp->_p = c;
126 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
127 fp->_p[-1] == c) {
128 fp->_p--;
137 fp->_up = fp->_p;
141 fp->_p = &fp->_ubuf[sizeof(fp->_ubuf) - 1];
wbuf.c 72 n = fp->_p - fp->_bf._base;
79 *fp->_p++ = c;
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PlatformBootManagerLib/
PlatformConsole.h 29 #define IS_PCI_ISA_PDECODE(_p) IS_CLASS3 (_p, PCI_CLASS_BRIDGE, PCI_CLASS_BRIDGE_ISA_PDECODE, 0)
30 #define IS_PCI_16550SERIAL(_p) IS_CLASS3 (_p, PCI_CLASS_SCC, PCI_SUBCLASS_SERIAL, PCI_IF_16550)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
pci22.h 265 #define IS_CLASS1(_p, c) ((_p)->Hdr.ClassCode[2] == (c))
266 #define IS_CLASS2(_p, c, s) (IS_CLASS1 (_p, c) && ((_p)->Hdr.ClassCode[1] == (s)))
267 #define IS_CLASS3(_p, c, s, p) (IS_CLASS2 (_p, c, s) && ((_p)->Hdr.ClassCode[0] == (p)))
269 #define IS_PCI_DISPLAY(_p) IS_CLASS1 (_p, PCI_CLASS_DISPLAY)
    [all...]
  /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;
LookaheadStream.cs 76 _p = 0;
92 _p++;
94 if (_p == _data.Count && _markDepth == 0) {
115 int n = (_p + need - 1) - _data.Count + 1; // how many more elements we need?
147 if ((_p + k - 1) > _data.Count)
161 _lastMarker = _p; // track where we are in buffer, not absolute token index
187 _p = index;
  /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;
LookaheadStream.cs 91 _p = 0;
108 _p++;
110 if ( _p == _data.Count && _markDepth == 0 )
134 int n = ( _p + need - 1 ) - _data.Count + 1; // how many more elements we need?
173 if ((_p + k - 1) > _data.Count)
190 _lastMarker = _p; // track where we are in buffer, not absolute token index
223 _p = index;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/IndustryStandard/
pci22.h 256 #define IS_CLASS1(_p, c) ((_p)->Hdr.ClassCode[2] == (c))
257 #define IS_CLASS2(_p, c, s) (IS_CLASS1 (_p, c) && ((_p)->Hdr.ClassCode[1] == (s)))
258 #define IS_CLASS3(_p, c, s, p) (IS_CLASS2 (_p, c, s) && ((_p)->Hdr.ClassCode[0] == (p)))
260 #define IS_PCI_DISPLAY(_p) IS_CLASS1 (_p, PCI_CLASS_DISPLAY)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fgetstr.c 118 if ((p = memchr((void *)fp->_p, sep, (size_t)fp->_r)) != NULL) {
127 ret = (char *)fp->_p;
128 *lenp = len = p - fp->_p;
131 fp->_p = p;
155 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
160 if ((p = memchr((void *)fp->_p, sep, (size_t)fp->_r)) == NULL)
165 diff = p - fp->_p;
169 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
172 fp->_p = p;

Completed in 833 milliseconds

1 2 3 4 5 6 7 8 91011