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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mapi/mapi/
entry.h 40 entry_get_public(int slot);
43 entry_generate(int slot);
46 entry_patch(mapi_func entry, int slot);
entry_x86_tsd.h 43 #define STUB_ASM_CODE(slot) \
47 "jmp *(4 * " slot ")(%eax)\n" \
50 "jmp *(4 * " slot ")(%eax)"
72 entry_get_public(int slot)
74 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE);
78 entry_patch(mapi_func entry, int slot)
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
87 entry_generate(int slot)
99 entry_patch(entry, slot);
    [all...]
entry.c 79 entry_get_public(int slot)
82 return public_entries[slot];
86 entry_generate(int slot)
92 entry_patch(mapi_func entry, int slot)
  /external/libchrome/base/threading/
thread_local_posix.cc 18 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
19 int error = pthread_key_create(slot, NULL);
24 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
25 int error = pthread_key_delete(slot);
30 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
31 return pthread_getspecific(slot);
35 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
36 int error = pthread_setspecific(slot, value);
  /external/freetype/src/base/
ftsynth.c 48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
54 if ( !slot )
57 outline = &slot->outline;
60 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
90 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
98 if ( !slot )
101 library = slot->library;
102 face = slot->face;
104 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
105 slot->format != FT_GLYPH_FORMAT_BITMAP
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftsynth.c 48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
54 if ( !slot )
57 outline = &slot->outline;
60 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
90 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
98 if ( !slot )
101 library = slot->library;
102 face = slot->face;
104 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
105 slot->format != FT_GLYPH_FORMAT_BITMAP
    [all...]
  /system/update_engine/common/
boot_control_interface.h 34 using Slot = unsigned int;
36 static const Slot kInvalidSlot = UINT_MAX;
42 // images running from other media can have only one slot, like some USB
43 // image. Systems with only one slot won't be able to update.
46 // Return the slot where we are running the system from. On success, the
49 virtual Slot GetCurrentSlot() const = 0;
51 // Determines the block device for the given partition name and slot number.
52 // The |slot| number must be between 0 and GetNumSlots() - 1 and the
54 // every slot. On success, returns true and stores the block device in
57 Slot slot
    [all...]
