Home
last modified time | relevance | path

Searched refs:pVal (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp240 tcMultiply(Result.U.pVal, U.pVal, RHS.U.pVal, getNumWords()); in operator *()
246 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in andAssignSlowCase()
252 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in orAssignSlowCase()
258 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in xorAssignSlowCase()
279 return std::equal(U.pVal, U.pVal + getNumWords(), RHS.U.pVal); in equalSlowCase()
701 if ((U.pVal[i] & RHS.U.pVal[i]) != 0) in intersectsSlowCase()
709 if ((U.pVal[i] & ~RHS.U.pVal[i]) != 0) in isSubsetOfSlowCase()
920 Result.U.pVal[i] = U.pVal[i]; in trunc()
1613 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv()
1706 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, nullptr, Remainder.U.pVal); in urem()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h170 delete[] U.pVal; in ~APInt()
550 return &U.pVal[0]; in getRawData()
618 delete[] U.pVal;
641 U.pVal[0] = RHS;
671 U.pVal[0] &= RHS;
701 U.pVal[0] |= RHS;
730 U.pVal[0] ^= RHS;
1351 U.pVal[0] |= mask; in setBits()
1489 return U.pVal[0]; in getZExtValue()
1511 return int64_t(U.pVal[0]); in getSExtValue()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAPNumericStorage.h29 uint64_t *pVal; ///< Used to store the >64 bits integer value. member
44 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
H A DTemplateBase.h137 const uint64_t *pVal;
372 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
/freebsd-14.2/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c998 Tcl_Obj *pVal; in tclSqlFunc() local
1004 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes); in tclSqlFunc()
1010 pVal = Tcl_NewIntObj((int)v); in tclSqlFunc()
1012 pVal = Tcl_NewWideIntObj(v); in tclSqlFunc()
1018 pVal = Tcl_NewDoubleObj(r); in tclSqlFunc()
1022 pVal = Tcl_NewStringObj(p->pDb->zNull, -1); in tclSqlFunc()
1027 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes); in tclSqlFunc()
1031 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal); in tclSqlFunc()
/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c84456 assert( pVal && pVal->z && pVal->flags==(MEM_Str|MEM_Term) );
84457 sqlite3AtoF(pVal->z, &pVal->u.r, pVal->n, SQLITE_UTF8);
84484 pVal->u.r = -pVal->u.r;
84493 pVal->u.i = -pVal->u.i;
84625 assert( pVal==0 || pVal->db==db );
104610 nPMA = pVal->n + sqlite3VarintLen(pVal->n);
104668 memcpy(SRVAL(pNew), pVal->z, pVal->n);
133479 if( ALWAYS(pVal) && pVal->pSrc->nSrc>0 ){
171785 if( pVal && sqlite3_value_int(pVal)>0 ){
188669 *pVal = (i64)((u64)*pVal - iVal);
[all …]
H A Dsqlite3.h10125 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut);
10126 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut);
H A Dshell.c10792 sqlite3_value *pVal, in zipfileGetMode() argument
10905 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){ in zipfileGetTime()
10908 return (u32)sqlite3_value_int64(pVal); in zipfileGetTime()
12516 sqlite3_value *pVal; in expertColumn() local
12517 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn()
12518 if( pVal ){ in expertColumn()
12519 sqlite3_result_value(ctx, pVal); in expertColumn()
15862 *pVal = (sqlite3_int64)u; in dbdataGetVarint()
15875 *pVal = val; in dbdataGetVarintU32()
17022 sqlite3_value *pVal in recoverBindValue() argument
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DTemplateBase.cpp193 Integer.pVal = static_cast<uint64_t *>(Mem); in initFromIntegral()
H A DExpr.cpp922 C.Deallocate(pVal); in setIntValue()
928 pVal = new (C) uint64_t[NumWords]; in setIntValue()
929 std::copy(Words, Words + NumWords, pVal); in setIntValue()