| /external/chromium_org/v8/src/ |
| D | list.h | 39 INLINE(~List()) { DeleteData(data_); } in INLINE() function 52 INLINE(void operator delete(void* p)) { in INLINE() function 57 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { in INLINE() function 77 INLINE(bool is_empty() const) { return length_ == 0; } in INLINE() function 78 INLINE(int length() const) { return length_; } in INLINE() function 79 INLINE(int capacity() const) { return capacity_; } in INLINE() function 122 INLINE(T RemoveLast()) { return Remove(length_ - 1); } in INLINE() function 136 INLINE(void RewindBy(int count)) { Rewind(length_ - count); } in INLINE() function 161 INLINE(T* NewData(int n, AllocationPolicy allocator)) { in INLINE() function 164 INLINE(void DeleteData(T* data)) { in INLINE() function
|
| D | handles.h | 21 INLINE(MaybeHandle()) : location_(NULL) { } in INLINE() function 47 INLINE(void Assert() const) { DCHECK(location_ != NULL); } in INLINE() function 48 INLINE(void Check() const) { CHECK(location_ != NULL); } in INLINE() function 50 INLINE(Handle<T> ToHandleChecked()) const { in INLINE() function 56 template <class S> INLINE(bool ToHandle(Handle<S>* out)) { in INLINE() function 85 INLINE(explicit Handle(T** location)) { location_ = location; } in INLINE() function 91 INLINE(Handle()) : location_(NULL) { } in INLINE() function
|
| D | zone.h | 167 INLINE(static void Delete(void *pointer)) { } in INLINE() function 198 INLINE(void Add(const T& element, Zone* zone)) { in INLINE() function 201 INLINE(void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone)) { in INLINE() function 204 INLINE(void AddAll(const Vector<T>& other, Zone* zone)) { in INLINE() function 207 INLINE(void InsertAt(int index, const T& element, Zone* zone)) { in INLINE() function 211 INLINE(Vector<T> AddBlock(T value, int count, Zone* zone)) { in INLINE() function 215 INLINE(void Allocate(int length, Zone* zone)) { in INLINE() function 218 INLINE(void Initialize(int capacity, Zone* zone)) { in INLINE() function
|
| D | splay-tree.h | 46 INLINE(void operator delete(void* p)) { in INLINE() function 50 INLINE(void operator delete(void* p, AllocationPolicy policy)) { in INLINE() function 108 INLINE(void* operator new(size_t size, AllocationPolicy allocator)) { in INLINE() function 111 INLINE(void operator delete(void* p)) { in INLINE() function 116 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { in INLINE() function
|
| D | allocation.h | 84 INLINE(void* New(size_t size)) { return Malloced::New(size); } in INLINE() function 85 INLINE(static void Delete(void* p)) { Malloced::Delete(p); } in INLINE() function
|
| D | json-stringifier.h | 47 INLINE(void Append(uint8_t c)) { in INLINE() function 55 INLINE(void AppendOneByte(const char* chars)) { in INLINE() function 78 INLINE(Result SerializeObject(Handle<Object> obj)) { in INLINE() function 84 INLINE(Result SerializeElement(Isolate* isolate, in INLINE() function 95 INLINE(Result SerializeProperty(Handle<Object> object, in INLINE() function 114 INLINE(Result SerializeHeapNumber(Handle<HeapNumber> object)) { in INLINE() function 144 INLINE(Handle<String> accumulator()) { in INLINE() function 148 INLINE(void set_accumulator(Handle<String> string)) { in INLINE() function
|
| D | assembler.h | 225 INLINE(Label()) { in INLINE() function 230 INLINE(~Label()) { in INLINE() function 235 INLINE(void Unuse()) { pos_ = 0; } in INLINE() function 236 INLINE(void UnuseNear()) { near_link_pos_ = 0; } in INLINE() function 238 INLINE(bool is_bound() const) { return pos_ < 0; } in INLINE() function 239 INLINE(bool is_unused() const) { return pos_ == 0 && near_link_pos_ == 0; } in INLINE() function 240 INLINE(bool is_linked() const) { return pos_ > 0; } in INLINE() function 241 INLINE(bool is_near_linked() const) { return near_link_pos_ > 0; } in INLINE() function
|
| D | cpu-profiler.h | 135 INLINE(bool running()) { return running_; } in INLINE() function 242 INLINE(bool is_profiling() const) { return is_profiling_; } in INLINE() function
|
| /external/chromium_org/v8/src/heap/ |
| D | objects-visiting.h | 189 INLINE(static void IteratePointers(Heap* heap, HeapObject* object, in INLINE() function 203 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) { in INLINE() function 223 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) { in INLINE() function 253 INLINE(static int IterateBody(Map* map, HeapObject* obj)) { in INLINE() function 257 INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) { in INLINE() function 262 INLINE(static int VisitJSFunction(Map* map, HeapObject* object)) { in INLINE() function 277 INLINE(static int VisitByteArray(Map* map, HeapObject* object)) { in INLINE() function 281 INLINE(static int VisitFixedDoubleArray(Map* map, HeapObject* object)) { in INLINE() function 286 INLINE(static int VisitFixedTypedArray(Map* map, HeapObject* object)) { in INLINE() function 290 INLINE(static int VisitJSObject(Map* map, HeapObject* object)) { in INLINE() function [all …]
|
| D | mark-compact.h | 32 INLINE(static MarkBit MarkBitFrom(HeapObject* obj)) { in INLINE() function 38 INLINE(static bool IsImpossible(MarkBit mark_bit)) { in INLINE() function 44 INLINE(static bool IsBlack(MarkBit mark_bit)) { in INLINE() function 50 INLINE(static bool IsWhite(MarkBit mark_bit)) { return !mark_bit.Get(); } in INLINE() function 54 INLINE(static bool IsGrey(MarkBit mark_bit)) { in INLINE() function 58 INLINE(static void MarkBlack(MarkBit mark_bit)) { in INLINE() function 63 INLINE(static void BlackToGrey(MarkBit markbit)) { markbit.Next().Set(); } in INLINE() function 65 INLINE(static void WhiteToGrey(MarkBit markbit)) { in INLINE() function 70 INLINE(static void GreyToBlack(MarkBit markbit)) { markbit.Next().Clear(); } in INLINE() function 72 INLINE(static void BlackToGrey(HeapObject* obj)) { in INLINE() function [all …]
|
| D | spaces.h | 168 INLINE(static uint32_t IndexToCell(uint32_t index)) { in INLINE() function 172 INLINE(static uint32_t CellToIndex(uint32_t index)) { in INLINE() function 176 INLINE(static uint32_t CellAlignIndex(uint32_t index)) { in INLINE() function 180 INLINE(MarkBit::CellType* cells()) { in INLINE() function 184 INLINE(Address address()) { return reinterpret_cast<Address>(this); } in INLINE() function 186 INLINE(static Bitmap* FromAddress(Address addr)) { in INLINE() function 709 INLINE(static Page* FromAddress(Address a)) { in INLINE() function 717 INLINE(static Page* FromAllocationTop(Address top)) { in INLINE() function 734 INLINE(int Offset(Address a)) { in INLINE() function 1255 INLINE(void set_top(Address top)) { in INLINE() function [all …]
|
| D | incremental-marking.cc | 223 INLINE(static void VisitPointer(Heap* heap, Object** p)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 231 INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 241 INLINE(static void VisitPointersWithAnchor(Heap* heap, Object** anchor, in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 253 INLINE(static void MarkObject(Heap* heap, Object* obj)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 265 INLINE(static bool MarkObjectWithoutPush(Heap* heap, Object* obj)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor
|
| /external/chromium_org/third_party/libjpeg_turbo/ |
| D | config.h | 75 #define INLINE inline __attribute__((always_inline)) macro 77 #define INLINE __forceinline macro 79 #define INLINE macro
|
| /external/bluetooth/bluedroid/gki/ulinux/ |
| D | data_types.h | 47 # define INLINE __inline macro 50 # define INLINE macro
|
| /external/lldb/test/functionalities/breakpoint/breakpoint_locations/ |
| D | main.c | 3 #define INLINE inline __attribute__((always_inline)) macro
|
| /external/clang/test/CodeGenCXX/ |
| D | debug-info-same-line.cpp | 7 #define INLINE inline __attribute__((always_inline)) macro
|
| /external/libnfc-nci/src/gki/ulinux/ |
| D | data_types.h | 48 #define INLINE __inline macro 51 #define INLINE macro
|
| /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/ |
| D | data_types.h | 48 #define INLINE __inline macro 51 #define INLINE macro
|
| /external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
| D | u_compiler.h | 27 # define INLINE inline macro
|
| /external/mesa3d/src/mapi/mapi/ |
| D | u_compiler.h | 27 # define INLINE inline macro
|
| /external/lldb/test/functionalities/breakpoint/breakpoint_ids/ |
| D | main.cpp | 16 #define INLINE inline __attribute__((always_inline)) macro
|
| /external/chromium_org/net/http/ |
| D | http_content_disposition.h | 18 INLINE, enumerator
|
| /external/pdfium/core/src/fxcodec/libjpeg/ |
| D | jmorecfg.h | 342 #define INLINE __inline__ macro 345 #define INLINE /* default is to define it as empty */ macro
|
| /external/pdfium/core/include/thirdparties/libjpeg/ |
| D | jmorecfg.h | 342 #define INLINE __inline__ macro 345 #define INLINE /* default is to define it as empty */ macro
|
| /external/chromium_org/third_party/smhasher/src/ |
| D | Spooky.h | 31 # define INLINE __forceinline macro 38 # define INLINE inline macro
|