| /netbsd-src/external/bsd/elftosb/dist/common/ |
| H A D | OptionDictionary.cpp | 85 OptionValue newValue; in setOption() local 102 newValue.m_isLocked = it->second.m_isLocked; in setOption() 106 newValue.m_value = value; in setOption() 107 m_options[name] = newValue; in setOption()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | Endian.h | 220 void operator=(value_type newValue) { 222 (void*)Value.buffer, newValue); 225 packed_endian_specific_integral &operator+=(value_type newValue) { 226 *this = *this + newValue; 230 packed_endian_specific_integral &operator-=(value_type newValue) { 231 *this = *this - newValue; 235 packed_endian_specific_integral &operator|=(value_type newValue) { 236 *this = *this | newValue; 240 packed_endian_specific_integral &operator&=(value_type newValue) { 241 *this = *this & newValue;
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
| H A D | StringBuilder.cc | 68 char *newValue = (char *) malloc (newCapacity); in expandCapacity() local 70 memcpy (newValue, value, count); in expandCapacity() 71 memset (newValue + count, 0, maxCapacity - count); in expandCapacity() 73 value = newValue; in expandCapacity() 81 char *newValue = (char *) malloc (count); in trimToSize() local 83 memcpy (newValue, value, count); in trimToSize() 85 value = newValue; in trimToSize()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
| H A D | StringBuilder.cc | 69 char *newValue = (char *) malloc (newCapacity); in expandCapacity() local 71 memcpy (newValue, value, count); in expandCapacity() 72 memset (newValue + count, 0, maxCapacity - count); in expandCapacity() 74 value = newValue; in expandCapacity() 82 char *newValue = (char *) malloc (count); in trimToSize() local 84 memcpy (newValue, value, count); in trimToSize() 86 value = newValue; in trimToSize()
|
| /netbsd-src/external/bsd/ntp/dist/sntp/unity/ |
| H A D | unity_fixture.c | 290 void UnityPointer_Set(void ** pointer, void * newValue) in UnityPointer_Set() argument 297 *pointer = newValue; in UnityPointer_Set()
|
| H A D | unity_fixture_internals.h | 37 void UnityPointer_Set(void ** ptr, void * newValue);
|
| /netbsd-src/external/gpl3/gcc/dist/libobjc/ |
| H A D | ivars.c | 109 object_setInstanceVariable (id object, const char *name, void *newValue) in object_setInstanceVariable() argument 121 *((id *)location) = (id)newValue; in object_setInstanceVariable()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libobjc/ |
| H A D | ivars.c | 109 object_setInstanceVariable (id object, const char *name, void *newValue) in object_setInstanceVariable() argument 121 *((id *)location) = (id)newValue; in object_setInstanceVariable()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/windows/ |
| H A D | registry.d | 1233 wchar[] newValue = new wchar[cchRequired]; in value_EXPAND_SZ() 1236 ExpandEnvironmentStringsW(srcTmp, newValue.ptr, to!DWORD(newValue.length)), in value_EXPAND_SZ() 1239 return newValue[0 .. count-1].to!string; // remove trailing 0 in value_EXPAND_SZ()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/windows/ |
| H A D | registry.d | 1232 wchar[] newValue = new wchar[cchRequired]; in value_EXPAND_SZ() 1235 ExpandEnvironmentStringsW(srcTmp, newValue.ptr, to!DWORD(newValue.length)), in value_EXPAND_SZ() 1238 return newValue[0 .. count-1].to!string; // remove trailing 0 in value_EXPAND_SZ()
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | ObjectiveCLiterals.rst | 381 object[idx] = newValue; 387 [object setObject:newValue atIndexedSubscript:idx]; 438 object[key] = newValue; 444 [object setObject:newValue forKeyedSubscript:key];
|
| /netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| H A D | runtime.h | 302 objc_EXPORT Ivar object_setInstanceVariable (id object, const char *name, void *newValue);
|
| /netbsd-src/external/gpl3/gcc/dist/libobjc/objc/ |
| H A D | runtime.h | 302 objc_EXPORT Ivar object_setInstanceVariable (id object, const char *name, void *newValue);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| H A D | array.d | 1822 auto newValue = mixin("oldValue "~op~" value"); in opIndexOpAssign() local 1824 if (newValue != oldValue) in opIndexOpAssign() 1826 if (newValue) data.ptr[div] |= (cast(size_t) 1 << rem); in opIndexOpAssign()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 2467 llvm::Value *newValue, in EmitARCStoreStrong() argument 2478 return EmitARCStoreStrongCall(dst.getAddress(*this), newValue, ignored); in EmitARCStoreStrong() 2484 newValue = EmitARCRetain(type, newValue); in EmitARCStoreStrong() 2491 EmitStoreOfScalar(newValue, dst); in EmitARCStoreStrong() 2496 return newValue; in EmitARCStoreStrong()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | array.d | 2107 auto newValue = mixin("oldValue "~op~" value"); 2109 if (newValue != oldValue) 2111 if (newValue) data.ptr[div] |= (cast(size_t) 1 << rem);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| H A D | iteration.d | 2702 @property void front(int newValue) in front() argument 2704 element = newValue; in front()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
| H A D | iteration.d | 4206 @property void front(int newValue) 4208 element = newValue;
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | DiagnosticSemaKinds.td | 4159 : Warning<"%0 attribute for 'subscript' setter must have a 'newValue:' parameter">, 4162 : Warning<"%0 attribute for 'subscript' setter cannot have multiple 'newValue:' parameters">, 4165 : Warning<"%0 attribute for 'subscript' getter cannot have a 'newValue:' parameter">,
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.c | 23845 sqlite3StatValueType newValue; in sqlite3StatusHighwater() local 23848 newValue = (sqlite3StatValueType)X; in sqlite3StatusHighwater() 23856 if( newValue>wsdStat.mxValue[op] ){ in sqlite3StatusHighwater() 23857 wsdStat.mxValue[op] = newValue; in sqlite3StatusHighwater()
|