Searched refs:slots (Results 1 - 25 of 140) sorted by relevance

123456

/external/autotest/client/site_tests/firmware_TouchMTB/tests/
H A Dfake_input_device.py9 def __init__(self, number_fingers=0, slots={}):
11 self.slots = slots
17 return self.slots
H A Dmtb_unittest.py114 slots = (0, 1)
115 list_x, list_y = mtb_packets.get_x_y_multiple_slots(slots)
124 for slot in slots:
139 slots = (0, 1)
140 list_x, list_y = mtb_packets.get_x_y_multiple_slots(slots)
147 for slot in slots:
446 slots = [0, 1]
447 for slot in slots:
501 # What slots to check are based on the gesture name.
502 slots
[all...]
/external/libunwind/include/tdep-ia64/
H A Drse.h48 uint64_t slots = (bsp - bspstore) >> 3; local
50 return slots - (rse_slot_num(bspstore) + slots)/0x40;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.h28 public slots:
31 protected slots:
H A Dscanresults.h26 public slots:
33 protected slots:
H A Deventhistory.h46 public slots:
50 protected slots:
H A Daddinterface.h27 public slots:
H A Dnetworkconfig.h33 public slots:
42 protected slots:
H A Dpeers.h30 public slots:
55 protected slots:
/external/valgrind/memcheck/tests/solaris/
H A Dpkcs11.c22 CK_SLOT_ID_PTR slots = malloc(slot_count * sizeof(CK_SLOT_ID)); local
23 if (slots == NULL) {
24 fprintf(stderr, "malloc(slots)\n");
28 ret = C_GetSlotList(0, slots, &slot_count);
30 fprintf(stderr, "GetSlotList(slots): %lu\n", ret);
36 CK_SLOT_ID slot_id = slots[i];
46 if (slots == NULL) {
60 free(slots);
/external/avb/libavb_ab/
H A Davb_ab_flow.c67 data->slots[0].priority = AVB_AB_MAX_PRIORITY;
68 data->slots[0].tries_remaining = AVB_AB_MAX_TRIES_REMAINING;
69 data->slots[0].successful_boot = 0;
70 data->slots[1].priority = AVB_AB_MAX_PRIORITY - 1;
71 data->slots[1].tries_remaining = AVB_AB_MAX_TRIES_REMAINING;
72 data->slots[1].successful_boot = 0;
187 slot_normalize(&ab_data->slots[0]);
188 slot_normalize(&ab_data->slots[1]);
228 /* Validate all bootable slots. */
230 if (slot_is_bootable(&ab_data.slots[
[all...]
/external/curl/lib/
H A Dhash.c58 int slots,
65 if(!slots || !hfunc || !comparator ||!dtor) {
73 h->slots = slots;
75 h->table = malloc(slots * sizeof(struct curl_llist));
77 for(i = 0; i < slots; ++i)
81 h->slots = 0;
100 #define FETCH_LIST(x,y,z) &x->table[x->hash_func(y, z, x->slots)]
189 for(i = 0; i < h->slots; ++i) {
212 for(i = 0; i < h->slots;
57 Curl_hash_init(struct curl_hash *h, int slots, hash_function hfunc, comp_function comparator, curl_hash_dtor dtor) argument
[all...]
H A Dhash.h55 int slots; member in struct:curl_hash
73 int slots,
/external/avb/test/
H A Davb_ab_flow_unittest.cc42 static_assert(offsetof(AvbABData, slots) % 8 == 0,
43 "AvbABData slots member has wrong offset");
58 EXPECT_EQ(AVB_AB_MAX_PRIORITY, data.slots[0].priority);
59 EXPECT_EQ(AVB_AB_MAX_TRIES_REMAINING, data.slots[0].tries_remaining);
60 EXPECT_EQ(0, data.slots[0].successful_boot);
61 EXPECT_EQ(AVB_AB_MAX_PRIORITY - 1, data.slots[1].priority);
62 EXPECT_EQ(AVB_AB_MAX_TRIES_REMAINING, data.slots[1].tries_remaining);
63 EXPECT_EQ(0, data.slots[1].successful_boot);
82 memcmp(reinterpret_cast<void*>(data.slots),
83 reinterpret_cast<void*>(restored.slots),
[all...]
/external/curl/tests/unit/
H A Dunit1603.c32 static const int slots = 3; variable
42 return Curl_hash_init(&hash_static, slots, Curl_hash_str,
63 if(Curl_hash_str(key1, strlen(key1), slots) != 1 ||
64 Curl_hash_str(key2, strlen(key2), slots) != 0 ||
65 Curl_hash_str(key3, strlen(key3), slots) != 2 ||
66 Curl_hash_str(key4, strlen(key4), slots) != 1)
85 /* The fourth element exceeds the number of slots & collides */
/external/avb/boot_control/
H A Dboot_control_avb.c112 is_bootable = (ab_data.slots[slot].priority > 0) &&
113 (ab_data.slots[slot].successful_boot ||
114 (ab_data.slots[slot].tries_remaining > 0));
132 is_marked_successful = ab_data.slots[slot].successful_boot;
/external/skia/tools/mdbviz/
H A Dmainwindow.h28 private slots:
/external/skqp/tools/mdbviz/
H A Dmainwindow.h28 private slots:
/external/python/cpython2/Lib/
H A Dcopy_reg.py98 This needs to find slots defined by the class and its bases, so we
102 __slots__ attribute to misrepresent their slots after the class is
114 # This class has no slots
120 slots = c.__dict__['__slots__']
122 if isinstance(slots, basestring):
123 slots = (slots,)
124 for name in slots:
/external/python/cpython3/Lib/
H A Dcopyreg.py99 This needs to find slots defined by the class and its bases, so we
103 __slots__ attribute to misrepresent their slots after the class is
115 # This class has no slots
121 slots = c.__dict__['__slots__']
123 if isinstance(slots, str):
124 slots = (slots,)
125 for name in slots:
/external/v8/src/heap/
H A Dremembered-set.h59 // Given a page and a range of slots in that page, this function removes the
60 // slots from the remembered set.
86 // Clear all slots from start_offset to the end of first chunk.
89 // Clear all slots in intermediate chunks.
93 // Clear slots from the beginning of the last page to end_offset.
115 SlotSet* slots = GetSlotSet(chunk); local
117 if (slots != nullptr || typed_slots != nullptr) {
128 SlotSet* slots = GetSlotSet(chunk); local
129 if (slots != nullptr) {
134 slots[pag
167 TypedSlotSet* slots = GetTypedSlotSet(page); local
194 TypedSlotSet* slots = GetTypedSlotSet(chunk); local
[all...]
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_sched.cpp312 gpr(), lt(), slots(),
331 slots[slot] = n;
379 slots[k] = NULL;
389 assert(slots[slot]);
391 assert(!(slots[slot]->bc.slot_flags & AF_4SLOT));
395 dump::dump_op(slots[slot]);
399 removed_nodes.push_back(slots[slot]);
400 slots[slot] = NULL;
405 alu_node *t = slots[4];
408 if (!slots[cha
1629 unsigned slots = p->get_slot_mask(); local
2009 unsigned slots = gt.slot_count(); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_nir_uniforms.cpp34 const nir_state_slot *const slots = var->state_slots; local
43 (gl_state_index *)slots[i].tokens);
51 int swiz = GET_SWZ(slots[i].swizzle, j);
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dtest_conf.py386 slots=0, segments=VAL.MIDDLE)),
389 slots=0, segments=VAL.BOTH_ENDS)),
439 NoReversedMotionValidator(no_reversed_motion_criteria, slots=0,
441 NoReversedMotionValidator(no_reversed_motion_criteria, slots=0,
466 NoReversedMotionValidator(no_reversed_motion_criteria, slots=0),
498 NoReversedMotionValidator(no_reversed_motion_criteria, slots=0),
499 NoReversedMotionValidator(no_reversed_motion_criteria, slots=1),
531 NoReversedMotionValidator(no_reversed_motion_criteria, slots=1),
549 NoReversedMotionValidator(no_reversed_motion_criteria, slots=0),
567 NoReversedMotionValidator(no_reversed_motion_criteria, slots
[all...]
/external/libxaac/decoder/
H A Dixheaacd_lpp_tran.h100 WORD32 ixheaacd_num_bands, WORD16 slots);
104 WORD32 ixheaacd_num_bands, WORD16 slots);

Completed in 571 milliseconds

123456