Searched defs:INLINE (Results 1 - 25 of 35) sorted by relevance

12

/external/v8/src/
H A Dlist.h53 INLINE(explicit List(int capacity)) { Initialize(capacity); } function in class:v8::internal::List
54 INLINE(~List()) { DeleteData(data_); }
63 INLINE(void* operator new(size_t size)) { function in class:v8::internal::List
66 INLINE(void operator delete(void* p, size_t)) { return P::Delete(p); } function in class:v8::internal::List
80 INLINE(bool is_empty() const) { return length_ == 0; }
81 INLINE(int length() const) { return length_; }
82 INLINE(int capacity() const) { return capacity_; }
118 INLINE(T RemoveLast()) { return Remove(length_ - 1); }
122 INLINE(void Clear());
125 INLINE(voi
[all...]
H A Dallocation.h107 INLINE(static void* New(size_t size)) { return Malloced::New(size); } function in class:v8::internal::FreeStoreAllocationPolicy
108 INLINE(static void Delete(void* p)) { Malloced::Delete(p); } function in class:v8::internal::FreeStoreAllocationPolicy
H A Dhandles.h46 INLINE(explicit Handle(T** location)) { location_ = location; } function in class:v8::internal::Handle
47 INLINE(explicit Handle(T* obj));
48 INLINE(Handle(T* obj, Isolate* isolate));
50 INLINE(Handle()) : location_(NULL) {}
64 INLINE(T* operator ->() const) { return operator*(); } function in class:v8::internal::Handle
72 INLINE(T* operator*() const);
H A Dsplay-tree.h64 INLINE(void* operator new(size_t size)) { function in class:v8::internal::SplayTree
67 INLINE(void operator delete(void* p, size_t)) { return Allocator::Delete(p); } function in class:v8::internal::SplayTree
115 INLINE(void* operator new(size_t size)) { function in class:v8::internal::SplayTree::Node
118 INLINE(void operator delete(void* p, size_t)) { function in class:v8::internal::SplayTree::Node
H A Druntime.h596 INLINE enumerator in enum:v8::internal::Runtime::IntrinsicType
H A Dglobals.h342 #define INLINE(header) inline header __attribute__((always_inline)) macro
345 #define INLINE(header) inline __attribute__((always_inline)) header macro
349 #define INLINE(header) inline header macro
H A Dincremental-marking.cc234 INLINE(void MarkObject(Object* obj)) { function in class:v8::internal::IncrementalMarkingMarkingVisitor
H A Dutils.h809 INLINE(static Dest cast(const Source& source)) { function in struct:v8::BitCastHelper
818 INLINE(static Dest cast(Source* source)) { function in struct:v8::BitCastHelper
825 INLINE(Dest BitCast(const Source& source));
H A Dmark-compact.h147 INLINE(static bool TransferColor(HeapObject* from, function in class:v8::internal::Marking
490 INLINE(static bool ShouldSkipEvacuationSlotRecording(Object** anchor)) { function in class:v8::internal::MarkCompactCollector
495 INLINE(static bool ShouldSkipEvacuationSlotRecording(Object* host)) { function in class:v8::internal::MarkCompactCollector
500 INLINE(static bool IsOnEvacuationCandidate(Object* obj)) { function in class:v8::internal::MarkCompactCollector
529 INLINE(void RecordSlot(Object** anchor_slot, Object** slot, Object* object));
633 INLINE(void MarkObject(HeapObject* obj, MarkBit mark_bit));
635 INLINE(bool MarkObjectWithoutPush(HeapObject* object));
636 INLINE(void MarkObjectAndPush(HeapObject* value));
639 INLINE(void SetMark(HeapObject* obj, MarkBit mark_bit));
H A Dscanner.h183 INLINE(void AddChar(uint32_t code_unit)) { function in class:v8::internal::LiteralBuffer
464 INLINE(void AddLiteralChar(uc32 c)) { function in class:v8::internal::Scanner
H A Dassembler.h87 INLINE(Label()) {
92 INLINE(~Label()) {
97 INLINE(void Unuse()) { pos_ = 0; } function in class:v8::internal::BASE_EMBEDDED
98 INLINE(void UnuseNear()) { near_link_pos_ = 0; } function in class:v8::internal::BASE_EMBEDDED
100 INLINE(bool is_bound() const) { return pos_ < 0; }
101 INLINE(bool is_unused() const) { return pos_ == 0 && near_link_pos_ == 0; }
102 INLINE(bool is_linked() const) { return pos_ > 0; }
103 INLINE(bool is_near_linked() const) { return near_link_pos_ > 0; }
268 INLINE(void apply(intptr_t delta));
278 INLINE(Addres
[all...]
H A Disolate.h159 INLINE(bool Equals(const ThreadId& other) const) {
164 INLINE(bool IsValid() const) {
437 INLINE(static Isolate* Current()) { function in class:v8::internal::Isolate
444 INLINE(static Isolate* UncheckedCurrent()) { function in class:v8::internal::Isolate
/external/clang/test/CodeGenCXX/
H A Ddebug-info-same-line.cpp7 #define INLINE inline __attribute__((always_inline)) macro
9 INLINE int
16 INLINE int
/external/bluetooth/bluedroid/gki/ulinux/
H A Ddata_types.h49 #define INLINE __inline macro
52 #define INLINE macro
/external/dropbear/libtomcrypt/src/hashes/
H A Dtiger.c559 #define INLINE __inline macro
561 #define INLINE macro
565 INLINE static void tiger_round(ulong64 *a, ulong64 *b, ulong64 *c, ulong64 x, int mul)
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Ddata_types.h48 #define INLINE __inline macro
51 #define INLINE macro
/external/libnfc-nci/src/gki/ulinux/
H A Ddata_types.h48 #define INLINE __inline macro
51 #define INLINE macro
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemDesc.java69 private static final int INLINE = (1 << 9); field in class:ElemDesc
/external/dropbear/libtomcrypt/src/ciphers/
H A Dcast5.c503 #define INLINE __inline macro
505 #define INLINE macro
508 INLINE static ulong32 FI(ulong32 R, ulong32 Km, ulong32 Kr)
516 INLINE static ulong32 FII(ulong32 R, ulong32 Km, ulong32 Kr)
524 INLINE static ulong32 FIII(ulong32 R, ulong32 Km, ulong32 Kr)
/external/jpeg/
H A Djmorecfg.h347 /* If your compiler supports inline functions, define INLINE
351 #ifndef INLINE
353 #define INLINE __inline__ macro
355 #ifndef INLINE
356 #define INLINE /* default is to define it as empty */ macro
/external/qemu/distrib/jpeg-6b/
H A Djmorecfg.h349 /* If your compiler supports inline functions, define INLINE
353 #ifndef INLINE
355 #define INLINE __inline__ macro
357 #ifndef INLINE
358 #define INLINE /* default is to define it as empty */ macro
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h110 #define INLINE static inline macro
/external/qemu/fpu/
H A Dsoftfloat.h69 #define INLINE static inline macro
216 INLINE void set_float_detect_tininess(int val STATUS_PARAM)
220 INLINE void set_flush_to_zero(flag val STATUS_PARAM)
224 INLINE void set_flush_inputs_to_zero(flag val STATUS_PARAM)
228 INLINE void set_default_nan_mode(flag val STATUS_PARAM)
232 INLINE int get_float_exception_flags(float_status *status)
342 INLINE float32 float32_abs(float32 a)
350 INLINE float32 float32_chs(float32 a)
358 INLINE int float32_is_infinity(float32 a)
363 INLINE in
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc57 #define INLINE __attribute__((always_inline)) macro
1660 INLINE
1692 template<class T> INLINE T XOR(const T &a, const T&b) { return a ^ b; }
1693 template<class T> INLINE T ADD(const T &a, const T&b) { return a + b; }
1694 template<class T> INLINE T SUB(const T &a, const T&b) { return a - b; }
1695 template<class T> INLINE T MUL(const T &a, const T&b) { return a * b; }
1696 template<class T> INLINE T AND(const T &a, const T&b) { return a & b; }
1697 template<class T> INLINE T OR (const T &a, const T&b) { return a | b; }
/external/v8/src/arm/
H A Dassembler-arm.h401 INLINE(explicit Operand(int32_t immediate,
403 INLINE(static Operand Zero()) { function in class:v8::internal::BASE_EMBEDDED
406 INLINE(explicit Operand(const ExternalReference& f));
408 INLINE(explicit Operand(Smi* value));
411 INLINE(explicit Operand(Register rm));
420 INLINE(bool is_reg() const);
681 INLINE(static Address target_address_address_at(Address pc));
684 INLINE(static Address target_address_at(Address pc));
685 INLINE(static void set_target_address_at(Address pc, Address target));

Completed in 451 milliseconds

12