/external/chromium_org/v8/src/ |
D | list.h | 38 INLINE(~List()) { DeleteData(data_); } in INLINE() function 51 INLINE(void operator delete(void* p)) { in INLINE() function 56 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { in INLINE() function 76 INLINE(bool is_empty() const) { return length_ == 0; } in INLINE() function 77 INLINE(int length() const) { return length_; } in INLINE() function 78 INLINE(int capacity() const) { return capacity_; } in INLINE() function 121 INLINE(T RemoveLast()) { return Remove(length_ - 1); } in INLINE() function 135 INLINE(void RewindBy(int count)) { Rewind(length_ - count); } in INLINE() function 160 INLINE(T* NewData(int n, AllocationPolicy allocator)) { in INLINE() function 163 INLINE(void DeleteData(T* data)) { in INLINE() function
|
D | objects-visiting.h | 194 INLINE(static void IteratePointers(Heap* heap, in INLINE() function 210 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) { in INLINE() function 236 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) { in INLINE() function 268 INLINE(static int IterateBody(Map* map, HeapObject* obj)) { in INLINE() function 272 INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) { in INLINE() function 277 INLINE(static int VisitJSFunction(Map* map, HeapObject* object)) { in INLINE() function 294 INLINE(static int VisitByteArray(Map* map, HeapObject* object)) { in INLINE() function 298 INLINE(static int VisitFixedDoubleArray(Map* map, HeapObject* object)) { in INLINE() function 303 INLINE(static int VisitFixedTypedArray(Map* map, HeapObject* object)) { in INLINE() function 307 INLINE(static int VisitJSObject(Map* map, HeapObject* object)) { in INLINE() function [all …]
|
D | handles.h | 21 INLINE(MaybeHandle()) : location_(NULL) { } in INLINE() function 47 INLINE(void Assert() const) { ASSERT(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 | 161 INLINE(static void Delete(void *pointer)) { } in INLINE() function 192 INLINE(void Add(const T& element, Zone* zone)) { in INLINE() function 195 INLINE(void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone)) { in INLINE() function 198 INLINE(void AddAll(const Vector<T>& other, Zone* zone)) { in INLINE() function 201 INLINE(void InsertAt(int index, const T& element, Zone* zone)) { in INLINE() function 205 INLINE(Vector<T> AddBlock(T value, int count, Zone* zone)) { in INLINE() function 209 INLINE(void Allocate(int length, Zone* zone)) { in INLINE() function 212 INLINE(void Initialize(int capacity, Zone* zone)) { in INLINE() function
|
D | mark-compact.h | 35 INLINE(static MarkBit MarkBitFrom(HeapObject* obj)) { in INLINE() function 41 INLINE(static bool IsImpossible(MarkBit mark_bit)) { in INLINE() function 47 INLINE(static bool IsBlack(MarkBit mark_bit)) { in INLINE() function 53 INLINE(static bool IsWhite(MarkBit mark_bit)) { in INLINE() function 59 INLINE(static bool IsGrey(MarkBit mark_bit)) { in INLINE() function 63 INLINE(static void MarkBlack(MarkBit mark_bit)) { in INLINE() function 68 INLINE(static void BlackToGrey(MarkBit markbit)) { in INLINE() function 72 INLINE(static void WhiteToGrey(MarkBit markbit)) { in INLINE() function 77 INLINE(static void GreyToBlack(MarkBit markbit)) { in INLINE() function 81 INLINE(static void BlackToGrey(HeapObject* obj)) { in INLINE() function [all …]
|
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 | 46 INLINE(void Append(uint8_t c)) { in INLINE() function 54 INLINE(void AppendAscii(const char* chars)) { in INLINE() function 77 INLINE(Result SerializeObject(Handle<Object> obj)) { in INLINE() function 83 INLINE(Result SerializeElement(Isolate* isolate, in INLINE() function 94 INLINE(Result SerializeProperty(Handle<Object> object, in INLINE() function 113 INLINE(Result SerializeHeapNumber(Handle<HeapNumber> object)) { in INLINE() function 143 INLINE(Handle<String> accumulator()) { in INLINE() function 147 INLINE(void set_accumulator(Handle<String> string)) { in INLINE() function
|
D | assembler.h | 216 INLINE(Label()) { in INLINE() function 221 INLINE(~Label()) { in INLINE() function 226 INLINE(void Unuse()) { pos_ = 0; } in INLINE() function 227 INLINE(void UnuseNear()) { near_link_pos_ = 0; } in INLINE() function 229 INLINE(bool is_bound() const) { return pos_ < 0; } in INLINE() function 230 INLINE(bool is_unused() const) { return pos_ == 0 && near_link_pos_ == 0; } in INLINE() function 231 INLINE(bool is_linked() const) { return pos_ > 0; } in INLINE() function 232 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 245 INLINE(bool is_profiling() const) { return is_profiling_; } in INLINE() function
|
D | incremental-marking.cc | 235 INLINE(static void VisitPointer(Heap* heap, Object** p)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 243 INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 253 INLINE(static void VisitPointersWithAnchor(Heap* heap, in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 267 INLINE(static void MarkObject(Heap* heap, Object* obj)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor 279 INLINE(static bool MarkObjectWithoutPush(Heap* heap, Object* obj)) { in INLINE() function in v8::internal::IncrementalMarkingMarkingVisitor
|
D | spaces.h | 171 INLINE(static uint32_t IndexToCell(uint32_t index)) { in INLINE() function 175 INLINE(static uint32_t CellToIndex(uint32_t index)) { in INLINE() function 179 INLINE(static uint32_t CellAlignIndex(uint32_t index)) { in INLINE() function 183 INLINE(MarkBit::CellType* cells()) { in INLINE() function 187 INLINE(Address address()) { in INLINE() function 191 INLINE(static Bitmap* FromAddress(Address addr)) { in INLINE() function 752 INLINE(static Page* FromAddress(Address a)) { in INLINE() function 760 INLINE(static Page* FromAllocationTop(Address top)) { in INLINE() function 777 INLINE(int Offset(Address a)) { in INLINE() function 1330 INLINE(void set_top(Address top)) { in INLINE() function [all …]
|
/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/include/thirdparties/libjpeg/ |
D | jmorecfg.h | 342 #define INLINE __inline__ macro 345 #define INLINE /* default is to define it as empty */ macro
|
/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/chromium_org/third_party/mesa/src/src/egl/main/ |
D | eglcompiler.h | 90 # define INLINE inline macro
|
/external/mesa3d/src/egl/main/ |
D | eglcompiler.h | 90 # define INLINE inline macro
|