Searched refs:theValue (Results 1 - 12 of 12) sorted by path

/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/IAS/
H A DIrIASService.cpp631 TIASElement * TIASElement::tIASElement(ULong theValue) argument
637 if (obj && !obj->init_with_long(theValue)) {
711 Boolean TIASElement::init_with_long(ULong theValue) argument
721 return SetInteger(theValue);
768 Boolean TIASElement::SetInteger(ULong theValue) argument
772 valueOrBytes = htonl(theValue);
831 IrDAErr TIASElement::GetInteger(ULong *theValue) argument
836 *theValue = ntohl(valueOrBytes);
H A DIrIASService.h87 static TIASElement *tIASElement(ULong theValue); // create with integer value
95 IrDAErr GetInteger(ULong *theValue);
102 Boolean init_with_long(ULong theValue);
107 Boolean SetInteger(ULong theValue);
/macosx-10.9.5/CF-855.17/
H A DCFPlatform.c1073 int32_t OSAtomicAdd32Barrier( int32_t theAmount, volatile int32_t *theValue ) {
1074 return __sync_fetch_and_add(theValue, theAmount) + theAmount;
1077 bool OSAtomicCompareAndSwap32Barrier(int32_t oldValue, int32_t newValue, volatile int32_t *theValue) { argument
1078 return __sync_bool_compare_and_swap(theValue, oldValue, newValue);
1081 bool OSAtomicCompareAndSwap64Barrier(int64_t oldValue, int64_t newValue, volatile int64_t *theValue) { argument
1082 return __sync_bool_compare_and_swap(theValue, oldValue, newValue);
1095 int32_t OSAtomicAdd32( int32_t theAmount, volatile int32_t *theValue ) {
1096 return OSAtomicAdd32Barrier(theAmount, theValue);
1099 int32_t OSAtomicIncrement32(volatile int32_t *theValue) { argument
1100 return OSAtomicIncrement32Barrier(theValue);
1103 OSAtomicDecrement32(volatile int32_t *theValue) argument
[all...]
H A DCFWindowsUtilities.c66 CF_EXPORT int32_t OSAtomicAdd32Barrier( int32_t theAmount, volatile int32_t *theValue ) {
67 return (InterlockedExchangeAdd((volatile LONG *)theValue, theAmount) + theAmount);
70 CF_EXPORT bool OSAtomicCompareAndSwap32Barrier(int32_t oldValue, int32_t newValue, volatile int32_t *theValue) { argument
71 return oldValue == InterlockedCompareExchange((long *)theValue, newValue, oldValue);
74 CF_EXPORT int32_t OSAtomicAdd32( int32_t theAmount, volatile int32_t *theValue ) {
75 return (InterlockedExchangeAdd((volatile LONG *)theValue, theAmount) + theAmount);
78 CF_EXPORT int32_t OSAtomicIncrement32(volatile int32_t *theValue) { argument
79 return InterlockedIncrement((volatile long *)theValue);
82 CF_EXPORT int32_t OSAtomicDecrement32(volatile int32_t *theValue) { argument
83 return InterlockedDecrement((volatile long *)theValue);
[all...]
H A DCoreFoundation_Prefix.h159 int32_t OSAtomicIncrement32(volatile int32_t *theValue);
160 int32_t OSAtomicDecrement32(volatile int32_t *theValue);
162 int32_t OSAtomicAdd32( int32_t theAmount, volatile int32_t *theValue );
163 int32_t OSAtomicAdd32Barrier( int32_t theAmount, volatile int32_t *theValue );
164 bool OSAtomicCompareAndSwap32Barrier( int32_t oldValue, int32_t newValue, volatile int32_t *theValue );
351 CF_EXPORT int32_t OSAtomicIncrement32(volatile int32_t *theValue);
352 CF_EXPORT int32_t OSAtomicDecrement32(volatile int32_t *theValue);
354 CF_EXPORT int32_t OSAtomicAdd32( int32_t theAmount, volatile int32_t *theValue );
355 CF_EXPORT int32_t OSAtomicAdd32Barrier( int32_t theAmount, volatile int32_t *theValue );
356 CF_EXPORT bool OSAtomicCompareAndSwap32Barrier( int32_t oldValue, int32_t newValue, volatile int32_t *theValue );
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/pwr_mgt.subproj/
H A DIOPMAssertions.c398 IOReturn IOPMAssertionSetProperty(IOPMAssertionID theAssertion, CFStringRef theProperty, CFTypeRef theValue) argument
419 sendDict = CFDictionaryCreate(0, (const void **)&theProperty, (const void **)&theValue, 1,
H A DIOPMLib.h682 * @param theValue The property to set. It must be a CFNumber or CFString, as specified by the property key named in whichProperty.
689 IOReturn IOPMAssertionSetProperty(IOPMAssertionID theAssertion, CFStringRef theProperty, CFTypeRef theValue)
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLMeterElement.cpp174 double theValue = value(); local
179 if (theValue <= lowValue)
181 if (theValue <= highValue)
188 if (highValue <= theValue)
190 if (lowValue <= theValue)
198 if (lowValue <= theValue && theValue <= highValue)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/CellSPU/
H A DSPUISelLowering.cpp874 SDValue theValue = SN->getValue(); local
877 && (theValue.getOpcode() == ISD::AssertZext
878 || theValue.getOpcode() == ISD::AssertSext)) {
881 theValue = theValue.getOperand(0);
899 theValue);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dmetadata.m747 static int theValue[] = { 1, 3, 5, 7, 11, 13, 17, 19 };
748 return theValue;
753 static int theValue[20];
754 return theValue;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/test/
H A Dmetadata.m753 static int theValue[] = { 1, 3, 5, 7, 11, 13, 17, 19 };
754 return theValue;
759 static int theValue[20];
760 return theValue;
/macosx-10.9.5/xnu-2422.115.4/iokit/Families/IOSystemManagement/
H A DIOWatchDogTimer.cpp78 UInt32 theValue; local
88 theValue = theNumber->unsigned32BitValue();
89 if (theValue == 0) {
95 setWatchDogTimer(theValue);

Completed in 277 milliseconds