summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2015-07-13 23:38:56 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2015-07-13 23:38:56 +0000
commit34a3f0935024a86d93abac44e2db84705d940c62 (patch)
tree0d06d61ba1f0cd9a12562ce6a12f1ae431f9f0b1 /lib
parentda2d19c6cd6314c73ae2049e3db03b443f01b190 (diff)
downloadclang-34a3f0935024a86d93abac44e2db84705d940c62.tar.gz
[Intrin.h] Make the variable names more consistent
No functionality change intended. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Headers/Intrin.h66
1 files changed, 32 insertions, 34 deletions
diff --git a/lib/Headers/Intrin.h b/lib/Headers/Intrin.h
index c908ca46a9..06bdc88f01 100644
--- a/lib/Headers/Intrin.h
+++ b/lib/Headers/Intrin.h
@@ -521,33 +521,31 @@ __popcnt(unsigned int _Value) {
return __builtin_popcount(_Value);
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittest(long const *__BitBase, long __BitPos) {
- return (*__BitBase >> __BitPos) & 1;
+_bittest(long const *_BitBase, long _BitPos) {
+ return (*_BitBase >> _BitPos) & 1;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandcomplement(long *__BitBase, long __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase ^ (1 << __BitPos);
- return __Res;
+_bittestandcomplement(long *_BitBase, long _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase ^ (1 << _BitPos);
+ return _Res;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandreset(long *__BitBase, long __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase & ~(1 << __BitPos);
- return __Res;
+_bittestandreset(long *_BitBase, long _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase & ~(1 << _BitPos);
+ return _Res;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandset(long *__BitBase, long __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase | (1 << __BitPos);
- return __Res;
+_bittestandset(long *_BitBase, long _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase | (1 << _BitPos);
+ return _Res;
}
-#if defined(__i386__) || defined(__x86_64__)
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_interlockedbittestandset(long volatile *__BitBase, long __BitPos) {
- return (__atomic_fetch_or(__BitBase, 1l << __BitPos, 5) >> __BitPos) & 1;
+_interlockedbittestandset(long volatile *_BitBase, long _BitPos) {
+ return (__atomic_fetch_or(_BitBase, 1l << _BitPos, 5) >> _BitPos) & 1;
}
-#endif
#ifdef __x86_64__
static __inline__ unsigned char __DEFAULT_FN_ATTRS
_BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask) {
@@ -569,30 +567,30 @@ __popcnt64(unsigned __int64 _Value) {
return __builtin_popcountll(_Value);
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittest64(__int64 const *__BitBase, __int64 __BitPos) {
- return (*__BitBase >> __BitPos) & 1;
+_bittest64(__int64 const *_BitBase, __int64 _BitPos) {
+ return (*_BitBase >> _BitPos) & 1;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandcomplement64(__int64 *__BitBase, __int64 __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase ^ (1ll << __BitPos);
- return __Res;
+_bittestandcomplement64(__int64 *_BitBase, __int64 _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase ^ (1ll << _BitPos);
+ return _Res;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandreset64(__int64 *__BitBase, __int64 __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase & ~(1ll << __BitPos);
- return __Res;
+_bittestandreset64(__int64 *_BitBase, __int64 _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase & ~(1ll << _BitPos);
+ return _Res;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_bittestandset64(__int64 *__BitBase, __int64 __BitPos) {
- unsigned char __Res = (*__BitBase >> __BitPos) & 1;
- *__BitBase = *__BitBase | (1ll << __BitPos);
- return __Res;
+_bittestandset64(__int64 *_BitBase, __int64 _BitPos) {
+ unsigned char _Res = (*_BitBase >> _BitPos) & 1;
+ *_BitBase = *_BitBase | (1ll << _BitPos);
+ return _Res;
}
static __inline__ unsigned char __DEFAULT_FN_ATTRS
-_interlockedbittestandset64(__int64 volatile *__BitBase, __int64 __BitPos) {
- return (__atomic_fetch_or(__BitBase, 1ll << __BitPos, 5) >> __BitPos) & 1;
+_interlockedbittestandset64(__int64 volatile *_BitBase, __int64 _BitPos) {
+ return (__atomic_fetch_or(_BitBase, 1ll << _BitPos, 5) >> _BitPos) & 1;
}
#endif
/*----------------------------------------------------------------------------*\