HomeSort by relevance Sort by last modified time
    Searched refs:pValue (Results 51 - 75 of 295) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/downmix/
EffectDownmix.h 96 int Downmix_setParameter(downmix_object_t *pDownmixer, int32_t param, uint32_t size, void *pValue);
97 int Downmix_getParameter(downmix_object_t *pDownmixer, int32_t param, uint32_t *pSize, void *pValue);
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 119 void setValue(ValueType pValue) { m_Value = pValue; }
  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 67 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) {
74 construct(data, pValue);
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties_parser.c 255 uint8_t* pValue;
275 &pValue,
302 if (pValue == NULL)
361 memcpy(pValueZ, pValue, nValueLength);
373 pProperty->pValue=pValueZ;
504 return pProperty->pValue;
512 char* pValue=SMCPropGetSystemProperty(pConfFile,pPropertyName);
514 if (libString2GetStringAsInt(pValue, &nValue) == S_SUCCESS)
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.c 58 static void FlipDWord (EAS_U32 *pValue)
63 p = (EAS_U8*) pValue;
65 *pValue = temp;
79 static void FlipWord (EAS_U16 *pValue)
84 p = (EAS_U8*) pValue;
86 *pValue = temp;
  /external/testng/doc/
banner.js 11 // @param pValue the string that should apear as the value
13 function writeTD(pCurrentPage, pHRef, pValue)
20 document.write(pValue)
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.h 38 virtual void setEntryValue(Fragment* entry, uint64_t pValue) = 0;
95 virtual Fragment* createEntry(uint64_t pValue, SectionData* pParent) = 0;
229 virtual void setEntryValue(Fragment* entry, uint64_t pValue);
231 virtual Fragment* createEntry(uint64_t pValue, SectionData* pParent);
247 virtual void setEntryValue(Fragment* entry, uint64_t pValue);
249 virtual Fragment* createEntry(uint64_t pValue, SectionData* pParent);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
locationapi.h 53 STDMETHOD_(HRESULT,GetValue)(THIS_ REFPROPERTYKEY pKey,PROPVARIANT *pValue) PURE;
63 #define ILocationReport_GetValue(This,pKey,pValue) (This)->lpVtbl->GetValue(This,pKey,pValue)
80 STDMETHOD_(HRESULT,GetValue)(THIS_ REFPROPERTYKEY pKey,PROPVARIANT *pValue) PURE;
99 #define ICivicAddressReport_GetValue(This,pKey,pValue) (This)->lpVtbl->GetValue(This,pKey,pValue)
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 221 v8::Local<v8::Value> pValue);
237 int FXJS_ToInt32(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue);
238 bool FXJS_ToBoolean(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue);
239 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue);
241 v8::Local<v8::Value> pValue);
243 v8::Local<v8::Value> pValue);
245 v8::Local<v8::Value> pValue);
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorus.c 44 static EAS_RESULT ChorusGetParam (EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue);
421 * *pValue - pointer to variable to hold retrieved value
430 static EAS_RESULT ChorusGetParam (EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue)
439 *pValue = (EAS_I32) p->bypass;
442 *pValue = (EAS_I8) p->m_nCurrentChorus;
445 *pValue = (EAS_I32) p->m_nRate;
448 *pValue = (EAS_I32) p->m_nDepth;
451 *pValue = (EAS_I32) p->m_nLevel;
469 * *pValue - new paramter value
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 403 LDSymbol::ValueType pValue,
435 frag = FragmentRef::Create(*pSection, pValue);
438 name, pType, pDesc, pBind, pSize, pValue, frag, pVis);
444 pInput, name, pType, pDesc, pBind, pSize, pValue, pVis);
459 LDSymbol::ValueType pValue,
485 pValue,
498 input_sym->setValue(pValue);
523 output_sym->setValue(pValue);
534 LDSymbol::ValueType pValue,
560 pValue,
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_basic.cpp 225 CPDF_Object* pValue = LookupValue(sName);
226 if (!pValue) {
230 pValue = pDests->GetElementValue(sName);
232 if (!pValue)
234 if (CPDF_Array* pArray = pValue->AsArray())
236 if (CPDF_Dictionary* pDict = pValue->AsDictionary())
480 CPDF_Object* pValue = NULL;
483 pValue = numberTree.LookupValue(n);
484 if (pValue) {
489 if (pValue) {
    [all...]
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8.cpp 660 v8::Local<v8::Value> pValue) {
663 if (pArray->Set(pIsolate->GetCurrentContext(), index, pValue).IsNothing())
728 int FXJS_ToInt32(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) {
729 if (pValue.IsEmpty())
732 return pValue->ToInt32(context).ToLocalChecked()->Value();
735 bool FXJS_ToBoolean(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) {
736 if (pValue.IsEmpty())
739 return pValue->ToBoolean(context).ToLocalChecked()->Value();
742 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) {
743 if (pValue.IsEmpty()
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 183 int Reverb_setParameter (ReverbContext *pContext, void *pParam, void *pValue);
187 void *pValue);
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 141 int BassBoost_setParameter (EffectContext *pContext, void *pParam, void *pValue);
145 void *pValue);
146 int Virtualizer_setParameter (EffectContext *pContext, void *pParam, void *pValue);
150 void *pValue);
151 int Equalizer_setParameter (EffectContext *pContext, void *pParam, void *pValue);
155 void *pValue);
156 int Volume_setParameter (EffectContext *pContext, void *pParam, void *pValue);
160 void *pValue);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_script_imp.cpp 40 FXJSE_HVALUE pValue;
41 m_mapXFAToHValue.GetNextAssoc(ps, pXFAObj, pValue);
42 FXJSE_Value_Release(pValue);
67 void* pValue = NULL;
68 m_JSBuiltInObjects.GetNextAssoc(ps, bsKey, pValue);
69 if (pValue) {
70 FXJSE_Value_Release((FXJSE_HVALUE)pValue);
115 void* pValue;
116 m_JSBuiltInObjects.GetNextAssoc(ps, bsKey, pValue);
134 FXJSE_HVALUE pValue = pThisObject ? GetJSValueFromMap(pThisObject) : NULL;
    [all...]
xfa_basic_imp.h 13 void* pValue;
  /external/aac/libAACdec/src/
block.h 227 * \param pValue pointer to quantized value. The inverse quantized result is stored back here.
230 * \return the exponent of the result (mantissa) stored into *pValue.
233 int EvaluatePower43 ( FIXP_DBL *pValue,
240 value = *pValue;
258 *pValue = fMultDiv2 (invQVal, MantissaTable [lsb][exponent]) ;
  /external/pdfium/xfa/src/fdp/src/css/
fde_cssdeclaration.h 13 IFDE_CSSValue* pValue;
39 IFDE_CSSValue*& pValue,
139 IFDE_CSSValue* pValue,
  /frameworks/wilhelm/src/itf/
IMetadataExtraction.c 122 SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue)
126 if (NULL == pValue) {
133 index, valueSize, pValue);
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 86 uint8_t *pValue)
93 if ((psValueBuffer == NULL) || (pOffset == NULL) || (pValue == NULL))
121 psValueBuffer->buffer[offset] = pValue[i];
134 uint8_t *pValue)
140 if ((psValueBuffer == NULL) || (pCurrentOffset == NULL) || (pValue == NULL))
161 memcpy(psValueBuffer->buffer + offset, pValue, length);
  /external/icu/icu4c/source/tools/toolutil/
