HomeSort by relevance Sort by last modified time
    Searched full:pvalue (Results 1 - 25 of 422) 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) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
portabledevicetypes.h 91 PROPVARIANT *pValue) = 0;
95 const PROPVARIANT *pValue) = 0;
99 PROPVARIANT *pValue) = 0;
107 LPWSTR *pValue) = 0;
115 ULONG *pValue) = 0;
123 LONG *pValue) = 0;
131 ULONGLONG *pValue) = 0;
139 LONGLONG *pValue) = 0;
147 FLOAT *pValue) = 0;
155 HRESULT *pValue) = 0
    [all...]
tom.h 162 virtual HRESULT WINAPI GetSaved(__LONG32 *pValue) = 0;
164 virtual HRESULT WINAPI GetDefaultTabStop(float *pValue) = 0;
192 HRESULT (WINAPI *GetSaved)(ITextDocument *This,__LONG32 *pValue);
194 HRESULT (WINAPI *GetDefaultTabStop)(ITextDocument *This,float *pValue);
224 #define ITextDocument_GetSaved(This,pValue) (This)->lpVtbl->GetSaved(This,pValue)
226 #define ITextDocument_GetDefaultTabStop(This,pValue) (This)->lpVtbl->GetDefaultTabStop(This,pValue)
249 HRESULT WINAPI ITextDocument_GetSaved_Proxy(ITextDocument *This,__LONG32 *pValue);
253 HRESULT WINAPI ITextDocument_GetDefaultTabStop_Proxy(ITextDocument *This,float *pValue);
    [all...]
wdsbp.h 24 PVOID pValue
58 PVOID pValue,
  /frameworks/compile/mclinker/lib/Target/