fake_boot_control.h 35 // The current slot should be bootable.
41 BootControlInterface::Slot GetCurrentSlot() const override {
46 BootControlInterface::Slot slot,
48 if (slot >= num_slots_)
50 auto part_it = devices_[slot].find(partition_name);
51 if (part_it == devices_[slot].end())
57 bool IsSlotBootable(BootControlInterface::Slot slot) const override {
58 return slot < num_slots_ && is_bootable_[slot]
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_exec.c 97 unsigned slot; local
118 for (slot = 0; slot < shader->info.num_inputs; slot++) {
119 debug_printf("\t%d: %f %f %f %f\n", slot,
120 input[slot][0],
121 input[slot][1],
122 input[slot][2],
123 input[slot][3]);
133 for (slot = 0; slot < shader->info.num_inputs; slot++)
    [all...]
  /system/bt/btif/src/
btif_sock_rfc.c 74 uint32_t id; // Non-zero indicates a valid (in-use) slot.
157 LOG_ERROR(LOG_TAG, "%s unable to find RFCOMM slot id: %d", __func__, id);
163 int slot = -1; local
167 slot = i;
170 return (slot == -1) ? NULL : &rfc_slots[slot];
191 rfc_slot_t *slot = find_free_slot(); local
192 if (!slot) {
193 LOG_ERROR(LOG_TAG, "%s unable to find free RFCOMM slot.", __func__);
203 // Increment slot id and make sure we don't use id=0
293 rfc_slot_t *slot = alloc_rfc_slot(NULL, service_name, service_uuid, channel, flags, true); local
333 rfc_slot_t *slot = alloc_rfc_slot(bd_addr, NULL, service_uuid, channel, flags, false); local
457 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
473 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
513 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
538 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
549 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
565 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
673 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
688 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
794 rfc_slot_t *slot = find_rfc_slot_by_id(user_id); local
841 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
884 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
905 rfc_slot_t *slot = find_rfc_slot_by_id(id); local
    [all...]
  /device/huawei/angler/location/loc_api/loc_api_v02/
loc_api_sync_req.c 121 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
123 pthread_mutex_init(&slot->sync_req_lock, NULL);
124 pthread_cond_init(&slot->ind_arrived_cond, NULL);
126 slot->client_handle = LOC_CLIENT_INVALID_HANDLE_VALUE;
127 slot->ind_is_selected = false; /* is ind selected? */
128 slot->ind_is_waiting = false; /* is waiting? */
129 slot->ind_has_arrived = false; /* callback has arrived */
130 slot->recv_ind_id = 0; /* ind to wait for */
131 slot->recv_ind_payload_ptr = NULL;
132 slot->req_id = 0; /* req id *
182 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
295 loc_sync_req_data_s_type *slot; local
365 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
417 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
    [all...]
  /device/lge/bullhead/location/loc_api/loc_api_v02/
loc_api_sync_req.c 121 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
123 pthread_mutex_init(&slot->sync_req_lock, NULL);
124 pthread_cond_init(&slot->ind_arrived_cond, NULL);
126 slot->client_handle = LOC_CLIENT_INVALID_HANDLE_VALUE;
127 slot->ind_is_selected = false; /* is ind selected? */
128 slot->ind_is_waiting = false; /* is waiting? */
129 slot->ind_has_arrived = false; /* callback has arrived */
130 slot->recv_ind_id = 0; /* ind to wait for */
131 slot->recv_ind_payload_ptr = NULL;
132 slot->req_id = 0; /* req id *
182 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
295 loc_sync_req_data_s_type *slot; local
365 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
417 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
    [all...]
  /device/moto/shamu/location/loc_api/loc_api_v02/
loc_api_sync_req.c 121 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
123 pthread_mutex_init(&slot->sync_req_lock, NULL);
124 pthread_cond_init(&slot->ind_arrived_cond, NULL);
126 slot->client_handle = LOC_CLIENT_INVALID_HANDLE_VALUE;
127 slot->ind_is_selected = false; /* is ind selected? */
128 slot->ind_is_waiting = false; /* is waiting? */
129 slot->ind_has_arrived = false; /* callback has arrived */
130 slot->recv_ind_id = 0; /* ind to wait for */
131 slot->recv_ind_payload_ptr = NULL;
132 slot->req_id = 0; /* req id *
182 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[i]; local
295 loc_sync_req_data_s_type *slot; local
365 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
417 loc_sync_req_data_s_type *slot = &loc_sync_array.slots[select_id]; local
    [all...]
  /external/freetype/include/
ftsynth.h 70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/pdfium/third_party/freetype/include/freetype/
ftsynth.h 70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsynth.h 70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/libchrome/crypto/
scoped_test_system_nss_key_slot.cc 17 ScopedPK11Slot(PK11_ReferenceSlot(test_db_->slot())));
28 PK11SlotInfo* ScopedTestSystemNSSKeySlot::slot() const { function in class:crypto::ScopedTestSystemNSSKeySlot
29 return test_db_->slot();
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
hash.c 34 potentially hit every slot in the table during collision
80 /* Returns the address of the table slot matching `key'. If `key' is
81 not found, return the address of an empty slot suitable for
88 void **slot; local
97 slot = &ht->ht_vec[hash_1];
99 if (*slot == 0)
100 return (deleted_slot ? deleted_slot : slot);
101 if (*slot == hash_deleted_item)
104 deleted_slot = slot;
108 if (key == *slot)
123 void **slot = hash_find_slot (ht, key); local
130 void **slot = hash_find_slot (ht, item); local
160 void **slot = hash_find_slot (ht, item); local
226 void **slot; local
239 void **slot; local
270 void **slot = hash_find_slot (ht, *ovp); local
298 void **slot; local
    [all...]
  /hardware/libhardware/include/hardware/
boot_control.h 37 * to find the one associated with that slot. The bootloader must pass the suffix
38 * of the currently active slot either through a kernel command line property at
68 * whether the current slot is A or B. The meaning of A and B is
69 * left up to the implementer. It is assumed that if the current slot
79 * (*markBootSuccessful)() marks the current slot
87 * (*setActiveBootSlot)() marks the slot passed in parameter as
88 * the active boot slot (see getCurrentSlot for an explanation
89 * of the "slot" parameter). This overrides any previous call to
93 int (*setActiveBootSlot)(struct boot_control_module *module, unsigned slot);
96 * (*setSlotAsUnbootable)() marks the slot passed in parameter a
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips-warn-branch-delay.l 2 .*:8: Warning: wrong size instruction in a 16-bit branch delay slot
3 .*:10: Warning: wrong size instruction in a 16-bit branch delay slot
4 .*:12: Warning: wrong size instruction in a 16-bit branch delay slot
5 .*:14: Warning: wrong size instruction in a 16-bit branch delay slot
6 .*:16: Warning: wrong size instruction in a 16-bit branch delay slot
7 .*:18: Warning: wrong size instruction in a 16-bit branch delay slot
8 .*:20: Warning: wrong size instruction in a 16-bit branch delay slot

Completed in 737 milliseconds

1 2 3 4 5 6 7 8 91011>>