HomeSort by relevance Sort by last modified time
    Searched refs:pVal (Results 1 - 12 of 12) sorted by null

  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.h 65 * @param pVal the value of the property
68 int smcGetPropertyAsInt(char *pProp, int *pVal);
smc_properties.c 306 * @param pVal the value of the property
307 * @return 0 if found, else 1 (and pVal set to 0)
309 int smcGetPropertyAsInt(char *pProp, int *pVal)
314 *pVal = 0;
317 if (libString2GetStringAsInt(pStr, (uint32_t*)pVal) == S_SUCCESS)
321 *pVal = 0;
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_CharStar.c 128 * characters of pStrIn to a M4OSA_UInt32 value pVal, assuming a
133 * updated, and pVal is set to null.
134 * - in case of negative number, pStrOut is not updated, and pVal is
136 * - in case of numerical overflow, pVal is set to M4OSA_UINT32_MAX.
139 * @param pVal: (OUT) read value.
143 * @return M4ERR_PARAMETER: pStrIn or pVal is M4OSA_NULL.
152 M4OSA_UInt32* pVal,
160 "M4OSA_Char** %x,M4OSA_chrNumBase %d)",pStrIn,pVal,pStrOut,base);
163 M4OSA_DEBUG_IF2(M4OSA_NULL == pVal, M4ERR_PARAMETER,
185 *pVal = 0
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 76 pVal = getClearedMemory(getNumWords());
77 pVal[0] = val;
80 pVal[i] = -1ULL;
84 pVal = getMemory(getNumWords());
85 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE);
95 pVal = getClearedMemory(getNumWords());
98 // Copy the words from bigVal to pVal
99 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE);
129 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE)
    [all...]
  /external/valgrind/main/include/
pub_tool_wordfm.h 147 /*OUT*/UWord* pKey, /*OUT*/UWord* pVal );
208 Bool VG_(nextIterBag)( WordBag*, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount );
  /external/llvm/include/llvm/ADT/
APInt.h 77 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
80 uint64_t *pVal; ///< Used to store the >64 bits integer value.
95 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
144 pVal[getNumWords() - 1] &= mask;
151 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
278 delete [] pVal;
356 return APInt(N, makeArrayRef(pVal, getNumWords())).zext(getBitWidth())
516 return &pVal[0];
612 pVal[0] |= RHS;
    [all...]
  /external/valgrind/main/coregrind/
m_wordfm.c 764 Bool VG_(nextIterFM) ( WordFM* fm, /*OUT*/UWord* pKey, /*OUT*/UWord* pVal )
785 if (pVal) *pVal = n->val;
967 Bool VG_(nextIterBag)( WordBag* bag, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount )
969 return VG_(nextIterFM)( bag->fm, pVal, pCount );
  /external/valgrind/main/cachegrind/
cg_merge.c 95 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal );
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /external/clang/lib/AST/
Expr.cpp 438 C.Deallocate(pVal);
444 pVal = new (C) uint64_t[NumWords];
445 std::copy(Words, Words + NumWords, pVal);
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 230 milliseconds