HomeSort by relevance Sort by last modified time
    Searched refs:slot (Results 201 - 225 of 1086) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/misc/common/swig/include/2.0.11/chicken/
swigclosprefix.scm 4 (slot-set! obj 'swig-this
9 (slot-ref ret 'swig-this)
14 (define-method (compute-getter-and-setter (class <swig-metaclass-$module>) slot allocator)
15 (if (not (memq ':swig-virtual slot))
17 (let ((getter (let search-get ((lst slot))
23 (setter (let search-set ((lst slot))
30 (lambda (o) (getter (slot-ref o 'swig-this)))
31 (lambda (o new) (setter (slot-ref o 'swig-this) new) new)))))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
24k-triple-stores-2-llsc.s 10 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
aent.s 18 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
elf-rel23.s 8 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
eret-2.s 13 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
eret-3.s 16 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
jal-mask-1.s 12 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
ld-zero.s 9 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
li.s 11 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
mips4-branch-likely.s 8 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
mipsr6@mips5-fp.s 7 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
r5.s 8 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
sync.s 9 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
uld2.s 12 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
ulw2.s 12 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
virt.s 20 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
virt64.s 10 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jalx-1.s 14 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
  /external/v8/src/heap/
slots-buffer.h 35 // object where the way of encoding depends on the type of the slot.
36 // They are recorded as a pair (SlotType, slot address).
40 // is the first element of typed slot's pair.
54 void Add(ObjectSlot slot) {
57 if (slot >= reinterpret_cast<ObjectSlot>(NUMBER_OF_SLOT_TYPES)) {
58 DCHECK_NOT_NULL(*slot);
61 slots_[idx_++] = slot;
126 SlotsBuffer** buffer_address, ObjectSlot slot,
137 buffer->Add(slot);
141 static bool IsTypedSlot(ObjectSlot slot);
    [all...]
  /frameworks/native/libs/gui/
BufferQueueProducer.cpp 58 status_t BufferQueueProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) {
60 BQ_LOGV("requestBuffer: slot %d", slot);
73 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
74 BQ_LOGE("requestBuffer: slot index %d out of range [0, %d)",
75 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
77 } else if (!mSlots[slot].mBufferState.isDequeued()) {
78 BQ_LOGE("requestBuffer: slot %d is not owned by the producer "
79 "(state = %s)", slot, mSlots[slot].mBufferState.string())
227 int slot = mCore->mFreeBuffers.front(); local
236 int slot = *(mCore->mFreeSlots.begin()); local
294 int slot = getFreeBufferLocked(); local
302 int slot = getFreeSlotLocked(); local
1292 auto slot = mCore->mFreeSlots.begin(); local
    [all...]
  /frameworks/native/libs/gui/tests/
BufferQueue_test.cpp 133 int slot; local
137 mProducer->dequeueBuffer(&slot, &fence, 0, 0, 0,
139 ASSERT_EQ(OK, mProducer->requestBuffer(slot, &buffer));
150 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
171 int slot; local
181 mProducer->dequeueBuffer(&slot, &fence, 1, 1, 0,
183 ASSERT_EQ(OK, mProducer->requestBuffer(slot, &buf));
184 ASSERT_EQ(OK, mProducer->queueBuffer(slot, qbi, &qbo));
189 mProducer->dequeueBuffer(&slot, &fence, 1, 1, 0,
191 ASSERT_EQ(OK, mProducer->requestBuffer(slot, &buf))
222 int slot; local
259 int slot; local
324 int slot; local
373 int slot; local
432 int slot; local
480 int slot; local
514 int slot; local
572 int slot; local
636 int slot; local
692 int slot; local
727 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
754 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
764 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
785 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
808 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
    [all...]
  /frameworks/native/services/surfaceflinger/
MonitoredProducer.cpp 55 status_t MonitoredProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) {
56 return mProducer->requestBuffer(slot, buf);
68 status_t MonitoredProducer::dequeueBuffer(int* slot, sp<Fence>* fence,
70 return mProducer->dequeueBuffer(slot, fence, w, h, format, usage);
73 status_t MonitoredProducer::detachBuffer(int slot) {
74 return mProducer->detachBuffer(slot);
87 status_t MonitoredProducer::queueBuffer(int slot, const QueueBufferInput& input,
89 return mProducer->queueBuffer(slot, input, output);
92 status_t MonitoredProducer::cancelBuffer(int slot, const sp<Fence>& fence) {
93 return mProducer->cancelBuffer(slot, fence)
    [all...]
  /external/toybox/toys/posix/
ps.c 261 int (*match_process)(long long *slot);
272 /* The slot[] array is mostly populated from /proc/$PID/stat (kernel proc.txt
308 long long slot[55]; // data from /proc member in struct:carveup
315 // 64|slot means compare as string when sorting
318 signed char width, slot; member in struct:typography
358 static int shared_match_process(long long *slot)
373 for (j = 0; j<mm->len; j++) if (ll[j] == slot[match[i].len]) return 1;
382 static int ps_match_process(long long *slot)
384 int i = shared_match_process(slot);
391 if ((toys.optflags&(FLAG_a|FLAG_d)) && slot[SLOT_sid]==*slot) return 0
404 long long *slot = tb->slot, ll = (sl >= 0) ? slot[sl&63] : 0; local
560 long long *slot = tb->slot; local
929 int ret = 0, slot; local
1315 int slot = typos[fields->which].slot&63; local
    [all...]
  /external/freetype/include/
ftrender.h 42 FT_GlyphSlot slot );
63 FT_GlyphSlot slot );
89 FT_GlyphSlot slot,
95 FT_GlyphSlot slot,
102 FT_GlyphSlot slot,
132 /* given glyph slot into a bitmap. */
135 /* a given glyph slot. */
  /external/pdfium/third_party/freetype/include/freetype/
ftrender.h 42 FT_GlyphSlot slot );
63 FT_GlyphSlot slot );
89 FT_GlyphSlot slot,
95 FT_GlyphSlot slot,
102 FT_GlyphSlot slot,
132 /* given glyph slot into a bitmap. */
135 /* a given glyph slot. */

Completed in 213 milliseconds

1 2 3 4 5 6 7 891011>>