• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/dyld-239.4/launch-cache/

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 int32_t get32(const int32_t& from) INLINE { return OSReadBigInt32(&from, 0); }
68 static void set32(int32_t& into, int32_t value) INLINE { OSWriteBigInt32(&into, 0, value); }
70 static uint64_t get64(const uint64_t& from) INLINE { return OSReadBigInt64(&from, 0); }
71 static void set64(uint64_t& into, uint64_t value) INLINE { OSWriteBigInt64(&into, 0, value); }
74 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
76 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
79 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> (32-firstBit-bitCount)) & ((1<<bitCount)-1)); }
81 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = into;
93 static uint16_t get16(const uint16_t& from) INLINE { return OSReadLittleInt16(&from, 0); }
94 static void set16(uint16_t& into, uint16_t value) INLINE { OSWriteLittleInt16(&into, 0, value); }
96 static uint32_t get32(const uint32_t& from) INLINE { return OSReadLittleInt32(&from, 0); }
97 static void set32(uint32_t& into, uint32_t value) INLINE { OSWriteLittleInt32(&into, 0, value); }
99 static int32_t get32(const int32_t& from) INLINE { return OSReadLittleInt32(&from, 0); }
100 static void set32(int32_t& into, int32_t value) INLINE { OSWriteLittleInt32(&into, 0, value); }
102 static uint64_t get64(const uint64_t& from) INLINE { return OSReadLittleInt64(&from, 0); }
103 static void set64(uint64_t& into, uint64_t value) INLINE { OSWriteLittleInt64(&into, 0, value); }
106 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
108 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
111 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> firstBit) & ((1<<bitCount)-1)); }
113 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = into;
129 static uint64_t getP(const uint_t& from) INLINE { return _E::get32(from); }
130 static void setP(uint_t& into, uint64_t value) INLINE { _E::set32(into, value); }
147 static uint64_t getP(const uint_t& from) INLINE { return _E::get64(from); }
148 static void setP(uint_t& into, uint64_t value) INLINE { _E::set64(into, value); }