Searched refs:inValue (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSNumber.cpp52 bool OSNumber::init(unsigned long long inValue, unsigned int newNumberOfBits) argument
58 value = (inValue & sizeMask);
120 void OSNumber::addValue(signed long long inValue) argument
122 value = ((value + inValue) & sizeMask);
125 void OSNumber::setValue(unsigned long long inValue) argument
127 value = (inValue & sizeMask);
H A DOSBoolean.cpp88 OSBoolean *OSBoolean::withBoolean(bool inValue) argument
90 return (inValue) ? kOSBooleanTrue : kOSBooleanFalse;
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DReadWriteSection.cpp3 uint32 WriteSection::put(uint32 inOffset, uint32 inValue) argument
5 uint32 aLength = CheckUInt32Add(inOffset, sizeof(inValue));
12 *reinterpret_cast<uint32 *>(mAddress + inOffset) = htonl(inValue);
H A DReadWriteSection.h190 uint32 put(uint32 inOffset, uint32 inValue);
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DReadWriteSection.cpp3 uint32 WriteSection::put(uint32 inOffset, uint32 inValue) argument
5 uint32 aLength = CheckUInt32Add(inOffset, sizeof(inValue));
12 *reinterpret_cast<uint32 *>(mAddress + inOffset) = htonl(inValue);
H A DReadWriteSection.h190 uint32 put(uint32 inOffset, uint32 inValue);
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DFilteringArrayController.m388 ifValue: ( id ) inValue
393 if ( [ inValue isKindOfClass: [ NSArray class ] ] )
403 values = ( NSArray * ) inValue;
423 else if ( [ inValue isKindOfClass: [ NSNumber class ] ] )
428 string = [ [ inValue stringValue ] lowercaseString ];
442 else if ( [ inValue isKindOfClass: [ NSString class ] ] )
447 string = [ inValue lowercaseString ];
/macosx-10.9.5/Security-55471.14.18/libsecurity_authorization/lib/
H A DAuthorizationPlugin.h230 const AuthorizationValue *inValue);
240 const AuthorizationValue *inValue);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSONObject.cpp643 JSValue inValue = unfiltered; local
650 ASSERT(inValue.isObject());
651 ASSERT(isJSArray(asObject(inValue)) || asObject(inValue)->inherits(&JSArray::s_info));
655 JSArray* array = asArray(inValue);
671 inValue = array->getIndexQuickly(index);
675 inValue = slot.getValue(m_exec, index);
677 inValue = jsUndefined();
680 if (inValue.isObject()) {
684 outValue = inValue;
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdb.cpp279 void CssmDbAttributeData::set(const CSSM_DB_ATTRIBUTE_INFO &inInfo, const CssmPolyData &inValue, argument
286 Value[0].Data = inAllocator.alloc<uint8>((UInt32)inValue.Length);
287 Value[0].Length = inValue.Length;
288 memcpy(Value[0].Data, inValue.Data, inValue.Length);
292 void CssmDbAttributeData::add(const CssmPolyData &inValue, Allocator &inAllocator) argument
295 CssmAutoData valueCopy(inAllocator, inValue);
H A Dcssmdb.h419 void set(const CSSM_DB_ATTRIBUTE_INFO &inInfo, const CssmPolyData &inValue,
433 void add(const CssmPolyData &inValue, Allocator &inAllocator);
549 const CssmPolyData &inValue, Allocator &inAllocator)
550 { attribute().set(inInfo, inValue, inAllocator); }
557 void add(const CssmPolyData &inValue, Allocator &inAllocator)
558 { attribute().add(inValue, inAllocator); }
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdb.cpp279 void CssmDbAttributeData::set(const CSSM_DB_ATTRIBUTE_INFO &inInfo, const CssmPolyData &inValue, argument
286 Value[0].Data = inAllocator.alloc<uint8>((UInt32)inValue.Length);
287 Value[0].Length = inValue.Length;
288 memcpy(Value[0].Data, inValue.Data, inValue.Length);
292 void CssmDbAttributeData::add(const CssmPolyData &inValue, Allocator &inAllocator) argument
295 CssmAutoData valueCopy(inAllocator, inValue);
H A Dcssmdb.h419 void set(const CSSM_DB_ATTRIBUTE_INFO &inInfo, const CssmPolyData &inValue,
433 void add(const CssmPolyData &inValue, Allocator &inAllocator);
549 const CssmPolyData &inValue, Allocator &inAllocator)
550 { attribute().set(inInfo, inValue, inAllocator); }
557 void add(const CssmPolyData &inValue, Allocator &inAllocator)
558 { attribute().add(inValue, inAllocator); }
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DQTPixelBuffer.cpp37 static OSStatus SetNumberValue(CFMutableDictionaryRef inDict, CFStringRef inKey, SInt32 inValue) argument
41 number = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &inValue);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DSerializedScriptValue.cpp833 JSValue inValue = in; local
838 ASSERT(isArray(inValue));
842 JSArray* inArray = asArray(inValue);
872 inValue = array->getDirectIndex(m_exec, index);
873 if (!inValue) {
880 if (dumpIfTerminal(inValue, terminalCode)) {
895 ASSERT(inValue.isObject());
898 JSObject* inObject = asObject(inValue);
925 inValue = getProperty(object, properties[index]);
929 if (!inValue) {
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/expat/xmltok/
H A Dxmltok_impl.c1447 enum { other, inName, inValue } state = inName; enumerator in enum:__anon13000
1449 int open = 0; /* defined when state == inValue;
1473 if (state != inValue) {
1476 state = inValue;
1487 if (state != inValue) {
1490 state = inValue;
1507 else if (state == inValue
1521 else if (state == inValue && nAtts < attsMax)
1526 if (state != inValue)
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmltok_impl.c1307 enum { other, inName, inValue } state = inName; enumerator in enum:__anon13398
1332 if (state != inValue) {
1334 state = inValue;
1343 if (state != inValue) {
1345 state = inValue;
1359 else if (state == inValue
1372 else if (state == inValue)
1377 if (state != inValue)
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A Dpmconfigd.c1043 int inValue)
1050 BatterySetNoPoll(inValue ? true:false);
1057 gTCPKeepAlive->overrideSec = inValue;
1063 TCPKeepAlive_adjustQuota(0, (CFTimeInterval)inValue);
1068 TCPKeepAlive_adjustQuota(inValue, 0.0);
1039 _io_pm_set_value_int( mach_port_t server, audit_token_t token, int selector, int inValue) argument
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/xml/expat/lib/
H A Dxmltok_impl.c1431 enum { other, inName, inValue } state = inName; enumerator in enum:__anon6235
1433 int open = 0; /* defined when state == inValue;
1457 if (state != inValue) {
1460 state = inValue;
1471 if (state != inValue) {
1474 state = inValue;
1491 else if (state == inValue
1505 else if (state == inValue && nAtts < attsMax)
1510 if (state != inValue)
/macosx-10.9.5/apr-30/apr-util/apr-util/xml/expat/lib/
H A Dxmltok_impl.c1431 enum { other, inName, inValue } state = inName; enumerator in enum:__anon6346
1433 int open = 0; /* defined when state == inValue;
1457 if (state != inValue) {
1460 state = inValue;
1471 if (state != inValue) {
1474 state = inValue;
1491 else if (state == inValue
1505 else if (state == inValue && nAtts < attsMax)
1510 if (state != inValue)
/macosx-10.9.5/expat-12/expat/lib/
H A Dxmltok_impl.c1434 enum { other, inName, inValue } state = inName; enumerator in enum:__anon8814
1436 int open = 0; /* defined when state == inValue;
1460 if (state != inValue) {
1463 state = inValue;
1474 if (state != inValue) {
1477 state = inValue;
1494 else if (state == inValue
1508 else if (state == inValue && nAtts < attsMax)
1513 if (state != inValue)
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/expat/
H A Dxmltok_impl.c1434 enum { other, inName, inValue } state = inName; enumerator in enum:__anon13025
1436 int open = 0; /* defined when state == inValue;
1460 if (state != inValue) {
1463 state = inValue;
1474 if (state != inValue) {
1477 state = inValue;
1494 else if (state == inValue
1508 else if (state == inValue && nAtts < attsMax)
1513 if (state != inValue)
/macosx-10.9.5/IOATAFamily-252.0.3/
H A DIOATAController.h260 void writeExtRegister( IOATARegPtr8 inRegister, UInt16 inValue );
H A DIOATAController.cpp2644 IOATAController::writeExtRegister( IOATARegPtr8 inRegister, UInt16 inValue )
2647 *inRegister = (UInt8)((inValue & 0xFF00) >> 8);
2649 *inRegister = (UInt8) (inValue & 0xFF);
/macosx-10.9.5/OpenAL-52.1/Source/OpenAL/
H A DoalSource.cpp59 inline bool zapBadness(Float32& inValue) argument
61 Float32 absInValue = fabs(inValue);
64 // inValue was one of the following: 0.0, infinity, denormal or NaN
65 inValue = 0.0;
76 inline bool zapBadnessForDopplerShift(Float32& inValue) argument
78 Float32 absInValue = fabs(inValue);
80 if (isnan(inValue) || (inValue == 0.0))
81 inValue = 1.0;
83 inValue
[all...]

Completed in 671 milliseconds

12