• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/libunwind-35.3/src/

Lines Matching defs:INLINE

33 #define INLINE	__attribute__((always_inline))
35 #define INLINE
61 static uint16_t get16(const uint16_t& from) INLINE { return OSReadBigInt16(&from, 0); }
62 static void set16(uint16_t& into, uint16_t value) INLINE { OSWriteBigInt16(&into, 0, value); }
64 static uint32_t get32(const uint32_t& from) INLINE { return OSReadBigInt32(&from, 0); }
65 static void set32(uint32_t& into, uint32_t value) INLINE { OSWriteBigInt32(&into, 0, value); }
67 static uint64_t get64(const uint64_t& from) INLINE { return OSReadBigInt64(&from, 0); }
68 static void set64(uint64_t& into, uint64_t value) INLINE { OSWriteBigInt64(&into, 0, value); }
71 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
73 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
76 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> (32-firstBit-bitCount)) & ((1<<bitCount)-1)); }
78 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = into;
90 static uint16_t get16(const uint16_t& from) INLINE { return OSReadLittleInt16(&from, 0); }
91 static void set16(uint16_t& into, uint16_t value) INLINE { OSWriteLittleInt16(&into, 0, value); }
93 static uint32_t get32(const uint32_t& from) INLINE { return OSReadLittleInt32(&from, 0); }
94 static void set32(uint32_t& into, uint32_t value) INLINE { OSWriteLittleInt32(&into, 0, value); }
96 static uint64_t get64(const uint64_t& from) INLINE { return OSReadLittleInt64(&from, 0); }
97 static void set64(uint64_t& into, uint64_t value) INLINE { OSWriteLittleInt64(&into, 0, value); }
100 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
102 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
105 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> firstBit) & ((1<<bitCount)-1)); }
107 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = into;
123 static uint64_t getP(const uint_t& from) INLINE { return _E::get32(from); }
124 static void setP(uint_t& into, uint64_t value) INLINE { _E::set32(into, value); }
135 static uint64_t getP(const uint_t& from) INLINE { return _E::get64(from); }
136 static void setP(uint_t& into, uint64_t value) INLINE { _E::set64(into, value); }