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

  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 34 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal)
36 char* data = (char*)malloc(pVal.size()+1);
37 strcpy(data, pVal.data());
38 m_Value = llvm::StringRef(data, pVal.size());
41 void StringEntry<llvm::StringRef>::setValue(const char* pVal)
43 size_t length = strlen(pVal);
45 strcpy(data, pVal);
  /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/av/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...]
  /frameworks/compile/mclinker/include/mcld/ADT/
StringEntry.h 54 void setValue(const DataType& pVal)
55 { m_Value = pVal; }
104 void setValue(const std::string& pVal)
105 { setValue(pVal.c_str()); }
107 void setValue(const char* pVal);
109 void setValue(llvm::StringRef& pVal);
  /external/llvm/lib/Support/
APInt.cpp 77 pVal = getClearedMemory(getNumWords());
78 pVal[0] = val;
81 pVal[i] = -1ULL;
85 pVal = getMemory(getNumWords());
86 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE);
96 pVal = getClearedMemory(getNumWords());
99 // Copy the words from bigVal to pVal
100 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE);
130 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 79 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
82 uint64_t *pVal; ///< Used to store the >64 bits integer value.
97 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
146 pVal[getNumWords() - 1] &= mask;
153 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
287 delete [] pVal;
540 return &pVal[0];
594 if (pVal[i])
619 delete [] pVal;
659 pVal[0] |= RHS
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Diagnostic.h 88 const char* findMatch(char pVal, const char* pBegin, const char* pEnd ) const;
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 38 const char* Diagnostic::findMatch(char pVal,
43 if (0 == depth && *pBegin == pVal)
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 295 void setHasStaticTLS(bool pVal = true) { m_bHasStaticTLS = pVal; }
  /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/clang/include/clang/AST/
TemplateBase.h 85 const uint64_t *pVal; ///< Used to store the >64 bits integer value.
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
Expr.h     [all...]
  /external/valgrind/main/cachegrind/
cg_merge.c 95 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal );
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 100 uint64_t helper_sign_extend(uint64_t pVal, uint64_t pOri_width)
104 return (pVal ^ sign_bit) - sign_bit;
  /external/clang/lib/AST/
Expr.cpp 611 C.Deallocate(pVal);
617 pVal = new (C) uint64_t[NumWords];
618 std::copy(Words, Words + NumWords, pVal);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 3202 milliseconds