Searched refs:INLINE (Results 1 - 25 of 100) sorted by relevance

1234

/macosx-10.10.1/bootp-298/bootplib/
H A Dsymbol_scope.h12 #ifndef INLINE
13 #define INLINE static __inline__ macro
14 #endif /* INLINE */
H A DDHCPDUID.h82 INLINE uint16_t
88 INLINE void
99 INLINE uint16_t
106 INLINE void
113 INLINE uint32_t
120 INLINE void
127 INLINE uint16_t
134 INLINE void
141 INLINE uint16_t
148 INLINE voi
[all...]
H A Dnbo.h42 INLINE void
57 INLINE uint16_t
73 INLINE void
89 INLINE uint32_t
H A DDHCPv6Options.h77 INLINE int
83 INLINE void
90 INLINE int
96 INLINE void
102 INLINE const uint8_t *
203 INLINE uint32_t
209 INLINE void
216 INLINE uint32_t
222 INLINE void
229 INLINE uint32_
[all...]
H A DIPConfigurationLog.h53 INLINE const char *
H A Dutil.h57 INLINE in_addr_t
63 INLINE struct in_addr
72 INLINE boolean_t
97 INLINE boolean_t
110 INLINE boolean_t
/macosx-10.10.1/configd-699.1.5/IPMonitorControl/
H A Dsymbol_scope.h12 #ifndef INLINE
13 #define INLINE static __inline__ macro
14 #endif /* INLINE */
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A Dsymbol_scope.h16 #ifndef INLINE
17 #define INLINE static __inline__ macro
18 #endif /* INLINE */
H A Dnbo.h44 INLINE void
59 INLINE uint16_t
75 INLINE void
91 INLINE uint32_t
H A DEAPLog.h48 INLINE const char *
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DInline.h29 #define INLINE __attribute__((always_inline)) inline macro
H A DPerProcess.h74 INLINE T* PerProcess<T>::getFastCase()
80 INLINE T* PerProcess<T>::get()
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DCacheFileAbstraction.hpp35 const char* magic() const INLINE { return fields.magic; }
36 void set_magic(const char* value) INLINE { memcpy(fields.magic, value, 16); }
38 uint32_t mappingOffset() const INLINE { return E::get32(fields.mappingOffset); }
39 void set_mappingOffset(uint32_t value) INLINE { E::set32(fields.mappingOffset, value); }
41 uint32_t mappingCount() const INLINE { return E::get32(fields.mappingCount); }
42 void set_mappingCount(uint32_t value) INLINE { E::set32(fields.mappingCount, value); }
44 uint32_t imagesOffset() const INLINE { return E::get32(fields.imagesOffset); }
45 void set_imagesOffset(uint32_t value) INLINE { E::set32(fields.imagesOffset, value); }
47 uint32_t imagesCount() const INLINE { return E::get32(fields.imagesCount); }
48 void set_imagesCount(uint32_t value) INLINE {
[all...]
H A DMachOFileAbstraction.hpp131 uint32_t cmd() const INLINE { return E::get32(command.cmd); }
132 void set_cmd(uint32_t value) INLINE { E::set32(command.cmd, value); }
134 uint32_t cmdsize() const INLINE { return E::get32(command.cmdsize); }
135 void set_cmdsize(uint32_t value) INLINE { E::set32(command.cmdsize, value); }
155 uint32_t cmd() const INLINE { return E::get32(segment.fields.cmd); }
156 void set_cmd(uint32_t value) INLINE { E::set32(segment.fields.cmd, value); }
158 uint32_t cmdsize() const INLINE { return E::get32(segment.fields.cmdsize); }
159 void set_cmdsize(uint32_t value) INLINE { E::set32(segment.fields.cmdsize, value); }
161 const char* segname() const INLINE { return segment.fields.segname; }
162 void set_segname(const char* value) INLINE { strncp
[all...]
H A DFileAbstraction.hpp33 #define INLINE __attribute__((always_inline)) macro
35 #define INLINE macro
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 { OSWriteBigInt6
[all...]
H A DObjCLegacyAbstraction.hpp33 uint32_t getFlags() INLINE { return A::P::E::get32(flags); }
35 bool supportsGCFlagSet() INLINE { return getFlags() & OBJC_IMAGE_SUPPORTS_GC; }
36 bool requiresGCFlagSet() INLINE { return getFlags() & OBJC_IMAGE_REQUIRES_GC; }
38 void setFlag(uint32_t bits) INLINE { uint32_t old = A::P::E::get32(flags); A::P::E::set32(flags, old | bits); }
39 void setOptimizedByDyld() INLINE { setFlag(1<<3); }
48 uint32_t getName() const INLINE { return A::P::E::get32(method_name); }
49 void setName(uint32_t newName) INLINE { A::P::E::set32(method_name, newName); }
59 uint32_t getCount() const INLINE { return A::P::E::get32(method_count); }
60 void setFixedUp(bool fixed) INLINE { A::P::E::set32(obsolete, fixed ? OBJC_FIXED_UP : 0); }
78 struct objc_class<A> *getIsa(SharedCache<A> *cache) const INLINE { retur
[all...]
/macosx-10.10.1/libunwind-35.3/src/
H A DFileAbstraction.hpp33 #define INLINE __attribute__((always_inline)) macro
35 #define INLINE macro
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_
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/dosdjgpp/
H A Dport.h21 #define INLINE __inline__ macro
23 #define INLINE inline macro
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dstdc.h77 # define INLINE inline macro
79 # define INLINE macro
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A Dipconfigd_globals.h49 INLINE void
H A Dtimer.h53 INLINE CFAbsoluteTime
/macosx-10.10.1/bootp-298/ipconfiglib/
H A DIPConfigurationServiceInternal.h58 INLINE CFStringRef
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djmorecfg.h331 /* If your compiler supports inline functions, define INLINE
335 #ifndef INLINE
337 #define INLINE __inline__ macro
339 #ifndef INLINE
340 #define INLINE /* default is to define it as empty */ macro
H A Djconfig.cfg31 #undef INLINE
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtiffcomp.h148 * set INLINE appropriately to get the known hotspots
153 #define INLINE __inline__ macro
155 #define INLINE inline macro
158 #define INLINE macro

Completed in 225 milliseconds

1234