Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h231 void operator=(value_type newValue) {
233 (void*)Value.buffer, newValue);
236 packed_endian_specific_integral &operator+=(value_type newValue) {
237 *this = *this + newValue;
241 packed_endian_specific_integral &operator-=(value_type newValue) {
242 *this = *this - newValue;
246 packed_endian_specific_integral &operator|=(value_type newValue) {
247 *this = *this | newValue;
251 packed_endian_specific_integral &operator&=(value_type newValue) {
252 *this = *this & newValue;
/freebsd/contrib/ntp/sntp/unity/
H A Dunity_fixture_internals.h35 void UnityPointer_Set(void ** ptr, void * newValue);
H A Dunity_fixture.c288 void UnityPointer_Set(void ** pointer, void * newValue) in UnityPointer_Set() argument
295 *pointer = newValue; in UnityPointer_Set()
/freebsd/contrib/llvm-project/libunwind/src/
H A DDwarfParser.hpp107 int64_t newValue, PrologInfo &initialState) { in setRegister()
110 savedRegisters[reg].value = newValue; in setRegister()
117 void setRegisterValue(uint64_t reg, int64_t newValue, in setRegisterValue()
120 savedRegisters[reg].value = newValue; in setRegisterValue()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp2500 llvm::Value *newValue, in EmitARCStoreStrong() argument
2511 return EmitARCStoreStrongCall(dst.getAddress(), newValue, ignored); in EmitARCStoreStrong()
2517 newValue = EmitARCRetain(type, newValue); in EmitARCStoreStrong()
2524 EmitStoreOfScalar(newValue, dst); in EmitARCStoreStrong()
2529 return newValue; in EmitARCStoreStrong()
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.js1633 QTIP = $.fn.qtip = function(options, notation, newValue)
1659 if(newValue !== undefined || $.isPlainObject(notation)) {
1660 api.set(notation, newValue);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td4610 : Warning<"%0 attribute for 'subscript' setter must have a 'newValue:' parameter">,
4613 : Warning<"%0 attribute for 'subscript' setter cannot have multiple 'newValue:' parameters">,
4616 : Warning<"%0 attribute for 'subscript' getter cannot have a 'newValue:' parameter">,
/freebsd/contrib/sqlite3/
H A Dsqlite3.c23933 sqlite3StatValueType newValue; in sqlite3StatusHighwater() local
23936 newValue = (sqlite3StatValueType)X; in sqlite3StatusHighwater()
23944 if( newValue>wsdStat.mxValue[op] ){ in sqlite3StatusHighwater()
23945 wsdStat.mxValue[op] = newValue; in sqlite3StatusHighwater()