HomeSort by relevance Sort by last modified time
    Searched refs:slot_index (Results 1 - 20 of 20) sorted by null

  /external/qemu/android/
multitouch-screen.c 139 const int slot_index = _mtsstate_get_available_pointer_index(mts_state); local
142 if (slot_index >= 0) {
145 mts_state->tracked_pointers[slot_index].tracking_id = tracking_id;
146 mts_state->tracked_pointers[slot_index].x = x;
147 mts_state->tracked_pointers[slot_index].y = y;
148 mts_state->tracked_pointers[slot_index].pressure = pressure;
152 if (slot_index != mts_state->current_slot) {
153 _push_event(EV_ABS, ABS_MT_SLOT, slot_index);
155 _push_event(EV_ABS, ABS_MT_TRACKING_ID, slot_index);
161 mts_state->current_slot = slot_index;
478 const int slot_index = _mtsstate_get_pointer_index(mts_state, tracking_id); local
    [all...]
  /external/v8/src/
scopeinfo.h 56 int slot_index);
79 int slot_index);
contexts.cc 150 int slot_index = scope_info->ContextSlotIndex(*name, &mode, &init_flag); local
151 ASSERT(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
152 if (slot_index >= 0) {
155 slot_index, mode);
157 *index = slot_index;
scopeinfo.cc 419 int slot_index) {
421 ASSERT(slot_index > kNotFound);
428 values_[index] = Value(mode, init_flag, slot_index - kNotFound).raw();
430 ValidateEntry(data, name, mode, init_flag, slot_index);
447 int slot_index) {
457 ASSERT(result.index() + kNotFound == slot_index);
deoptimizer.h 371 unsigned GetOffsetFromSlotIndex(int slot_index);
685 static Address SlotAddress(JavaScriptFrame* frame, int slot_index) {
686 if (slot_index >= 0) {
688 return frame->fp() + offset - (slot_index * kPointerSize);
691 return frame->fp() + offset - ((slot_index + 1) * kPointerSize);
deoptimizer.cc 1518 int slot_index = iterator->Next(); local
1524 int slot_index = iterator->Next(); local
1530 int slot_index = iterator->Next(); local
    [all...]
hydrogen-instructions.h 3634 int slot_index() const { return slot_index_; } function in class:v8::HLoadContextSlot
3689 int slot_index() const { return slot_index_; } function in class:v8::HStoreContextSlot
    [all...]
hydrogen-instructions.cc     [all...]
  /external/v8/src/arm/
lithium-arm.h 1347 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LLoadContextSlot
1365 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LStoreContextSlot
    [all...]
lithium-arm.cc 306 stream->Add("[%d]", slot_index());
312 stream->Add("[%d] <- ", slot_index());
    [all...]
lithium-codegen-arm.cc     [all...]
  /external/v8/src/ia32/
lithium-ia32.h 1369 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LLoadContextSlot
1388 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LStoreContextSlot
    [all...]
lithium-ia32.cc 309 stream->Add("[%d]", slot_index());
315 stream->Add("[%d] <- ", slot_index());
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/mips/
lithium-mips.h 1327 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LLoadContextSlot
1345 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LStoreContextSlot
    [all...]
lithium-mips.cc 306 stream->Add("[%d]", slot_index());
312 stream->Add("[%d] <- ", slot_index());
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/v8/src/x64/
lithium-x64.h 1326 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LLoadContextSlot
1345 int slot_index() { return hydrogen()->slot_index(); } function in class:v8::internal::LStoreContextSlot
    [all...]
lithium-x64.cc 308 stream->Add("[%d]", slot_index());
314 stream->Add("[%d] <- ", slot_index());
    [all...]
lithium-codegen-x64.cc     [all...]

Completed in 664 milliseconds