ELFAttributeData.cpp 35 bool ELFAttributeData::ReadValue(ELFAttributeValue& pValue, const char* &pBuf,
39 if (pValue.isIntValue()) {
42 pValue.setIntValue(static_cast<unsigned int>(int_value));
52 if (pValue.isStringValue()) {
53 pValue.setStringValue(pBuf);
55 size_t size = pValue.getStringValue().length() + 1 /* '\0' */;
65 const ELFAttributeValue& pValue,
72 if (pValue.isIntValue())
73 leb128::encode<uint32_t>(pBuf, pValue.getIntValue());
75 if (pValue.isStringValue())
    [all...]
ELFAttributeValue.cpp 54 bool ELFAttributeValue::equals(const ELFAttributeValue& pValue) const
56 if ((pValue.type() != m_Type) || isUninitialized())
59 if (isIntValue() && (m_IntValue != pValue.getIntValue()))
62 if (isStringValue() && (m_StringValue != pValue.getStringValue()))
  /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 34 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const;
75 operator<<(const MsgHandler& pHandler, int pValue)
77 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
82 operator<<(const MsgHandler& pHandler, unsigned int pValue)
84 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
89 operator<<(const MsgHandler& pHandler, long pValue)
91 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
96 operator<<(const MsgHandler& pHandler, unsigned long pValue)
98 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
103 operator<<(const MsgHandler& pHandler, unsigned long long pValue)
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
app.cpp 348 v8::Handle<v8::Value> pValue = JS_GetObjectElement(isolate, pObj, L"cMsg");
349 swMsg = CJS_Value(isolate,pValue,VT_unknown).operator CFX_WideString();
351 pValue = JS_GetObjectElement(isolate,pObj,L"cTitle");
352 swTitle = CJS_Value(isolate, pValue,VT_unknown).operator CFX_WideString();
354 pValue = JS_GetObjectElement(isolate,pObj,L"nIcon");
355 iIcon = (int)CJS_Value(isolate,pValue,VT_unknown);
357 pValue = JS_GetObjectElement(isolate,pObj,L"nType");
358 iType = (int)CJS_Value(isolate,pValue,VT_unknown);
367 CJS_Value* pValue = new CJS_Value(isolate);
369 // pValue = new CJS_Value(isolate);
    [all...]
Document.cpp 845 v8::Handle<v8::Value> pValue = JS_GetObjectElement(isolate,pObj, L"cURL");
846 if (!pValue.IsEmpty())
847 strURL = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue));
848 pValue = JS_GetObjectElement(isolate,pObj, L"bFDF");
849 bFDF = CJS_Value(isolate,pValue, GET_VALUE_TYPE(pValue));
850 pValue = JS_GetObjectElement(isolate,pObj, L"bEmpty");
851 bEmpty = CJS_Value(isolate,pValue, GET_VALUE_TYPE(pValue));
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 24 size_t encode(ByteType *&pBuf, IntType pValue);
37 size_t size(IntType pValue) {
39 while (pValue > 0x80) {
40 pValue >>= 7;
53 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
56 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
62 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
65 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
97 size_t encode(char *&pBuf, IntType pValue) {
98 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
    [all...]
Allocators.h 39 static void construct(value_type* pPtr, const value_type& pValue)
40 { new (pPtr) value_type(pValue); }
78 static void construct(value_type* pPtr, const value_type& pValue)
79 { new (pPtr) value_type(pValue); }
129 // pPtr, and using its copy constructor to initialized its value to pValue.
132 // @param pValue the value to be constructed
133 void construct(pointer pPtr, const_reference pValue)
134 { chunk_type::construct(pPtr, pValue); }
138 // pValue.
371 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/pdfium/core/src/fpdfdoc/
doc_formfield.cpp 307 CPDF_Object* pValue = FPDF_GetFieldAttr(m_pDict, bDefault ? "DV" : "V");
308 if (pValue == NULL) {
311 pValue = FPDF_GetFieldAttr(m_pDict, "V");
313 if (pValue == NULL && m_Type != Text) {
314 pValue = FPDF_GetFieldAttr(m_pDict, "DV");
317 if (pValue == NULL) {
321 switch (pValue->GetType()) {
324 return pValue->GetUnicodeText();
326 pValue = ((CPDF_Array*)pValue)->GetElementValue(0);
    [all...]
  /external/lldb/scripts/Python/
python-wrapper.swig 232 PyObject* pvalue = NULL;
233 pvalue = pfunc(sb_frame, sb_bp_loc, session_dict = FindSessionDictionary(session_dictionary_name));
237 if (pvalue == Py_False)
240 Py_XDECREF (pvalue);
272 PyObject* pvalue = NULL;
273 pvalue = pfunc(sb_frame, sb_wp, session_dict = FindSessionDictionary(session_dictionary_name));
277 if (pvalue == Py_False)
280 Py_XDECREF (pvalue);
330 PyObject *session_dict = (PyObject*)session_dictionary, *pfunc_impl = NULL, *pvalue = NULL;
365 pvalue = pfunc(sb_value,session_dict);
    [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) */
sparc_atomic64.s 5 ! int _STLP_atomic_exchange (void *pvalue, int value)
26 ! int _STLP_atomic_increment (void *pvalue)
46 ! /* int _STLP_atomic_decrement (void *pvalue) */
  /ndk/sources/cxx-stl/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) */
sparc_atomic64.s 5 ! int _STLP_atomic_exchange (void *pvalue, int value)
26 ! int _STLP_atomic_increment (void *pvalue)
46 ! /* int _STLP_atomic_decrement (void *pvalue) */
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlinit.swg 68 sv_setpv(sv, (const char *) swig_constants[i].pvalue);
71 SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0);
74 SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
  /frameworks/compile/mclinker/include/mcld/Target/
GOT.h 41 Entry(uint64_t pValue, SectionData* pParent)
43 f_Value(pValue) {
51 void setValue(uint64_t pValue)
52 { f_Value = pValue; }
ELFAttributeValue.h 97 bool equals(const ELFAttributeValue& pValue) const;
99 bool operator==(const ELFAttributeValue& pValue) const
100 { return equals(pValue); }
101 bool operator!=(const ELFAttributeValue& pValue) const
102 { return !equals(pValue); }
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
351 // pValue - pointer to variable to hold retrieved value
355 // *pValue updated with parameter value
363 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue)
419 *(uint16_t *)pValue = (uint16_t)kNumBands;
420 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
424 *(int16_t *)pValue = -9600;
425 *((int16_t *)pValue + 1) = 4800;
427 *(int32_t *)pValue, *((int32_t *)pValue + 1))
    [all...]

Completed in 1206 milliseconds

1 2 3 4 5 6 7 8 91011>>