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

1 2

  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 35 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal)
37 char* data = (char*)malloc(pVal.size()+1);
38 strcpy(data, pVal.data());
39 m_Value = llvm::StringRef(data, pVal.size());
42 void StringEntry<llvm::StringRef>::setValue(const char* pVal)
44 size_t length = strlen(pVal);
46 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...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbemem.c 957 const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){
958 if( !pVal ) return 0;
960 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) );
962 assert( (pVal->flags & MEM_RowSet)==0 );
964 if( pVal->flags&MEM_Null ){
968 pVal->flags |= (pVal->flags & MEM_Blob)>>3;
969 expandBlob(pVal);
970 if( pVal->flags&MEM_Str )
    [all...]
test5.c 131 sqlite3_value *pVal;
153 pVal = sqlite3ValueNew(0);
160 sqlite3ValueSetStr(pVal, -1, z, enc_from, xDel);
168 sqlite3ValueSetStr(pVal, -1, z, enc_from, xDel);
171 z = (char *)sqlite3ValueText(pVal, enc_to);
172 len = sqlite3ValueBytes(pVal, enc_to) + (enc_to==SQLITE_UTF8?1:2);
175 sqlite3ValueFree(pVal);
vdbeapi.c 140 const void *sqlite3_value_blob(sqlite3_value *pVal){
141 Mem *p = (Mem*)pVal;
148 return sqlite3_value_text(pVal);
151 int sqlite3_value_bytes(sqlite3_value *pVal){
152 return sqlite3ValueBytes(pVal, SQLITE_UTF8);
154 int sqlite3_value_bytes16(sqlite3_value *pVal){
155 return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE);
157 double sqlite3_value_double(sqlite3_value *pVal){
158 return sqlite3VdbeRealValue((Mem*)pVal);
160 int sqlite3_value_int(sqlite3_value *pVal){
    [all...]
test1.c 1030 sqlite3_value *pVal;
1032 pVal = sqlite3ValueNew(db);
1033 sqlite3ValueSetStr(pVal, -1, "x_sqlite_exec", SQLITE_UTF8, SQLITE_STATIC);
1034 zUtf16 = sqlite3ValueText(pVal, SQLITE_UTF16NATIVE);
1041 sqlite3ValueFree(pVal);
    [all...]
test_tclvar.c 209 Tcl_Obj *pVal = Tcl_GetVar2Ex(interp, z1, *z2?z2:0, TCL_GLOBAL_ONLY);
210 sqlite3_result_text(ctx, Tcl_GetString(pVal), -1, SQLITE_TRANSIENT);
alter.c 690 sqlite3_value *pVal;
691 if( sqlite3ValueFromExpr(db, pDflt, SQLITE_UTF8, SQLITE_AFF_NONE, &pVal) ){
695 if( !pVal ){
699 sqlite3ValueFree(pVal);
where.c 654 sqlite3_value *pVal = 0;
680 pVal = sqlite3VdbeGetValue(pReprepare, iCol, SQLITE_AFF_NONE);
681 if( pVal && sqlite3_value_type(pVal)==SQLITE_TEXT ){
682 z = (char *)sqlite3_value_text(pVal);
721 sqlite3ValueFree(pVal);
    [all...]
tclsqlite.c 752 Tcl_Obj *pVal;
754 /* Set pVal to contain the i'th column of this row. */
758 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes);
764 pVal = Tcl_NewIntObj(v);
766 pVal = Tcl_NewWideIntObj(v);
772 pVal = Tcl_NewDoubleObj(r);
776 pVal = Tcl_NewStringObj("", 0);
781 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes);
785 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal);
922 Tcl_Obj *pVal;
    [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.
98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
150 pVal[getNumWords() - 1] &= mask;
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
297 delete[] pVal;
573 return &pVal[0];
636 if (pVal[i])
663 delete[] pVal;
709 pVal[0] |= RHS
    [all...]
  /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/LD/
Diagnostic.h 93 const char* findMatch(char pVal, const char* pBegin, const char* pEnd ) const;
  /external/chromium_org/third_party/sqlite/src/tool/
showwal.c 24 ** in the var-int. Write the var-int value into *pVal.
26 static int decodeVarint(const unsigned char *z, i64 *pVal){
31 if( (z[i]&0x80)==0 ){ *pVal = v; return i+1; }
34 *pVal = v;
showdb.c 24 ** in the var-int. Write the var-int value into *pVal.
26 static int decodeVarint(const unsigned char *z, i64 *pVal){
31 if( (z[i]&0x80)==0 ){ *pVal = v; return i+1; }
34 *pVal = v;
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 149 void setHasStaticTLS(bool pVal = true)
150 { 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/chromium_org/remoting/tools/winext/manifest/
rdp.h 316 HRESULT put_DesktopWidth(long pVal);
317 HRESULT get_DesktopWidth([out] long* pVal);
318 HRESULT put_DesktopHeight(long pVal);
319 HRESULT get_DesktopHeight([out] long* pVal);
    [all...]
  /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)),
  /external/mesa3d/src/mesa/program/
prog_parameter.c 267 gl_constant_value *pVal = paramList->ParameterValues[pos];
269 pVal[p->Size] = values[0];

Completed in 536 milliseconds

1 2