ucmstate.c 206 char *line, char **pKey, char **pValue) {
253 *pValue=s;
256 *pValue=s+1;
257 if(end>*pValue && *(end-1)=='"') {
264 if(uprv_strcmp(*pValue, "DBCS")==0) {
266 } else if(uprv_strcmp(*pValue, "SBCS")==0) {
268 } else if(uprv_strcmp(*pValue, "MBCS")==0) {
270 } else if(uprv_strcmp(*pValue, "EBCDIC_STATEFUL")==0) {
273 fprintf(stderr, "ucm error: unknown <uconv_class> %s\n", *pValue);
278 c=**pValue;
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
Document.cpp 606 v8::Local<v8::Value> pValue = FXJS_GetObjectElement(isolate, pObj, L"cURL");
607 if (!pValue.IsEmpty())
609 CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToCFXWideString();
611 pValue = FXJS_GetObjectElement(isolate, pObj, L"bFDF");
612 bFDF = CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToBool();
614 pValue = FXJS_GetObjectElement(isolate, pObj, L"bEmpty");
615 bEmpty = CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToBool()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
  /external/pdfium/xfa/src/fxfa/src/common/
xfa_utils.h 160 void* pValue = NULL;
161 return CFX_MapPtrToPtr::Lookup((void*)key, pValue);
180 void* pValue = NULL;
181 CFX_MapPtrToPtr::GetNextAssoc(rNextPosition, pKey, pValue);

Completed in 4142 milliseconds

1 23 4 5 6 7 8 91011>>