HomeSort by relevance Sort by last modified time
    Searched full:pvalue (Results 1 - 25 of 277) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
typedef.c 4 typedef Value *PValue;
6 int get_value(PValue v) {
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) {
20 ByteType byte = pValue & 0x7f;
21 pValue >>= 7;
22 if (pValue)
26 } while (pValue);
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) {
37 if ((pValue & ~0x7f) == 0) {
38 *pBuf++ = static_cast<ByteType>(pValue);
40 } else if ((pValue & ~0x3fff) == 0){
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 56 int *pvalue )
64 *pvalue = (int) count;
75 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_WINDOW ? TRUE : FALSE;
79 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_BITMAP ? TRUE : FALSE;
83 *pvalue = pfi->pfd.dwFlags & PFD_NEED_PALETTE ? TRUE : FALSE;
87 *pvalue = pfi->pfd.dwFlags & PFD_NEED_SYSTEM_PALETTE ? TRUE : FALSE;
91 *pvalue = pfi->pfd.dwFlags & PFD_SWAP_COPY ? WGL_SWAP_COPY_ARB : WGL_SWAP_UNDEFINED_ARB;
95 *pvalue = FALSE;
99 *pvalue = 0;
103 *pvalue = 0
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 56 int *pvalue )
64 *pvalue = (int) count;
75 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_WINDOW ? TRUE : FALSE;
79 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_BITMAP ? TRUE : FALSE;
83 *pvalue = pfi->pfd.dwFlags & PFD_NEED_PALETTE ? TRUE : FALSE;
87 *pvalue = pfi->pfd.dwFlags & PFD_NEED_SYSTEM_PALETTE ? TRUE : FALSE;
91 *pvalue = pfi->pfd.dwFlags & PFD_SWAP_COPY ? WGL_SWAP_COPY_ARB : WGL_SWAP_UNDEFINED_ARB;
95 *pvalue = FALSE;
99 *pvalue = 0;
103 *pvalue = 0
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
MsgHandler.h 37 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const;
78 operator<<(const MsgHandler& pHandler, int pValue)
80 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
85 operator<<(const MsgHandler& pHandler, unsigned int pValue)
87 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
92 operator<<(const MsgHandler& pHandler, long pValue)
94 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
99 operator<<(const MsgHandler& pHandler, unsigned long pValue)
101 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
106 operator<<(const MsgHandler& pHandler, unsigned long long pValue)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 27 size_t encode(ByteType *&pBuf, IntType pValue);
40 size_t size(IntType pValue) {
42 while (pValue > 0x80) {
43 pValue >>= 7;
56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
59 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
65 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
68 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
100 size_t encode(char *&pBuf, IntType pValue) {
101 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
    [all...]
Allocators.h 42 static void construct(value_type* pPtr, const value_type& pValue)
43 { new (pPtr) value_type(pValue); }
81 static void construct(value_type* pPtr, const value_type& pValue)
82 { new (pPtr) value_type(pValue); }
132 // pPtr, and using its copy constructor to initialized its value to pValue.
135 // @param pValue the value to be constructed
136 void construct(pointer pPtr, const_reference pValue)
137 { chunk_type::construct(pPtr, pValue); }
141 // pValue.
374 void construct(pointer pObject, const DataType& pValue)
    [all...]
  /frameworks/wilhelm/src/android/
android_Effect.h 23 int32_t param, int32_t param2, void *pValue);
26 int32_t param, int32_t param2, void *pValue);
34 int32_t param, void *pValue);
37 int32_t param, void *pValue);
45 int32_t param, void *pValue);
48 int32_t param, void *pValue);
67 int32_t param, void *pValue);
70 int32_t param, void *pValue);
125 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize);
128 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize)
    [all...]
  /external/stlport/src/
sparc_atomic.s 7 ** int _STLP_atomic_exchange (void *pvalue, int value)
28 /* int _STLP_atomic_increment (void *pvalue) */
50 /* int _STLP_atomic_decrement (void *pvalue) */