Searched refs:intptr_t (Results 26 - 50 of 452) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dsmall-pointer-list.h41 DCHECK(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
42 data_ = reinterpret_cast<intptr_t>(list) | kListTag;
64 DCHECK(IsAligned(reinterpret_cast<intptr_t>(pointer), kPointerAlignment));
66 data_ = reinterpret_cast<intptr_t>(pointer) | kSingletonTag;
73 DCHECK(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
74 data_ = reinterpret_cast<intptr_t>(list) | kListTag;
149 static const intptr_t kEmptyTag = 1;
150 static const intptr_t kSingletonTag = 0;
151 static const intptr_t kListTag = 2;
152 static const intptr_t kTagMas
[all...]
H A Dglobals.h128 const int kIntptrSize = sizeof(intptr_t); // NOLINT
142 const intptr_t kIntptrSignBit = V8_INT64_C(0x8000000000000000);
148 const intptr_t kIntptrSignBit = 0x80000000;
196 (reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(f)))
203 return reinterpret_cast<F>(reinterpret_cast<intptr_t>(addr));
223 const intptr_t kSmiSignMask = kIntptrSignBit;
226 const intptr_t kObjectAlignment = 1 << kObjectAlignmentBits;
227 const intptr_t kObjectAlignmentMask = kObjectAlignment - 1;
230 const intptr_t kPointerAlignment = (1 << kPointerSizeLog2);
231 const intptr_t kPointerAlignmentMas
[all...]
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.base.storage/
H A Dpword.pass.cpp35 for (std::intptr_t i = 0; i < 10000; ++i)
40 for (std::intptr_t j = 0; j <= i; ++j)
/external/libcxx/test/std/utilities/meta/meta.unary.prop.query/
H A Dalignment_of.pass.cpp36 test_alignment_of<int*, sizeof(intptr_t)>();
37 test_alignment_of<const int*, sizeof(intptr_t)>();
/external/v8/src/mips/
H A Dcpu-mips.cc38 reinterpret_cast<intptr_t>(start), reinterpret_cast<intptr_t>(end), 0);
/external/v8/src/mips64/
H A Dcpu-mips64.cc38 reinterpret_cast<intptr_t>(start), reinterpret_cast<intptr_t>(end), 0);
/external/compiler-rt/include/sanitizer/
H A Dcoverage_interface.h29 intptr_t __sanitizer_maybe_open_cov_file(const char *name);
H A Dcommon_interface_defs.h34 intptr_t coverage_fd;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pointer.h37 static INLINE intptr_t
42 intptr_t i;
49 intptr_to_pointer( intptr_t i )
53 intptr_t i;
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_span.h41 intptr_t intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled);
/external/selinux/libsepol/cil/src/
H A Dcil_symtab.h50 intptr_t key1;
51 intptr_t key2;
52 intptr_t key3;
53 intptr_t key4;
/external/skia/bench/
H A DImageCacheBench.cpp15 intptr_t fValue;
17 TestKey(intptr_t value) : fValue(value) {
23 intptr_t fValue;
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {}
/external/skia/tests/
H A DImageCacheTest.cpp15 intptr_t fValue;
17 TestingKey(intptr_t value, uint64_t sharedID = 0) : fValue(value) {
25 intptr_t fValue;
32 intptr_t* result = (intptr_t*)context;
46 intptr_t value = -1;
67 intptr_t value;
83 intptr_t value = -1;
95 intptr_t value = -1;
148 intptr_t valu
[all...]
/external/skia/forth/
H A DForth.cpp15 size_t size = 32 * sizeof(intptr_t);
16 fStackBase = reinterpret_cast<intptr_t*>(sk_malloc_throw(size));
17 fStackStop = fStackBase + size/sizeof(intptr_t);
33 void ForthEngine::push(intptr_t value) {
42 intptr_t ForthEngine::peek(size_t index) const {
52 void ForthEngine::setTop(intptr_t value) {
61 intptr_t ForthEngine::pop() {
123 static unsigned GetCode(intptr_t c) {
126 static unsigned GetCodeData(intptr_t c) {
154 intptr_t* detac
[all...]
H A DStdWords.cpp34 intptr_t a = fe->pop();
35 intptr_t b = fe->top();
41 intptr_t c = fe->pop();
42 intptr_t b = fe->pop();
43 intptr_t a = fe->pop();
50 intptr_t c = fe->pop();
51 intptr_t b = fe->pop();
52 intptr_t a = fe->pop();
59 intptr_t d = fe->pop();
60 intptr_t
[all...]
/external/llvm/include/llvm/ADT/
H A DPointerIntPair.h44 intptr_t Value;
53 ~(uintptr_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable)-1),
60 IntMask = (uintptr_t)(((intptr_t)1 << IntBits)-1),
84 intptr_t PtrWord
85 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
93 intptr_t IntWord = static_cast<intptr_t>(IntVal);
102 intptr_t PtrWord
103 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
110 intptr_t PtrWor
[all...]
/external/libvpx/libvpx/vpx_ports/
H A Dmem.h36 typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a)))
/external/skia/src/gpu/
H A DGrMemoryPool.h65 intptr_t fCurrPtr; ///< ptr to the start of blocks free space.
66 intptr_t fPrevPtr; ///< ptr to the last allocation made
/external/skia/src/gpu/gl/mesa/
H A DSkMesaGLContext.h17 typedef intptr_t Context;
/external/v8/src/heap/
H A Dgc-tracer.cc12 static intptr_t CountTotalHolesSize(Heap* heap) {
13 intptr_t holes_size = 0;
23 intptr_t allocation_in_bytes) {
105 reinterpret_cast<intptr_t>((heap_->new_space()->top()) -
146 reinterpret_cast<intptr_t>(heap_->new_space()->top());
205 intptr_t allocation_in_bytes) {
210 void GCTracer::AddIncrementalMarkingStep(double duration, intptr_t bytes) {
309 intptr_t allocated_since_last_gc =
407 intptr_t GCTracer::IncrementalMarkingSpeedInBytesPerMillisecond() const {
413 return static_cast<intptr_t>(cumulative_incremental_marking_bytes
[all...]
H A Dspaces.h308 if ((reinterpret_cast<intptr_t>(owner_) & kPageHeaderTagMask) ==
310 return reinterpret_cast<Space*>(reinterpret_cast<intptr_t>(owner_) -
318 DCHECK((reinterpret_cast<intptr_t>(space) & kPageHeaderTagMask) == 0);
320 DCHECK((reinterpret_cast<intptr_t>(owner_) & kPageHeaderTagMask) ==
424 void SetFlags(intptr_t flags, intptr_t mask) {
429 intptr_t GetFlags() { return flags_; }
523 static const intptr_t kAlignment =
526 static const intptr_t kAlignmentMask = kAlignment - 1;
528 static const intptr_t kSizeOffse
[all...]
/external/libnfc-nci/halimpl/pn54x/tml/
H A DphDal4Nfc_messageQueueLib.c56 intptr_t phDal4Nfc_msgget(key_t key, int msgflg)
76 return ((intptr_t) pQueue);
90 void phDal4Nfc_msgrelease(intptr_t msqid)
123 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void *buf)
173 intptr_t phDal4Nfc_msgsnd(intptr_t msqid, phLibNfc_Message_t * msg, int msgflg)
230 int phDal4Nfc_msgrcv(intptr_t msqid, phLibNfc_Message_t * msg, long msgtyp, int msgflg)
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp80 OpenAgentFunc = (op_open_agent_ptr_t)(intptr_t)
82 CloseAgentFunc = (op_close_agent_ptr_t)(intptr_t)
84 WriteNativeCodeFunc = (op_write_native_code_ptr_t)(intptr_t)
86 WriteDebugLineInfoFunc = (op_write_debug_line_info_ptr_t)(intptr_t)
88 UnloadNativeCodeFunc = (op_unload_native_code_ptr_t)(intptr_t)
90 MajorVersionFunc = (op_major_version_ptr_t)(intptr_t)
92 MinorVersionFunc = (op_major_version_ptr_t)(intptr_t)
/external/mesa3d/src/mesa/program/
H A Dhash_table.h243 const intptr_t v =
244 (intptr_t) hash_table_find(this->ht, (const void *) key);
269 (void *) (intptr_t) (value + 1),
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dhandle.c47 intptr_t ip = pointer_to_intptr(key);

Completed in 729 milliseconds

1234567891011>>