/external/libmojo/base/threading/ |
thread_local_android.cc | 11 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { 12 slot->Initialize(nullptr); 16 void ThreadLocalPlatform::FreeSlot(SlotType slot) { 17 slot.Free(); 21 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { 22 return slot.Get(); 26 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { 27 slot.Set(value);
|
/external/mesa3d/src/mapi/ |
entry.h | 38 entry_get_public(int slot); 41 entry_generate(int slot); 44 entry_patch(mapi_func entry, int slot);
|
entry_x86_tsd.h | 46 #define STUB_ASM_CODE(slot) \ 50 "jmp *(4 * " slot ")(%eax)\n" \ 53 "jmp *(4 * " slot ")(%eax)" 75 entry_get_public(int slot) 77 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE); 81 entry_patch(mapi_func entry, int slot) 85 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func); 86 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func); 90 entry_generate(int slot) 102 entry_patch(entry, slot); [all...] |
/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);
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
HWComposerBufferCache.cpp | 28 void HWComposerBufferCache::getHwcBuffer(int slot, 32 if (slot == BufferQueue::INVALID_BUFFER_SLOT || slot < 0) { 33 // default to slot 0 34 slot = 0; 37 if (static_cast<size_t>(slot) >= mBuffers.size()) { 38 mBuffers.resize(slot + 1); 41 *outSlot = slot; 43 if (mBuffers[slot] == buffer) { 50 mBuffers[slot] = buffer [all...] |
/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/nir/ |
tgsi_to_nir.h | 30 varying_slot_to_tgsi_semantic(gl_varying_slot slot, 33 frag_result_to_tgsi_semantic(gl_frag_result slot,
|
/system/extras/tests/bootloader/ |
bootctl.py | 29 """returns current slot number""" 31 return int(self._exec("get-current-slot")[1]) 38 def set_active_boot_slot(self, slot): 41 return self._exec("set-active-boot-slot " + str(slot))[0] == 0 43 def set_slot_as_unbootable_slot(self, slot): 46 return self._exec("set-slot-as-unbootable " + str(slot))[0] == 0 48 def is_slot_bootable(self, slot): 49 """Returns true if slot is bootable"" [all...] |
/system/chre/apps/chqts/src/shared/ |
dumb_allocator.cc | 41 size_t slot = 0; local 42 for (uint32_t mask = 1; slot < mSlotCount; slot++, mask <<= 1) { 49 if (slot == mSlotCount) { 53 return mRawMemory + (slot * mAllocSize); 57 size_t slot; local 58 if (!getSlot(pointer, &slot)) { 61 mAllocatedSlots &= ~(1 << slot); 66 size_t slot; local 67 return getSlot(pointer, &slot); [all...] |
/frameworks/native/libs/gui/tests/ |
BufferItemConsumer_test.cpp | 77 int slot; local 79 status_t ret = mProducer->dequeueBuffer(&slot, &outFence, kWidth, kHeight, 0, 0, 83 ALOGV("dequeueBuffer: slot=%d", slot); 85 ret = mProducer->requestBuffer(slot, &mBuffers[slot]); 88 *outSlot = slot; 91 void QueueBuffer(int slot) { 92 ALOGV("enqueueBuffer: slot=%d", slot); 133 int slot; local 151 int slot; local 174 int slot; local 191 int slot; local [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_vs_exec.c | 99 unsigned slot; local 121 for (slot = 0; slot < shader->info.num_inputs; slot++) { 122 debug_printf("\t%d: %f %f %f %f\n", slot, 123 input[slot][0], 124 input[slot][1], 125 input[slot][2], 126 input[slot][3]); 148 for (slot = 0; slot < shader->info.num_inputs; slot++) [all...] |
/system/bt/btif/src/ |
btif_sock_rfc.cc | 79 uint32_t id; // Non-zero indicates a valid (in-use) slot. 160 LOG_ERROR(LOG_TAG, "%s unable to find RFCOMM slot id: %d", __func__, id); 166 int slot = -1; local 171 slot = i; 174 return (slot == -1) ? NULL : &rfc_slots[slot]; 196 rfc_slot_t* slot = find_free_slot(); local 197 if (!slot) { 198 LOG_ERROR(LOG_TAG, "%s unable to find free RFCOMM slot.", __func__); 209 // Increment slot id and make sure we don't use id=0 305 rfc_slot_t* slot = local 347 rfc_slot_t* slot = local 474 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 487 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 522 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 546 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 560 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 575 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 690 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 706 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 815 rfc_slot_t* slot = find_rfc_slot_by_id(user_id); local 860 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 897 rfc_slot_t* slot = find_rfc_slot_by_id(id); local 913 rfc_slot_t* slot = find_rfc_slot_by_id(id); local [all...] |
/frameworks/rs/rsov/compiler/ |
Context.cpp | 53 // Builds the lookup table from a variable name to its slot number 54 for (size_t slot = 0; slot < varCount; slot++) { 55 std::string varName(varNames[slot]); 56 mVarNameToSlot.insert(std::make_pair(varName, (uint32_t)slot)); 61 for (size_t slot = 0; slot < kernelCount; slot++) { 62 mForEachNameToSlot.insert(std::make_pair(kernelNames[slot], slot)) 72 const uint32_t slot = getSlotForExportVar(varName); local [all...] |
/external/freetype/include/freetype/ |
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/flatbuffers/tests/FlatBuffers.Test/ |
TestTable.cs | 20 /// A test Table object that gives easy access to the slot data 32 public bool GetSlot(int slot, bool def) 34 var off = t.__offset(slot); 43 public sbyte GetSlot(int slot, sbyte def) 45 var off = t.__offset(slot); 54 public byte GetSlot(int slot, byte def) 56 var off = t.__offset(slot); 65 public short GetSlot(int slot, short def) 67 var off = t.__offset(slot); 76 public ushort GetSlot(int slot, ushort def [all...] |
/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/interfaces/boot/1.0/ |
IBootControl.hal | 25 * to find the one associated with that slot. 42 * getCurrentSlot() returns the slot number of that the current boot is booted 43 * from, for example slot number 0 (Slot A). It is assumed that if the current 44 * slot is A, then the block devices underlying B can be accessed directly 49 * from the bootloader, regardless of which slot is active or successful. 51 getCurrentSlot() generates (Slot slot); 54 * markBootSuccessful() marks the current slot as having booted successfully. 61 * setActiveBootSlot() marks the slot passed in parameter as the active boo [all...] |
/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...] |