HomeSort by relevance Sort by last modified time
    Searched defs:INLINE (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /external/libmpeg2/common/armv8/
icv_platform_macros.h 41 #define INLINE inline
43 static INLINE UWORD32 CLZ(UWORD32 u4_word)
86 #define INLINE inline
  /external/libmpeg2/common/mips/
icv_platform_macros.h 92 #define INLINE inline
  /external/libmpeg2/common/x86/
icv_platform_macros.h 92 #define INLINE inline
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 94 #ifndef inline
96 /* C++ supports inline keyword */
98 # define inline __inline__ macro
100 # define inline __inline macro
102 # define inline __inline macro
104 /* Intel compiler supports inline keyword */
106 # define inline __inline macro
108 /* C99 supports inline keyword */
110 /* C99 supports inline keyword */
112 # define inline macro
    [all...]
  /hardware/intel/img/psb_video/src/hwdefs/
img_defs.h 76 #define INLINE
80 #define INLINE
85 #define INLINE inline
86 #define FORCE_INLINE inline
88 #define INLINE __inline
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemDesc.java 69 private static final int INLINE = (1 << 9);
74 /** Bit position if this element type is an inline label. */
  /external/google-breakpad/src/third_party/libdisasm/
ia32_insn.c 25 # define INLINE
27 # define INLINE inline
31 static INLINE int32_t long_from_operand( x86_op_t *op ) {
  /external/libhevc/common/x86/
ihevc_platform_macros.h 74 #define INLINE inline
76 static INLINE UWORD32 CLZ(UWORD32 u4_word)
83 static INLINE UWORD32 CLZNZ(UWORD32 u4_word)
87 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/mockito/src/main/java/org/mockito/internal/util/concurrent/
DetachedThreadLocal.java 29 case INLINE:
132 * from any thread ({@link Cleaner#INLINE} or manually by submitting the detached thread local to a thread
136 THREAD, INLINE, MANUAL
WeakConcurrentSet.java 23 case INLINE:
83 * from any thread ({@link Cleaner#INLINE} or manually by submitting the detached thread local to a thread
87 THREAD, INLINE, MANUAL
  /external/v8/src/base/
macros.h 87 // constant size, gcc 2.95.3, gcc 4.0.1, and msvc 7.1 produce inline
129 #define INLINE(declarator) V8_INLINE declarator
177 inline void USE(T) { }
257 inline intptr_t OffsetFrom(T x) {
266 inline T AddressFrom(intptr_t x) {
273 inline T RoundDown(T x, intptr_t m) {
281 inline T RoundUp(T x, intptr_t m) {
292 inline bool is_fundamental() {
297 inline bool is_fundamental<uint8_t>() {
  /external/v8/src/heap/
objects-visiting.h 162 inline Callback GetVisitor(Map* map);
164 inline Callback GetVisitorById(StaticVisitorBase::VisitorId id) {
205 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
213 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
228 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
256 INLINE(static int IterateBody(Map* map, HeapObject* obj)) {
260 INLINE(static void VisitPointers(Heap* heap, HeapObject* object,
270 INLINE(static void VisitCodeEntry(Heap* heap, HeapObject* object,
276 INLINE(static int VisitByteArray(Map* map, HeapObject* object)) {
280 INLINE(static int VisitFixedDoubleArray(Map* map, HeapObject* object))
    [all...]
marking.h 17 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {}
26 inline CellType* cell() { return cell_; }
27 inline CellType mask() { return mask_; }
29 inline MarkBit Next() {
38 inline void Set() { *cell_ |= mask_; }
39 inline bool Get() { return (*cell_ & mask_) != 0; }
40 inline void Clear() { *cell_ &= ~mask_; }
73 INLINE(static uint32_t IndexToCell(uint32_t index)) {
81 INLINE(static uint32_t CellToIndex(uint32_t index)) {
85 INLINE(static uint32_t CellAlignIndex(uint32_t index))
    [all...]
scavenger.cc 113 INLINE(static void MigrateObject(Heap* heap, HeapObject* source,
148 static inline bool SemiSpaceCopyObject(Map* map, HeapObject** slot,
177 static inline bool PromoteObject(Map* map, HeapObject** slot,
207 static inline void EvacuateObject(Map* map, HeapObject** slot,
232 static inline void EvacuateJSFunction(Map* map, HeapObject** slot,
256 static inline void EvacuateFixedArray(Map* map, HeapObject** slot,
264 static inline void EvacuateFixedDoubleArray(Map* map, HeapObject** slot,
271 static inline void EvacuateFixedTypedArray(Map* map, HeapObject** slot,
278 static inline void EvacuateFixedFloat64Array(Map* map, HeapObject** slot,
285 static inline void EvacuateByteArray(Map* map, HeapObject** slot
    [all...]
incremental-marking.h 55 inline bool IsStopped() { return state() == STOPPED; }
57 inline bool IsSweeping() { return state() == SWEEPING; }
59 INLINE(bool IsMarking()) { return state() >= MARKING; }
61 inline bool IsMarkingIncomplete() { return state() == MARKING; }
63 inline bool IsComplete() { return state() == COMPLETE; }
65 inline bool IsReadyToOverApproximateWeakClosure() const {
69 inline bool NeedsFinalization() {
134 inline void RestartIfNotMarking();
148 INLINE(bool BaseRecordWrite(HeapObject* obj, Object* value));
149 INLINE(void RecordWrite(HeapObject* obj, Object** slot, Object* value))
    [all...]
  /external/v8/src/
list.h 37 INLINE(explicit List(int capacity,
41 INLINE(~List()) { DeleteData(data_); }
50 INLINE(void* operator new(size_t size,
54 INLINE(void operator delete(void* p)) {
59 INLINE(void operator delete(void* p, AllocationPolicy allocator)) {
66 inline T& operator[](int i) const {
71 inline T& at(int i) const { return operator[](i); }
72 inline T& last() const { return at(length_ - 1); }
73 inline T& first() const { return at(0); }
76 inline iterator begin() const { return &data_[0];
    [all...]
splay-tree.h 42 INLINE(void* operator new(size_t size,
46 INLINE(void operator delete(void* p)) {
50 INLINE(void operator delete(void* p, AllocationPolicy policy)) {
108 INLINE(void* operator new(size_t size, AllocationPolicy allocator)) {
111 INLINE(void operator delete(void* p)) {
116 INLINE(void operator delete(void* p, AllocationPolicy allocator)) {
143 inline void bind(Node* node) { node_ = node; }
  /external/mesa3d/src/mesa/main/
compiler.h 97 # pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */
117 #ifndef inline
119 /* C++ supports inline keyword */
121 # define inline __inline__ macro
123 # define inline __inline macro
125 # define inline __inline macro
127 /* Intel compiler supports inline keyword */
129 # define inline __inline macro
131 /* C99 supports inline keyword */
133 /* C99 supports inline keyword *
135 # define inline macro
    [all...]
  /external/pdfium/third_party/libjpeg/
jmorecfg.h 332 /* If your compiler supports inline functions, define INLINE
333 * as the inline keyword; otherwise define it as empty.
336 #ifndef INLINE
337 #ifdef __GNUC__ /* for instance, GNU C knows about inline */
338 #define INLINE __inline__
340 #ifndef INLINE
341 #define INLINE /* default is to define it as empty */
  /external/v8/src/interpreter/
bytecode-pipeline.h 137 INLINE(BytecodeNode(Bytecode bytecode,
146 INLINE(BytecodeNode(Bytecode bytecode, uint32_t operand0,
156 INLINE(BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
167 INLINE(BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
180 INLINE(BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
280 INLINE(void UpdateScaleForOperand(int operand_index, uint32_t operand)) {
291 INLINE(void SetOperand(int operand_index, uint32_t operand)) {
  /external/valgrind/memcheck/tests/
varinfo5so.c 161 #define INLINE inline __attribute__((always_inline))
163 INLINE void fun_c(int argc) {
167 INLINE void fun_b(int argb) {
171 INLINE void fun_a(int *arga) {
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
typedefs.h 278 /* define PTRSZ, INLINE */
295 #ifndef INLINE
297 #define INLINE __inline
299 #define INLINE __inline__
301 #define INLINE __inline
303 #define INLINE
305 #endif /* INLINE */
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML.java 42 * INLINE - charater level elements and text strings
47 INLINE,
81 * Construct an Element with inline=true.
  /system/bt/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 70 #ifndef INLINE
71 #define INLINE
147 INLINE OI_INT allocAdjustedBits(uint8_t* dest, OI_INT bits, OI_INT excess);
149 INLINE OI_INT allocExcessBits(uint8_t* dest, OI_INT excess);
164 INLINE OI_STATUS internal_DecoderReset(OI_CODEC_SBC_DECODER_CONTEXT* context,
170 INLINE uint16_t OI_SBC_CalculateFrameAndHeaderlen(
187 INLINE void dct3_4(int32_t* RESTRICT out, int32_t const* RESTRICT in);
192 INLINE void dct3_8(int32_t* RESTRICT out, int32_t const* RESTRICT in);
206 INLINE void OI_SBC_ReadHeader(OI_CODEC_SBC_COMMON_CONTEXT* common,
217 INLINE int32_t OI_SBC_Dequant(uint32_t raw, OI_UINT scale_factor, OI_UINT bits)
    [all...]
  /external/v8/src/runtime/
runtime.h 25 // * IntrinsicTypes are Runtime::RUNTIME and Runtime::INLINE, respectively.
37 // are specified by inline comments
    [all...]

Completed in 318 milliseconds

12 3 4 5